/* ================================
   FIRST FILM FEVER - MAIN STYLESHEET
   Cinema is Caught, Not Taught
   ================================ */

/* ================================
   CSS VARIABLES - COLOR SYSTEM
   ================================ */
:root {
    /* Brand Colors */
    --brand-primary: #e03124;
    --brand-secondary: #f87016;

    /* Base Colors */
    --black-primary: #000000;
    --black-soft: #0b0b0b;
    --white-primary: #f2f2f2;
    --white-muted: #cccccc;
    --gray-muted: #666666;
    --border-subtle: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    --gradient-dark: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95));
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));

    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;

    /* Typography */
    --font-primary: 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Arial Black', 'Helvetica Bold', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ================================
   RESET & BASE STYLES
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black-primary);
    color: var(--white-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

strong {
    font-weight: 700;
    color: var(--white-primary);
}

a {
    color: var(--white-primary);
    text-decoration: none;
    /* transition: var(--transition-smooth); */
}

/* ================================
   BUTTONS & CTAs
   ================================ */
.btn-primary-cta {
    display: inline-block;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: var(--white-primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* transition: var(--transition-smooth); */
    box-shadow: 0 10px 30px rgba(224, 49, 36, 0.3);
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(224, 49, 36, 0.5);
    color: var(--white-primary);
}

.btn-primary-cta:hover::before {
    left: 100%;
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    color: var(--white-primary);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--white-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary-cta:hover {
    background: var(--white-primary);
    color: var(--black-primary);
    transform: translateX(5px);
}

/* ================================
   NAVIGATION
   ================================ */
.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    /* transition: var(--transition-smooth); */
}

.main-navigation.scrolled {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.95);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white-primary);
    letter-spacing: -0.5px;
}

.logo-web {
    display: flex;
}

.logo-web img {
    height: 95px;
    width: auto;
    margin-right: 10px;
    transition: var(--transition-smooth);
}

.main-navigation.scrolled .logo-web img {
    height: 40px;
    width: auto;
    transition: var(--transition-smooth);

}

.nav-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
}

.nav-menu li a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================================
   HERO SECTION
   ================================ */

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: var(--gradient-overlay); */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    bottom: -200px;
}

.hero-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white-muted);
    margin-bottom: 20px;
    font-weight: 600;
    opacity: 1;
}

.hero-headline {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.hero-context-text {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-muted);
    font-weight: 600;
}

/* ================================
   LEARN STRIP
   ================================ */
.learn-strip {
    padding: 40px 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.learn-strip-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

/* ================================
   SECTION DEFAULTS
   ================================ */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* ================================
   FEATURED SECTION
   ================================ */
.featured-section {
    background: var(--black-soft);
    padding: 80px 0;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 40px;
}

.featured-logo-item {
    width: 150px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* filter: grayscale(100%) brightness(0.8); */
    transition: var(--transition-smooth);
    cursor: pointer;
}

.featured-logo-item img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 20px;
    object-fit: contain;
}

.featured-logo-item:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* ================================
   MANIFESTO SECTION (PART A)
   ================================ */
.manifesto-section {
    padding: var(--section-padding) 0;
    background: var(--black-primary);
}

.manifesto-headline {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.manifesto-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--white-muted);
}

.manifesto-body p {
    margin-bottom: 1.5rem;
}

.manifesto-signature {
    margin-top: 40px;
    font-weight: 700;
    font-size: 1.2rem;
}

.manifesto-signature span {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-muted);
    font-weight: 400;
    margin-top: 5px;
}

.video-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.manifesto-video {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================
   TEDX SECTION (PART B)
   ================================ */
.tedx-section {
    padding: var(--section-padding) 0;
    background: var(--black-soft);
}

.tedx-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--white-muted);
}

.tedx-video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.tedx-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-caption {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: var(--gray-muted);
    font-size: 1rem;
}

/* ================================
   WHO CAN JOIN SECTION (PART C)
   ================================ */
.who-can-join-section {
    padding: 0;
    background: var(--black-primary);
}

.who-can-join-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--white-muted);
}

.muted-text {
    color: var(--gray-muted);
    font-size: 1rem;
}

.section-signature {
    margin-top: 40px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white-primary);
}

.section-signature span {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-muted);
    font-weight: 400;
    margin-top: 5px;
}

.who-carousel {
    margin-top: 60px;
}

.who-carousel .carousel-item {
    padding: 0 15px;
    width: 100%;
}

.who-carousel .carousel-item img {
    width: 300px;
    aspect-ratio: 4 / 3;
    /* height: 400px; */
    object-fit: cover;
    border-radius: 8px;
    /* filter: grayscale(20%); */
    transition: var(--transition-smooth);
}

.who-carousel .carousel-item img:hover {
    /* filter: grayscale(0%); */
    transform: scale(1.02);
}

/* ================================
   HOW LEARNING WORKS (PART D)
   ================================ */
.how-learning-works-section {
    padding: var(--section-padding) 0;
    background: var(--black-soft);
}

.learning-video-card {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 30px;
}

.learning-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: var(--transition-smooth); */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 2;
    /* transition: var(--transition-smooth); */
}

.video-label {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* transition: var(--transition-smooth); */
}

.video-play-btn svg {
    width: 30px;
    height: 30px;
    color: var(--white-primary);
}

.learning-video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.learning-video-card:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(224, 49, 36, 0.5);
}

.learning-video-card:hover .learning-video {
    transform: scale(1.05);
}

/* ================================
   MARQUEE SECTION
   ================================ */
.marquee-section {
    padding: 60px 0;
    background: var(--black-primary);
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0;
    padding: 20px 0;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 60px;
    min-width: 100%;
    animation: scroll 30s linear infinite;
}

.marquee-content span {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: -1px;
}

.marquee-icon {
    color: var(--brand-primary);
    font-size: 2rem;
}

.marquee-reverse .marquee-content {
    animation-direction: reverse;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ================================
   FOUNDER SECTION
   ================================ */
.founder-section {
    padding: var(--section-padding) 0;
    background: var(--black-soft);
}

.founder-eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray-muted);
    margin-bottom: 15px;
    font-weight: 600;
}

.founder-greeting {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 60px;
    color: var(--white-muted);
}

.wave-emoji {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

.founder-main-row {
    margin-top: 60px;
}

.founder-image-wrapper {
    position: relative;
    border-radius: 12px;
    /* overflow: hidden; */
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.founder-image {
    width: 100%;
    height: auto;
    display: block;
}

.founder-stat-strip {
    position: absolute;
    left: -40px;
    padding: 15px 30px;
    /* background: var(--gradient-primary); */
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 3;
    background: transparent;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid #fff;
    z-index: 10;
}

.stat-strip-1 {
    top: 50%;
}

.stat-strip-2 {
    right: 0px;
    top: 5%;
    left: auto;
    bottom: auto;
}

.founder-content {
    padding-left: 40px;
}

.founder-name {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.founder-descriptor {
    font-size: 1.3rem;
    color: var(--gray-muted);
    margin-bottom: 30px;
    font-weight: 400;
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--white-muted);
    margin-bottom: 40px;
}

.founder-social {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    /* transition: var(--transition-smooth); */
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn:hover {
    background: var(--white-primary);
    color: var(--black-primary);
    border-color: var(--white-primary);
    transform: translateY(-2px);
}

/* ================================
   INDUSTRY CAROUSEL
   ================================ */
.industry-section {
    padding: 80px 0;
    background: var(--black-primary);
}

.industry-carousel {
    display: flex;
    gap: 30px;
}

.industry-item {
    flex: 0 0 auto;
    width: 300px;
    margin: 0 20px;
    overflow: hidden;
    border-radius: 8px;
}

.industry-item img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    filter: grayscale(100%);
    /* transition: var(--transition-smooth); */
}

.industry-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ================================
   AWARDS SECTION
   ================================ */
.awards-section {
    padding: var(--section-padding) 0;
    background: var(--black-soft);
    position: relative;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.award-item {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    /* transition: var(--transition-smooth); */
    position: relative;
}

.award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: var(--transition-smooth); */
}

.award-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white-primary);
}

.award-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.award-year {
    color: var(--gray-muted);
    font-size: 1rem;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-primary);
    transform: translateY(-5px);
}

.award-item:hover .award-icon {
    transform: scale(1.1) rotate(10deg);
}

/* Award Popup Modal */
.award-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.award-popup.active {
    display: flex;
}

.award-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.award-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 2;
}

.award-popup-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.award-popup-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--white-primary);
    color: var(--black-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: var(--transition-smooth); */
}

.award-popup-close:hover {
    transform: rotate(90deg);
    background: var(--brand-primary);
    color: var(--white-primary);
}

/* ================================
   VIDEO MODAL
   ================================ */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 2;
}

.modal-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--white-primary);
    color: var(--black-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: var(--transition-smooth); */
}

.video-modal-close:hover {
    transform: rotate(90deg);
    background: var(--brand-primary);
    color: var(--white-primary);
}

/* ================================
   FOOTER
   ================================ */
.main-footer {
    background: var(--black-primary);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-brand {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--gray-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--brand-primary);
    padding-left: 5px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--gray-muted);
    font-size: 0.9rem;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 991px) {
    :root {
        --section-padding: 80px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        padding: 30px;
        gap: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .founder-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .learning-video-card {
        height: 350px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .featured-logos {
        gap: 30px;
    }

    .featured-logo-item {
        width: 100px;
        height: 60px;
    }

    .marquee-content span {
        font-size: 1.5rem;
    }

    .learning-video-card {
        height: 300px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ================================
   ANIMATIONS & MICRO-INTERACTIONS
   ================================ */
/* [data-animate] {
    opacity: 0;
}

[data-animate].animated {
    opacity: 1;
} */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--brand-primary);
    color: var(--white-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-secondary);
}

/* own */
        .sub-hero {
            font-size: 18px;
            font-weight: 600;
            color: var(--brand-secondary);
            text-transform: uppercase;
            margin-bottom: 0px;
        }

        .featured-logo-item.mt-max {
            margin-top: 160px;
        }

        .super-videos {
            display: flex;
            flex-wrap: wrap;
            gap: 0px;
            justify-content: center;
            padding: 0;
            position: relative;
            width: 100%;
            height: 80vh;
        }

        .super-videos .video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: -1;
        }

        .super-videos .super {
            width: 22%;
            background: rgba(0, 0, 0, 0.6);
            padding: 20px;
            /* border-radius/: 10px; */
            color: #fff;
            cursor: pointer;
            border-left: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: end;
            overflow: hidden;
        }

        .super .details {
            transition: all ease 0.5s;
            margin-bottom: -200px;
        }

        .super h4 {
            font-size: 28px;
            font-weight: 700;
        }

        .super p {
            font-size: 18px;
            font-weight: 500;
            margin-top: 50px;
            height: 150px;
        }

        .super:hover .details {
            margin-bottom: 0;
        }

        .super-videos .super:last-child {
            border-right: 1px solid rgba(255, 255, 255, 0.5);
        }

        .marquee {
            transform: rotate(-4deg);
            background: var(--gradient-primary);
            position: relative;
            z-index: 2;
        }

        .marquee .marquee-icon {
            color: #fff;
        }

        .marquee.marquee-reverse {
            background: #000;
            transform: rotate(2deg);
            position: relative;
            z-index: 1;
            filter: blur(5px);
        }
        .join-now-cta {

            display: flex;
            flex-direction: column;
            align-items: center;
            position: fixed;
            right: 10px;
            bottom: 40px;
            z-index: 9999;
            width: 80px;
            height: 80px;
            background: var(--gradient-primary) ;
            border-radius: 50%;
            justify-content: center;
            font-size: 12px;
            font-weight: 500;
            gap: 2px;

        }
        .join-now-cta svg{
            width: 20px;
            animation: shake 2s infinite;
        }

        /* shake hand */
        @keyframes shake {
            0% { transform: rotate(0deg); }
            25% { transform: rotate(15deg); }
            50% { transform: rotate(-15deg); }
            75% { transform: rotate(15deg); }
            100% { transform: rotate(0deg); }
        }

        @keyframes animate__bounceIn{
            0%, 20%, 40%, 60%, 80%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }