.about-gallery__close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
}

.csr-cards-wrapper {
    padding: clamp(60px, 10vw, 140px) clamp(20px, 7vw, 140px);
    background: #000000;
    width: 100%;
}

.csr-cards-section {
    padding: 0;
    margin: 0;
}

.csr-cards-section:not(:last-child) {
    margin-bottom:-50px;
    margin-top: 0px;
}
.about-gallery__grid figure {
    cursor: pointer;
}

.about-gallery__lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 4000;
}

.about-gallery__lightbox.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.about-gallery__lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html {
        overflow-x: hidden;
    }
}

img,
video,
canvas,
svg {
    max-width: 100%;
}

/* Prevent flex/grid children from causing overflow */
* {
    min-width: 0;
}

body {
    font-family: 'ClashDisplay', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: #000;
}

/* Apply ClashDisplay font globally to all text elements */
*,
*::before,
*::after {
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
button,
input,
textarea,
select,
label,
li,
ul,
ol,
td,
th,
tr,
table {
    font-family: 'ClashDisplay', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Regular */
@font-face {
    font-family: 'ClashDisplay';
    src: url('../font/ClashDisplay_Complete/ClashDisplay-Regular.woff2') format('woff2'),
        url('../font/ClashDisplay_Complete/ClashDisplay-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Medium */
@font-face {
    font-family: 'ClashDisplay';
    src: url('../font/ClashDisplay_Complete/ClashDisplay-Medium.woff2') format('woff2'),
        url('../font/ClashDisplay_Complete/ClashDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Semibold */
@font-face {
    font-family: 'ClashDisplay';
    src: url('../font/ClashDisplay_Complete/ClashDisplay-Semibold.woff2') format('woff2'),
        url('../font/ClashDisplay_Complete/ClashDisplay-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: 'ClashDisplay';
    src: url('../font/ClashDisplay_Complete/ClashDisplay-Bold.woff2') format('woff2'),
        url('../font/ClashDisplay_Complete/ClashDisplay-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Home hero slider fine‑tuning (index only) */

/* Keep hero nicely padded below the fixed header */
.breezy-hero {
    padding-top: 120px;
}

.panorama-shell {
    position: relative;
}

.panorama-mask {
    position: relative;
}

/* Center "18 Years Strong" text in the middle of the slider */
.hero-flip-heading {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(28px, 5vw, 64px);
    width: 100%;
    padding: 0 16px;
    text-align: center;
}

/* Make gaps between all slider images consistent */
.panorama-track {
    gap: 24px;
}

.panorama-item {
    flex: 0 0 24%;
}

/* Mobile responsiveness for hero slider */
@media (max-width: 768px) {
    .breezy-hero {
        padding: 100px 16px 60px;
    }

    .panorama-mask {
        height: 40vh !important;
        max-height: 360px !important;
    }

    .panorama-track {
        gap: 16px;
        padding-inline: 16px;
    }

    .panorama-item {
        flex: 0 0 60%;
    }

    .hero-flip-heading {
        font-size: clamp(18px, 5vw, 28px);
        top: 50%;
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .panorama-mask {
        height: 36vh !important;
        max-height: 300px !important;
    }

    .hero-flip-heading {
        font-size: clamp(16px, 5vw, 24px);
    }
}


/* Apply ClashDisplay font globally - already applied via body and universal selector above */
body,
.panorama-hero,
.breezy-hero,
.hero-heading,
.hero-subtext,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
button,
input,
textarea,
select,
label,
li,
ul,
ol,
td,
th,
tr,
table {
    font-family: 'ClashDisplay', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.preloader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    animation: fadeOut 0.3s ease forwards;
    animation-delay: 1.4s;
    /* ensures logo remains visible ~5-6s */
}

.preloader.hidden {
    pointer-events: none;
    opacity: 0;
}

.preloader-logo img {
    width: 220px;
    max-width: 60vw;
    animation: zoomOut 4.9s ease forwards;
}

@keyframes zoomOut {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    30% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    max-height: 40px;
    width: auto;
}

.header-spacer {
    width: 45px;
    /* Same width as menu toggle to balance */
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100vh;
    background: #000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 30px 20px 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Close button with two-line icon */
.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.close-btn span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

.close-btn span:first-child {
    width: 30px;
}

.close-btn span:last-child {
    width: 20px;
}

.close-btn:hover span {
    opacity: 0.7;
}

.menu-title {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
}

.menu-list {
    list-style: none;
    padding: 30px 20px;
    margin: 0;
}

.menu-list li {
    margin-bottom: 0;
    position: relative;
    padding-left: 30px;
}

.menu-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7ebb48;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-list li a.active::before,
.menu-list li:hover::before {
    opacity: 1;
}

.menu-list a {
    display: block;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.menu-list a.active {
    color: #4ade80;
}

.menu-list a:hover {
    color: #7ebb48;
}

.social-links-menu {
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.social-links-menu h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #4ade80;
    color: #000;
    transform: translateY(-3px);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1500;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

:root {
    --hero-bg: #0f0f0f;
    --hero-text: #ffffff;
    --accent-yellow: #eefc5c;
}

.breezy-hero {
    background: #000;
    color: var(--hero-text);
    padding: 120px clamp(24px, 6vw, 110px) 100px;
    text-align: center;
    overflow: hidden;
    position: relative;
    perspective: 1400px;
    transform-style: preserve-3d;
}

.hero-heading {
    font-size: clamp(52px, 9vw, 110px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 40px;
    will-change: transform, opacity;
}

.hero-heading span {
    display: block;
}

.hero-heading .accent {
    display: inline-block;
    position: relative;
}

.heading-underline {
    position: absolute;
    left: 0;
    bottom: -12px;
    height: 8px;
    width: 0%;
    border-radius: 999px;
    background: var(--accent-yellow);
    animation: underlineGrow 1.8s ease forwards 0.4s;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.panorama-shell {
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0;
    overflow: visible;
}

.panorama-mask {
    width: 100%;
    height: 50vh;
    max-height: 650px;
    overflow: hidden;
    background: #000;
    position: relative;
    /* Convex curved perspective effect (opposite curve) */
    clip-path: polygon(
            /* Top curve - centered peak at 50% */
            0% 0%,
            5% 1%,
            10% 2.5%,
            15% 4%,
            20% 5.5%,
            25% 7%,
            30% 8.2%,
            35% 9%,
            40% 9.5%,
            45% 9.8%,
            50% 10%,
            /* Peak at center */
            55% 9.8%,
            60% 9.5%,
            65% 9%,
            70% 8.2%,
            75% 7%,
            80% 5.5%,
            85% 4%,
            90% 2.5%,
            95% 1%,
            100% 0%,

            /* Right edge */
            100% 100%,

            /* Bottom curve - centered dip at 50% */
            95% 99%,
            90% 97.5%,
            85% 96%,
            80% 94.5%,
            75% 93%,
            70% 91.8%,
            65% 91%,
            60% 90.5%,
            55% 90.2%,
            50% 90%,
            /* Dip at center */
            45% 90.2%,
            40% 90.5%,
            35% 91%,
            30% 91.8%,
            25% 93%,
            20% 94.5%,
            15% 96%,
            10% 97.5%,
            5% 99%,
            0% 100%);
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.55));
}

/* Remove the old pseudo-element masks */
.panorama-mask::before,
.panorama-mask::after {
    display: none;
}

.panorama-track {
    display: flex;
    height: 100%;
    width: 155%;
    gap: 10px;
    padding-inline: clamp(24px, 4vw, 80px);
    will-change: transform;
    align-items: center;
}

.panorama-item {
    flex: 0 0 18%;
    height: 100%;
    perspective: 1400px;
}

.panorama-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    transform-style: preserve-3d;
    transition: transform 0.35s ease;
    border-radius: 8px;
}

/* Remove alternating 3D tilt so visual gaps between images stay even */
.panorama-item:nth-child(4n+1) img,
.panorama-item:nth-child(4n+2) img,
.panorama-item:nth-child(4n+3) img,
.panorama-item:nth-child(4n+4) img {
    transform: none;
}

.hero-subtext {
    max-width: 915px;
    margin: 40px auto;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    will-change: transform, opacity;
    /* margin-top: -45px; */
}

/* Enhanced concave effect with SVG-like mask */
@supports (mask-image: url()) {
    .panorama-mask-enhanced {
        width: 100%;
        height: 40vh;
        max-height: 500px;
        overflow: hidden;
        background: #000;
        position: relative;
        mask-image: radial-gradient(ellipse 85% 100% at 50% 50%, black 60%, transparent 100%);
        -webkit-mask-image: radial-gradient(ellipse 85% 100% at 50% 50%, black 60%, transparent 100%);
        filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.55));
    }
}

@media (max-width: 768px) {
    .panorama-item {
        flex: 0 0 40%;
    }

    .panorama-mask {
        clip-path: ellipse(80% 100% at 50% 50%) !important;
    }

    .hero-heading {
        letter-spacing: 0.02em;
    }
}

@media (max-width: 768px) {
    .panorama-shell {
        width: 100vw;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .panorama-mask {
        height: 40vh !important;
        max-height: 400px !important;
        /* Simplified convex curve for mobile */
        clip-path: polygon(0% 0%,
                10% 3%,
                25% 5%,
                50% 6%,
                75% 5%,
                90% 3%,
                100% 0%,
                100% 100%,
                90% 97%,
                75% 95%,
                50% 94%,
                25% 95%,
                10% 97%,
                0% 100%) !important;
    }

    .panorama-item {
        flex: 0 0 60%;
    }

    .panorama-track {
        gap: 20px;
        padding-inline: 20px;
    }

    .panorama-item img {
        border-radius: 6px;
    }

    /* Reduced rotation angles for mobile */
    .panorama-item:nth-child(4n+1) img {
        transform: rotateY(10deg) scale(1.05);
    }

    .panorama-item:nth-child(4n+2) img {
        transform: rotateY(4deg) scale(1.03);
    }

    .panorama-item:nth-child(4n+3) img {
        transform: rotateY(-4deg) scale(1.03);
    }

    .panorama-item:nth-child(4n+4) img {
        transform: rotateY(-10deg) scale(1.05);
    }

    .hero-subtext {
        margin: 30px auto;
        padding: 0 20px;
    }

    .hero-heading {
        letter-spacing: 0.02em;
    }
}

@media (max-width: 480px) {
    .panorama-mask {
        height: 35vh !important;
        max-height: 300px !important;
        /* Even gentler curve for small phones */
        clip-path: polygon(0% 0%,
                15% 2%,
                35% 3%,
                50% 4%,
                65% 3%,
                85% 2%,
                100% 0%,
                100% 100%,
                85% 98%,
                65% 97%,
                50% 96%,
                35% 97%,
                15% 98%,
                0% 100%) !important;
    }

    .panorama-item {
        flex: 0 0 75%;
    }

    .panorama-track {
        gap: 16px;
        padding-inline: 16px;
    }
}

/* Footer Styles */
        .footer {
            background: #0a0a0a;
            color: #fff;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-main {
            background: #0a0a0a;
            padding: clamp(50px, 6vw, 80px) 0 clamp(40px, 5vw, 60px);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(20px, 5vw, 60px);
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(40px, 6vw, 80px);
            align-items: flex-start;
        }

        /* SECTION 1: LOGO & SOCIAL */
        .footer-logo-section {
            padding: clamp(30px, 4vw, 50px);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            min-height: 280px;
        }

        .footer-logo {
            margin-bottom: 24px;
        }

        .footer-logo img {
            height: 50px;
            width: auto;
            max-width: 180px;
            object-fit: contain;
        }

        .footer-nav-column h4 {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 20px;
            margin-top: 30px;
        }

        .footer-nav-column:first-of-type h4 {
            margin-top: 0;
        }

        .footer-nav-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-nav-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s ease;
            display: inline-block;
        }

        .footer-nav-column ul li a:hover {
            color: #7ebb48;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            /*margin-top: auto;*/
            /*padding-top: 20px;*/
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .footer-social a:hover {
            background: #7ebb48;
            border-color: #7ebb48;
            color: #000;
            transform: translateY(-2px);
        }

        /* SECTION 2: DISCOVER LINKS */
        .footer-discover-section {
            /*border: 2px solid #ff0000;*/
            padding: clamp(30px, 4vw, 50px);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            min-height: 280px;
        }

        .footer-discover-section h4 {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 24px;
        }

        .footer-discover-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-discover-section ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s ease;
            display: inline-block;
        }

        .footer-discover-section ul li a:hover {
            color: #7ebb48;
        }

        /* SECTION 3: CONTACT INFO */
        .footer-contact-section {
            padding: clamp(30px, 4vw, 50px);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            min-height: 280px;
        }

        .footer-contact-section h4 {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 24px;
        }

        .footer-contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: rgba(255, 255, 255, 0.75);
            font-size: 13px;
            line-height: 1.6;
        }

        .footer-contact-list i {
            color: #7ebb48;
            font-size: 14px;
            margin-top: 2px;
            flex-shrink: 0;
            width: 16px;
        }

        .footer-contact-list a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-contact-list a:hover {
            color: #7ebb48;
        }

        /* FOOTER BOTTOM */
        .footer-bottom {
            background: #0a0a0a;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 24px 0;
        }

        .footer-bottom-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(20px, 5vw, 60px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            align-items: center;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 12px;
            transition: color 0.2s ease;
        }

        .footer-bottom-links a:hover {
            color: #7ebb48;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
            line-height: 1.6;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-logo-section,
            .footer-discover-section,
            .footer-contact-section {
                min-height: auto;
            }

            .footer-bottom-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-copyright {
                width: 100%;
            }
        }


.hero {
    min-height: 100vh;
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    gap: 40px;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-gallery {
    width: 90vw;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.9));
    box-shadow: 0 60px 180px rgba(0, 0, 0, 0.8);
}

.gallery-track {
    position: absolute;
    inset: 0;
    display: flex;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

.gallery-item {
    flex: 0 0 calc(100% / 5);
    height: 100%;
    position: relative;
    transform-origin: center;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(110%) contrast(110%);
}

.hero-text {
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-subtitle {
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 16px;
}

.hero-heading {
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 0.5s ease, opacity 0.5s ease;
    will-change: transform, opacity;
}

.hero-description {
    max-width: 640px;
    margin: 24px auto 0;
    color: rgb(255, 255, 255);
    font-size: 18px;
}

.clients-marquee {
    background: #000000;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 50px;
    height: auto; /* Changed from 106px */
    overflow: hidden;
    padding: 30px 0; /* Add padding instead of fixed height */
}

.clients-marquee .marquee-mask {
    width: min(1400px, 96vw);
    margin: 0 auto;
    overflow: hidden;
    padding: clamp(20px, 3vw, 35px) 0;
}

.clients-marquee .marquee-track {
    display: flex;
    gap: clamp(50px, 6vw, 90px);
    align-items: center;
    will-change: transform;
    animation: marqueeScroll 24s linear infinite reverse;
}

.clients-marquee .marquee-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(80px, 12vw, 120px); /* Flexible height */
    min-height: 80px; /* Ensure minimum visibility */
}

.clients-marquee .marquee-item img {
    max-height: 100px;
    width: auto;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    /* REMOVED: margin-top: -110px; */ /* This was hiding logos on mobile */
    display: block;
}

.clients-marquee .marquee-item img:hover {
     opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Mobile Responsive Styles for Marquee */
@media (max-width: 768px) {
    .clients-marquee {
        height: 80px;
        margin-top: 20px;
    }

    .clients-marquee .marquee-mask {
        padding: clamp(15px, 2vw, 25px) 0;
    }

    .clients-marquee .marquee-track {
        gap: clamp(30px, 5vw, 50px);
    }

    .clients-marquee .marquee-item {
        height: clamp(70px, 10vw, 100px);
    }

    .clients-marquee .marquee-item img {
        max-height: 120px;
        max-width: 140px;
        margin-top: -70px;
    }
}

@media (max-width: 1024px) {
    .clients-marquee {
        height: auto;
        padding: 25px 0;
    }

    .clients-marquee .marquee-mask {
        padding: clamp(15px, 2vw, 25px) 0;
    }

    .clients-marquee .marquee-item {
        height: clamp(70px, 10vw, 100px);
    }

    .clients-marquee .marquee-item img {
        max-height: 90px;
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .clients-marquee {
        margin-top: 20px;
        padding: 20px 0;
    }

    .clients-marquee .marquee-mask {
        padding: clamp(12px, 2vw, 20px) 0;
    }

    .clients-marquee .marquee-track {
        gap: clamp(30px, 5vw, 50px);
    }

    .clients-marquee .marquee-item {
        height: clamp(60px, 9vw, 85px);
    }

    .clients-marquee .marquee-item img {
        max-height: 80px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .clients-marquee {
        margin-top: 40px;
        padding: 15px 0;
    }

    .clients-marquee .marquee-mask {
        padding: 15px 0;
        width: 100%;
    }

    .clients-marquee .marquee-track {
        gap: clamp(25px, 4vw, 40px);
    }

    .clients-marquee .marquee-item {
        height: clamp(55px, 8vw, 75px);
        min-height: 55px;
    }

    .clients-marquee .marquee-item img {
        max-height: 70px;
        max-width: 120px;
    }
}

@media (max-width: 390px) {
    .clients-marquee {
        padding: 12px 0;
    }

    .clients-marquee .marquee-item {
        height: clamp(50px, 7vw, 65px);
    }

    .clients-marquee .marquee-item img {
        max-height: 60px;
        max-width: 100px;
    }
}

/* Animation */
@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
@media (max-width: 768px) {
    .clients-marquee {
        margin-top: 20px;
        padding: 20px 0;
    }

    .clients-marquee .marquee-mask {
        padding: clamp(12px, 2vw, 20px) 0;
    }

    .clients-marquee .marquee-track {
        gap: clamp(30px, 5vw, 50px);
    }

    .clients-marquee .marquee-item {
        height: clamp(60px, 9vw, 85px);
    }

    .clients-marquee .marquee-item img {
        max-height: 80px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .clients-marquee {
        height: 70px;
        margin-top: 40px;
    }

    .clients-marquee .marquee-mask {
        padding: 33px 0;
        width: 100%;
    }

    .clients-marquee .marquee-track {
        gap: clamp(25px, 4vw, 40px);
    }

    .clients-marquee .marquee-item {
        height: clamp(60px, 8vw, 85px);
    }

    .clients-marquee .marquee-item img {
        max-height: 100px;
        max-width: 120px;
        margin-top: -60px;
    }
}

.stellar-panels {
    position: relative;
    background: #000;
    padding: clamp(80px, 12vw, 170px) clamp(20px, 6vw, 100px);
    overflow: hidden;
    color: #fff;
    margin-top: -125px;
}

.stellar-panels::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25) 1px, transparent 0),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.2) 1px, transparent 0),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 150px 150px, 220px 220px, 180px 180px;
    opacity: 0.15;
    pointer-events: none;
}

.stellar-panels__noise {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"><filter id="f"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="150" height="150" filter="url(%23f)" opacity="0.18"/></svg>');
    mix-blend-mode: screen;
    opacity: -0.6;
    pointer-events: none;
}

.stellar-panels__fireflies {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: screen;
    z-index: 0;
}

.stellar-panels__fireflies span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.2) 55%, transparent 70%);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.5), 0 0 35px rgba(136, 255, 210, 0.45);
    opacity: 0.9;
    animation: fireflyFloat 18s ease-in-out infinite, fireflyBlink 2.4s ease-in-out infinite;
}

.stellar-panels__fireflies span:nth-child(1) {
    top: 8%;
    left: 12%;
    animation-delay: 0s, 0s;
}

.stellar-panels__fireflies span:nth-child(2) {
    top: 30%;
    left: 65%;
    animation-delay: 2s, 0.3s;
}

.stellar-panels__fireflies span:nth-child(3) {
    top: 72%;
    left: 25%;
    animation-delay: 4s, 0.8s;
}

.stellar-panels__fireflies span:nth-child(4) {
    top: 52%;
    left: 82%;
    animation-delay: 1s, 0.2s;
}

.stellar-panels__fireflies span:nth-child(5) {
    top: 18%;
    left: 88%;
    animation-delay: 3.5s, 1.1s;
}

.stellar-panels__fireflies span:nth-child(6) {
    top: 65%;
    left: 60%;
    animation-delay: 5.5s, 1.5s;
}

.stellar-panels__fireflies span:nth-child(7) {
    top: 86%;
    left: 42%;
    animation-delay: 6.5s, 0.6s;
}

.stellar-panels__fireflies span:nth-child(8) {
    top: 38%;
    left: 5%;
    animation-delay: 7.5s, 1.4s;
}

.stellar-panels__fireflies span:nth-child(9) {
    top: 58%;
    left: 48%;
    animation-delay: 8.5s, 1.8s;
}

.stellar-panels__fireflies span:nth-child(10) {
    top: 26%;
    left: 45%;
    animation-delay: 9.5s, 0.9s;
}

.stellar-panels__fireflies span:nth-child(11) {
    top: 14%;
    left: 52%;
    animation-delay: 10.5s, 1.2s;
}

.stellar-panels__fireflies span:nth-child(12) {
    top: 44%;
    left: 28%;
    animation-delay: 11.5s, 0.7s;
}

.stellar-panels__fireflies span:nth-child(13) {
    top: 76%;
    left: 75%;
    animation-delay: 12.5s, 1.5s;
}

.stellar-panels__fireflies span:nth-child(14) {
    top: 62%;
    left: 12%;
    animation-delay: 13.5s, 0.4s;
}

.stellar-panels__fireflies span:nth-child(15) {
    top: 34%;
    left: 88%;
    animation-delay: 14.5s, 1.7s;
}

.stellar-panels__fireflies span:nth-child(16) {
    top: 90%;
    left: 70%;
    animation-delay: 15.5s, 0.1s;
}

.stellar-panels__fireflies span:nth-child(17) {
    top: 6%;
    left: 72%;
    animation-delay: 16.5s, 1.3s;
}

.stellar-panels__fireflies span:nth-child(18) {
    top: 48%;
    left: 18%;
    animation-delay: 17.5s, 0.5s;
}

.stellar-panels__fireflies span:nth-child(19) {
    top: 82%;
    left: 5%;
    animation-delay: 18.5s, 1.9s;
}

.stellar-panels__fireflies span:nth-child(20) {
    top: 22%;
    left: 32%;
    animation-delay: 19.5s, 0.6s;
}

.stellar-panels__wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 40px);
    perspective: 1600px;
    z-index: 1;
    align-items: stretch;
    justify-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .stellar-panels__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stellar-panels__wrapper {
        grid-template-columns: 1fr;
    }
}

.stellar-panel {
    position: relative;
    border-radius: clamp(24px, 4vw, 48px);
    padding: clamp(32px, 4vw, 48px);
    overflow: hidden;
    /*background: #7ebb48;*/
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 35px 120px rgba(0, 0, 0, 0.85), 0 0 60px rgba(var(--panelAccent), 0.15);
    transform-style: preserve-3d;
    backdrop-filter: blur(18px);
    --panelTranslateY: 0px;
    --tiltX: 0deg;
    --tiltY: 0deg;
    --panelShiftX: 0px;
    --panelAccent: 132, 255, 205;
    --pointerX: 50%;
    --pointerY: 50%;
    --panelBaseRotateY: 0deg;
    transition: transform 0.4s ease, border-color 0.4s ease;
    transform: translate3d(var(--panelShiftX), var(--panelTranslateY), 0) rotateX(var(--tiltY)) rotateY(calc(var(--panelBaseRotateY) + var(--tiltX)));
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(280px, 35vw, 400px);
    aspect-ratio: 4/3;
}

.panel-events {
    --panelAccent: 97, 187, 93;
    --panelBaseRotateY: 0deg;
}

.panel-films {
    --panelAccent: 97, 187, 93;
    --panelBaseRotateY: 0deg;
}

.panel-about {
    --panelAccent: 427, 304, 260;
    --panelBaseRotateY: 0deg;
}

.stellar-panel::before {
    content: '';
    position: absolute;
    inset: -25px;
    background-size: cover;
    background-position: center;
    filter: blur(22px) saturate(120%);
    opacity: 0.45;
    transform: scale(1.2);
    z-index: -2;
}

.panel-about::before {
    background-image: url('images/banner/4L6A7695.JPG');
}

.panel-work::before {
    background-image: url('images/banner/ACA_5253.JPG');
}

.panel-about::before {
    background-image: url('images/banner/DSC05033.JPG');
}

.stellar-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at var(--pointerX) var(--pointerY), rgba(var(--panelAccent), 0.35), rgba(var(--panelAccent), 0) 60%),
        linear-gradient(150deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
    z-index: -1;
    opacity: 0.85;
    transition: opacity 0.35s ease;
}

.stellar-panel:hover {
    border-color: rgba(var(--panelAccent), 0.35);
}

.stellar-panel:hover::after {
    opacity: 1;
}

.stellar-panel__orbit {
    position: absolute;
    inset: -35px;
    border-radius: inherit;
    border: 1px solid rgba(var(--panelAccent), 0.25);
    opacity: 0.35;
    filter: drop-shadow(0 25px 45px rgba(var(--panelAccent), 0.25));
    pointer-events: none;
    animation: orbitPulse 6s ease-in-out infinite;
    z-index: 0;
}

.stellar-panel__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    z-index: 1;
    padding: clamp(40px, 6vw, 80px) 20px;
    cursor: pointer;
}

.stellar-panel__title {
    font-size: 23px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    background: white;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 40px rgba(var(--panelAccent), 0.35);
}

.stellar-panel__title::after {
    content: attr(data-title);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: rgba(255, 255, 255, 0.08);
    transform: translate(8px, 16px) scale(1.08);
    filter: blur(1px);
    z-index: -1;
    letter-spacing: 0.28em;
}

.stellar-panel__title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--panelAccent), 0), rgba(var(--panelAccent), 0.8), rgba(var(--panelAccent), 0));
    box-shadow: 0 0 25px rgba(var(--panelAccent), 0.8);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.stellar-panel:hover .stellar-panel__title::before {
    opacity: 1;
    transform: translateY(0);
}

.about-showcase {
    position: relative;
    background: #000;
    padding: clamp(60px, 8vw, 140px) clamp(20px, 6vw, 100px);
}

.about-showcase__wrapper {
    position: relative;
    border-radius: 44px;
    padding: clamp(40px, 6vw, 70px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.about-showcase__wrapper::before {
    content: '';
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 55%),
        radial-gradient(circle at 70% 40%, rgba(136, 255, 210, 0.12), transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(255, 159, 210, 0.16), transparent 65%);
    opacity: 0.8;
    filter: blur(20px);
    z-index: 0;
}

.about-showcase__headline,
.about-showcase__grid {
    position: relative;
    z-index: 1;
}

.about-showcase__eyebrow {
    font-size: 12px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.about-showcase h2 {
    font-size: clamp(32px, 6vw, 68px);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
}

.about-showcase__grid {
    margin-top: clamp(32px, 4vw, 50px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 5vw, 50px);
}

.about-showcase__card {
    padding: clamp(24px, 4vw, 36px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.04);
}

.about-showcase__card h3 {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 13px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.about-showcase__card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.about-gallery-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.slider-track {
    display: flex;
    gap: 30px;
    animation: scrollSlider 40s linear infinite;
}

.slide img {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
}

@keyframes scrollSlider {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.team-delegates {
    padding: 80px 5vw;
    background: #000;
}

.team-title {
    text-align: center;
    font-size: 48px;
    color: #fff;
    margin-bottom: 60px;
}

.delegates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.flip-card {
    background: transparent;
    perspective: 1000px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 380px;
    transform-style: preserve-3d;
    transition: transform 0.8s;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    padding: 20px;
}

.about-gallery-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    background: #000;
    /* optional */
}

.slider-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: sliderScroll 65s linear infinite;
}

.slide {
    flex: 0 0 auto;
}

.slide img {
    height: 70vh;
    /* Full landscape look */
    width: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Smooth Infinite Animation */
@keyframes sliderScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide img {
        height: 40vh;
    }
}

.flip-front img {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.flip-back {
    transform: rotateY(180deg);
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
}


.contact-touch {
    background: #fff;
    color: #000;
    padding: clamp(60px, 12vw, 160px) clamp(20px, 8vw, 120px);
}

.contact-touch__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-touch__heading p {
    font-family: 'ClashDisplay', sans-serif;
    font-size: clamp(32px, 7vw, 68px);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: clamp(32px, 4vw, 50px);
}

.contact-touch__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(30px, 6vw, 60px);
}

.contact-touch__form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-touch__row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-touch__row label {
    flex: 1;
}

.contact-touch__form label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.contact-touch__form input,
.contact-touch__form textarea {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    padding: 12px 0;
    font-size: 16px;
    font-family: inherit;
    color: #000;
}

.contact-touch__form input:focus,
.contact-touch__form textarea:focus {
    outline: none;
    border-bottom-color: #000;
}

.contact-touch__form button {
    align-self: flex-start;
    padding: 12px 36px;
    border: none;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 12px;
    cursor: pointer;
}

.contact-touch__details h3 {
    font-size: 14px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-touch__details ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-touch__details strong {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 12px;
    margin-bottom: 6px;
}

.contact-touch__details span {
    font-size: 16px;
}

.contact-touch__links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-touch__links a {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 12px;
    color: #000;
    text-decoration: none;
}

/* Events Page */
body.modal-open {
    overflow: hidden;
}

.events-hero-video {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.events-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-hero-video__scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* dark overlay */
    z-index: 1;
}

/* Grid Layout */
.events-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

< !DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Video Hero with Mute Toggle</title><style>* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
}

.events-hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.events-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-hero-video__scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.mute-toggle-btn {
    position: absolute;
    bottom: 90%;
    right: 10px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mute-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mute-toggle-btn:active {
    transform: scale(0.95);
}

.mute-toggle-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mute-toggle-btn {
        width: 45px;
        height: 45px;
        bottom: 297px;
        right: 6px;
    }

    .mute-toggle-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Card Base */
.event-showcase-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
}

/* Image */
.event-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s ease, transform .4s ease;
}

/* 🔥 Hover Fade */
.event-showcase-card:hover img {
    opacity: 0.6;
    transform: scale(1.05);
}

/* Overlay Glassmorphism */
.event-showcase-card__overlay {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    padding: 20px 15px;
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    opacity: 0;
    transition: all .4s ease;
}

/* Slide Up + Fade In */
.event-showcase-card:hover .event-showcase-card__overlay {
    bottom: 0;
    opacity: 1;
}

/* ------------------------- */
/*       FULLSCREEN POPUP    */
/* ------------------------- */
/* Event Gallery Popup Styles */
.event-gallery-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

/* Popup Content Container */
.event-gallery-popup__content {
    position: relative;
    width: 90%;
    max-width: 1400px;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carousel Container */
.event-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    perspective: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carousel Track */
.event-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

/* Individual Carousel Slide */
.carousel-slide {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 55%;
    max-width: 700px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    transform-origin: center center;
}

/* Center Slide (Active) */
.carousel-slide[data-position="0"] {
    transform: translate(-50%, -50%) scale(1) translateZ(0) rotateY(0deg);
    opacity: 1;
    z-index: 100;
    pointer-events: auto;
}

/* Right Slide (+1) */
.carousel-slide[data-position="1"] {
    transform: translate(0%, -50%) scale(0.7) translateZ(-250px) rotateY(-35deg);
    opacity: 0.5;
    z-index: 50;
    pointer-events: none;
}

/* Left Slide (-1) */
.carousel-slide[data-position="-1"] {
    transform: translate(-100%, -50%) scale(0.7) translateZ(-250px) rotateY(35deg);
    opacity: 0.5;
    z-index: 50;
    pointer-events: none;
}

/* Far Right Slide (+2) */
.carousel-slide[data-position="2"] {
    transform: translate(50%, -50%) scale(0.5) translateZ(-450px) rotateY(-45deg);
    opacity: 0.2;
    z-index: 25;
    pointer-events: none;
}

/* Far Left Slide (-2) */
.carousel-slide[data-position="-2"] {
    transform: translate(-150%, -50%) scale(0.5) translateZ(-450px) rotateY(45deg);
    opacity: 0.2;
    z-index: 25;
    pointer-events: none;
}

/* Hidden Slides (further away) */
.carousel-slide[data-position="3"],
.carousel-slide[data-position="-3"],
.carousel-slide[data-position="4"],
.carousel-slide[data-position="-4"],
.carousel-slide[data-position="5"],
.carousel-slide[data-position="-5"] {
    transform: translate(-50%, -50%) scale(0.3) translateZ(-650px) rotateY(0deg);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

/* Slide Images */
.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    display: block;
}

/* Close Button */
.event-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 32px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    line-height: 1;
}

.event-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ff4444;
    transform: rotate(90deg) scale(1.1);
}

/* Navigation Buttons */
.event-popup-prev,
.event-popup-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 28px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.event-popup-prev {
    left: 30px;
}

.event-popup-next {
    right: 30px;
}

.event-popup-prev:hover,
.event-popup-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.15);
}

.event-popup-prev:active,
.event-popup-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Event Title */
.event-popup-title {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    z-index: 10001;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .event-gallery-popup__content {
        width: 95%;
        height: 75vh;
    }

    .carousel-slide {
        width: 65%;
        max-width: 600px;
    }

    .event-popup-prev,
    .event-popup-next {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .event-popup-prev {
        left: 20px;
    }

    .event-popup-next {
        right: 20px;
    }

    .event-popup-close {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .event-gallery-popup__content {
        width: 100%;
        height: 70vh;
    }

    .carousel-slide {
        width: 80%;
        max-width: 500px;
    }

    .carousel-slide img {
        max-height: 55vh;
    }

    /* Simplify 3D effect on mobile */
    .carousel-slide[data-position="1"] {
        transform: translate(10%, -50%) scale(0.65) translateZ(-150px) rotateY(-25deg);
        opacity: 0.4;
    }

    .carousel-slide[data-position="-1"] {
        transform: translate(-110%, -50%) scale(0.65) translateZ(-150px) rotateY(25deg);
        opacity: 0.4;
    }

    .carousel-slide[data-position="2"],
    .carousel-slide[data-position="-2"] {
        opacity: 0;
        pointer-events: none;
    }

    .event-popup-prev,
    .event-popup-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .event-popup-prev {
        left: 10px;
    }

    .event-popup-next {
        right: 10px;
    }

    .event-popup-title {
        font-size: 20px;
        bottom: 20px;
    }

    .event-popup-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        width: 90%;
    }

    .carousel-slide img {
        max-height: 50vh;
        border-radius: 8px;
    }

    .event-popup-prev,
    .event-popup-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .event-popup-title {
        font-size: 18px;
        bottom: 15px;
    }

    .event-popup-close {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

/* Smooth transitions for all elements */
.carousel-slide * {
    transition: inherit;
}

/* ⭐ Overlay Text */
/* Hero Text Section Below Video */
.events-hero-text {
    background: #000000;
    padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 40px);
    text-align: center;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.events-hero-text h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 clamp(12px, 2vw, 20px) 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.events-hero-text p {
    font-size: clamp(16px, 2vw, 20px);
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}


.events-main {
    background: #050505;
    color: #fff;
    padding-top: 80px;
}

.events-hero-video {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
}

.events-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(115%) contrast(105%);
}

.events-hero-video__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.85));
    pointer-events: none;
}

.events-showcase {
    padding: clamp(60px, 10vw, 140px) clamp(20px, 7vw, 140px);
    background: #000000;
    margin-bottom: -145px;
    margin-top: -125px;
}

.events-section-heading {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 80px);
    display: none;
}

.events-section-heading p {
    font-size: 13px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.events-section-heading h2 {
    font-size: clamp(40px, 6vw, 78px);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.events-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: clamp(24px, 3vw, 40px);
}

.event-showcase-card {
    position: relative;
    border-radius: 38px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.75);
    cursor: pointer;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.event-showcase-card img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: saturate(110%);
}

.event-showcase-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 100%);
}

/* Parent Section */
.events-newsletter {
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

/* Glass Container */
.events-newsletter__glass {
    max-width: 1200px;
    width: 90%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Left Side */
.events-newsletter__left {
    flex: 1;
}

.events-newsletter__left h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

/* Right Image */
.events-newsletter__image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.events-newsletter__image img {
    width: 100%;
    max-width: 480px;
    border-radius: 18px;
    transition: transform 0.15s ease-out;
}

/* For responsive screens */
@media (max-width: 768px) {
    .events-newsletter__glass {
        flex-direction: column;
        text-align: center;
    }
}

.event-showcase-card__overlay span {
    font-size: 20px;
    /* letter-spacing: 0.18em; */
    text-transform: uppercase;
}

.event-showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(136, 255, 210, 0.4);
    box-shadow: 0 30px 80px rgba(74, 222, 128, 0.2);
}

.event-showcase-card:hover img {
    transform: scale(1.08);
}

.event-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 4000;
}

.event-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.event-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(12px);
}

.event-modal__dialog {
    position: relative;
    width: min(960px, 92vw);
    background: rgba(8, 8, 12, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 45px 120px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.event-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.event-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.event-carousel__viewport {
    width: 100%;
    height: clamp(340px, 45vw, 540px);
    overflow: visible;
    perspective: 1800px;
}

.event-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.event-carousel__slide {
    position: absolute;
    inset: 0;
    margin: 0 auto;
    width: min(540px, 80vw);
    height: 100%;
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity 0.55s ease,
        filter 0.55s ease;
    filter: saturate(110%);
    border-radius: 32px;
    box-shadow: 0 45px 120px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.event-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-carousel__slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.event-carousel__slide.is-active::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.15) 60%);
}

.event-carousel__slide {
    --offset: 0;
    --abs-offset: 0;
    z-index: calc(100 - var(--abs-offset));
    opacity: calc(1 - min(var(--abs-offset) * 0.28, 0.65));
    filter: blur(calc(var(--abs-offset) * 1px));
    transform: translateX(calc(var(--offset) * 16rem)) translateZ(calc(var(--abs-offset) * -8rem)) rotateY(calc(var(--offset) * -14deg)) scale(calc(1 - min(var(--abs-offset) * 0.12, 0.45)));
}

.event-carousel__slide.is-active {
    filter: none;
    opacity: 1;
}

.event-carousel__title {
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: clamp(18px, 2.2vw, 24px);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.event-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.event-carousel__nav {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    font-size: 18px;
}

.event-carousel__nav:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

.events-newsletter {
    padding: clamp(60px, 10vw, 140px) clamp(20px, 6vw, 120px);
    background: #060606;
}

.events-newsletter__glass {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    justify-content: space-between;
    padding: clamp(32px, 5vw, 60px);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
    margin-top: -165px;
    width: 99%;

}

.events-newsletter__eyebrow {
    font-size: 12px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 18px;
}

.events-newsletter h2 {
    max-width: 620px;
    font-size: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.events-newsletter__form {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    min-width: 280px;
}

.events-newsletter__form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.events-newsletter__form input {
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    min-width: clamp(220px, 30vw, 320px);
}

.events-newsletter__form button {
    padding: 14px 32px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(120deg, rgba(136, 255, 210, 0.35), rgba(136, 255, 210, 0.12));
    color: #fff;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.events-newsletter__form button:hover {
    transform: translateY(-2px);
}

.events-contact {
    padding: clamp(60px, 11vw, 160px) clamp(20px, 7vw, 140px);
    background: black;
    margin-top: -156px;
    margin-bottom: -156px;
}


.events-contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(30px, 4vw, 60px);
    align-items: start;
}

.events-contact__eyebrow {
    font-size: 12px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.events-contact h2 {
    font-size: clamp(28px, 5vw, 50px);
    /* letter-spacing: 0.15em; */
    text-transform: uppercase;
    margin-bottom: 18px;
}

.events-contact__copy p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.events-contact__details {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.events-contact__details i {
    margin-right: 12px;
    color: rgba(136, 255, 210, 0.8);
}

.events-contact__form {
    display: grid;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: clamp(24px, 5vw, 40px);
}

.events-contact__form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.events-contact__form input,
.events-contact__form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
}

.events-contact__form button {
    border: none;
    border-radius: 999px;
    padding: 16px 32px;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    background: linear-gradient(120deg, rgba(255, 159, 210, 0.4), rgba(255, 159, 210, 0.1));
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.events-contact__form button:hover {
    transform: translateY(-2px);
}

/* -------------------------------------------------------------------------- */
/*                      MOBILE + TABLET RESPONSIVE FIXES                      */
/* -------------------------------------------------------------------------- */

/* ---------- Global Reset ---------- */
@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }
}

/* ---------- HERO SECTION ---------- */
@media (max-width: 768px) {
    .events-hero-video {
        height: 50vh;
    }

    .events-hero-text {
        padding: clamp(30px, 5vw, 45px) clamp(20px, 4vw, 30px);
    }

    .events-hero-text h1 {
        font-size: clamp(28px, 6vw, 40px);
        margin-bottom: 12px;
    }

    .events-hero-text p {
        font-size: clamp(14px, 3vw, 18px);
        margin-top: 45px;
    }
}

/* ---------- GRID CARDS ---------- */
@media (max-width: 768px) {
    .events-card-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .event-showcase-card {
        border-radius: 24px;
    }

    .event-showcase-card img {
        max-height: 320px;
    }
}

/* ---------- POPUP ---------- */
@media (max-width: 768px) {
    .event-gallery-popup__content {
        width: 100%;
        height: 80%;
    }

    .tile {
        animation-duration: 0.45s;
    }

    .event-popup-prev,
    .event-popup-next {
        padding: 10px 14px;
        font-size: 1.4rem;
    }
}

/* ---------- NEWSLETTER SECTION ---------- */
@media (max-width: 1024px) {
    .events-newsletter__glass {
        flex-direction: column;
        text-align: center;
    }

    .events-newsletter h2 {
        font-size: 24px;
        max-width: 90%;
        margin: 0 auto 10px;
    }

    .events-newsletter__form {
        justify-content: center;
        width: 100%;
    }

    .events-newsletter__image img {
        max-width: 360px;
    }
}

@media (max-width: 600px) {
    .events-newsletter__form input {
        min-width: 100%;
    }

    .events-newsletter__form button {
        width: 100%;
    }
}

/* ---------- CONTACT SECTION ---------- */
@media (max-width: 1024px) {
    .events-contact__grid {
        grid-template-columns: 1fr;
    }

    .events-contact h2 {
        font-size: 26px;
        text-align: center;
    }

    .events-contact__copy {
        text-align: center;
    }

    .events-contact__details {
        align-items: center;
    }
}

@media (max-width: 600px) {

    .events-contact__form input,
    .events-contact__form textarea {
        font-size: 14px;
    }
}

/* ---------- CAROUSEL RESPONSIVE ---------- */
@media (max-width: 768px) {
    .event-carousel__viewport {
        height: 300px;
    }

    .event-carousel__slide {
        width: 90%;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .event-carousel__viewport {
        height: 240px;
    }
}

/* ---------- TILE ANIMATION (Smoother on Mobile) ---------- */
@media (max-width: 600px) {
    .tile {
        transform: scale(0.6) rotate(6deg);
    }
}

/* ---------- FOR VERY SMALL DEVICES ---------- */
@media (max-width: 390px) {
    .events-newsletter__glass {
        padding: 24px;
    }

    .events-section-heading h2 {
        font-size: 32px;
    }

    .event-showcase-card img {
        max-height: 260px;
    }

    .events-hero-video {
        height: 48vh;
    }
}

/* Intro Section */
.events-intro {
    width: 100%;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.events-intro__inner {
    max-width: 86%;
    padding: 40px 50px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.events-intro__inner h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.events-intro__inner p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #e6e6e6;
    margin: 0 auto;
}

/* Fade Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .events-intro__inner {
        padding: 28px 25px;
    }

    .events-intro__inner h2 {
        font-size: 1.85rem;
    }

    .events-intro__inner p {
        font-size: 1rem;
    }
}




.about-page {
    background: #030303;
    color: #fff;
    padding-top: 88px;
}

.about-page__hero {
    padding: 35px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 60%);
}

.about-page__hero-copy p:first-child {
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-page__hero-copy h1 {
    font-size: clamp(42px, 7vw, 82px);
    /* letter-spacing: 0.2em; */
    margin-bottom: 18px;
}

.about-page__story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 4vw, 50px);
    padding: clamp(40px, 8vw, 100px) clamp(20px, 8vw, 140px);
}

.about-page__story ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-gallery {
    padding: clamp(40px, 8vw, 100px) clamp(20px, 8vw, 140px);
}

.about-gallery__grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.about-gallery__grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-values {
    padding: clamp(40px, 8vw, 100px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.about-values__card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 36px);
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
    .events-hero-video {
        height: 360px;
    }

    .event-carousel__slide {
        width: 90%;
    }

    .event-carousel__track {
        perspective: 1400px;
    }

    .events-newsletter__form {
        flex-direction: column;
        align-items: stretch;
    }
}

@keyframes orbitPulse {
    0% {
        transform: scale(0.98);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.03);
        opacity: 0.55;
    }

    100% {
        transform: scale(0.98);
        opacity: 0.3;
    }
}

@keyframes fireflyFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(0.9);
    }

    50% {
        transform: translate3d(20px, -30px, 0) scale(1.2);
    }

    100% {
        transform: translate3d(-10px, 20px, 0) scale(0.8);
    }
}

@keyframes fireflyBlink {

    0%,
    100% {
        opacity: 0.25;
        filter: blur(0px);
    }

    50% {
        opacity: 1;
        filter: blur(1px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-parallax [data-parallax-layer] {
        transition: none;
        transform: none !important;
    }
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .clients-marquee .marquee-track {
        animation: none;
    }
}

.hero-flip-heading {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: translate(-50%, -50%) rotateY(0deg);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
    width: 100vw;
    text-align: center;
    will-change: transform, opacity;
    backface-visibility: hidden;
    text-shadow:
        0px 2px 4px rgba(0, 0, 0, 0.6),
        0px 4px 10px rgba(0, 0, 0, 0.4),
        0px 8px 20px rgba(0, 0, 0, 0.35),
        0px 12px 40px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive Hero Flip Heading */
@media (max-width: 768px) {
    .hero-flip-heading {
        font-size: 28px !important;
        /* smaller font for tablets/small screens */
        top: 20% !important;
        /* adjust vertical position */
        width: 90vw;
        /* fit within screen */
        letter-spacing: 0.03em;
        line-height: 1.3;
        /* allow multi-line text */
        text-align: center;
        padding: 0 10px;
        /* small horizontal padding */
        white-space: normal;
        /* enable text wrap */
    }
}

@media (max-width: 480px) {
    .hero-flip-heading {
        font-size: 20px;
        /* for mobile phones */
        top: 50%;
        width: 95vw;
        letter-spacing: 0.02em;
        line-height: 1.4;
        /* better readability on small screens */
        padding: 0 8px;
        white-space: normal;
        /* enable text wrap */
    }
}

/* Force panorama elements to stay below */
.panorama-shell {
    position: relative;
    isolation: isolate;
    /* Create stacking context */
}

.panorama-track {
    position: relative;
    z-index: 1 !important;
}

.panorama-track img {
    position: relative;
    z-index: 1 !important;
}

.hero-flip-heading {
    position: absolute;
    z-index: 9999 !important;
    /* Force highest priority */
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 55px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgb(255, 255, 255);
    text-transform: capitalize;
    pointer-events: none;
    width: 100vw;
    text-align: center;
    perspective: 1000px;
}

.hero-line {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(-100px);
    opacity: 0;
    white-space: nowrap;
    text-shadow:
        0px 2px 4px rgba(0, 0, 0, 0.6),
        0px 4px 10px rgba(0, 0, 0, 0.4),
        0px 8px 20px rgba(0, 0, 0, 0.35),
        0px 12px 40px rgba(0, 0, 0, 0.3);
    animation: slideInOut 9s infinite;
}

.hero-line[data-line="1"] {
    animation-delay: 1.5s;
    /* 1.5 second initial delay */
}

.hero-line[data-line="2"] {
    animation-delay: 4.5s;
    /* 1.5s + 3s */
}

.hero-line[data-line="3"] {
    animation-delay: 7.5s;
    /* 1.5s + 6s */
}

@keyframes slideInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateX(-100px);
    }

    10% {
        opacity: 1;
        transform: translate(-50%, -50%) translateX(0px);
    }

    30% {
        opacity: 1;
        transform: translate(-50%, -50%) translateX(0px);
    }

    40% {
        opacity: 0;
        transform: translate(-50%, -50%) translateX(100px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translateX(100px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-flip-heading {
        font-size: 28px;
        top: 55%;
        width: 90vw;
        letter-spacing: 0.03em;
    }

    .hero-line {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-flip-heading {
        font-size: 20px;
        top: 50%;
        width: 95vw;
        letter-spacing: 0.02em;
    }

    .hero-line {
        padding: 0 8px;
    }
}

/* About section directories */



.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 20s infinite;
}

.shape1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(4deg, #000000 0%, #338e0b 50%, #255b01 100% 100%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(4deg, #000000 0%, #338e0b 50%, #255b01 100% 100%);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(4deg, #000000 0%, #338e0b 50%, #255b01 100% 100%);
    bottom: 5%;
    left: 15%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(40px, 10px) rotate(270deg);
    }
}

.about-section {
    padding: 120px 20px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: -208px;
}

.section-header {
    text-align: center;
    margin-top: 73px;
    animation: fadeInDown 1s ease;
}

.section-header h1 {
    font-size: 40px;
    font-weight: 800;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
}

.section-header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: white;
    display:none;
    border-radius: 2px;
}

.section-header p {
    font-size: clamp(16px, 2vw, 20px);
    color: #ffffff;
    max-width: 1200px;
    margin: 30px auto 0;
}

.director-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    position: relative;
}

.director-row:nth-child(2) {
    animation-delay: 0.2s;
}

.director-row:nth-child(3) {
    animation-delay: 0.3s;
}

.director-row:nth-child(4) {
    animation-delay: 0.4s;
}

.director-row:nth-child(5) {
    animation-delay: 0.5s;
}

.director-row:last-child {
    margin-bottom: 0;
}

.text-content {
    flex: 0 0 58%;
    /*background: #7ebb4845;*/
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.text-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7ebb485c 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.text-content:hover::before {
    opacity: 1;
}

.text-content:hover {
    transform: translateX(10px);
    border-color: #7ebb48;
}

.director-row.reverse .text-content:hover {
    transform: translateX(-10px);
}

.image-content {
    flex: 0 0 42%;
    position: relative;
}

.director-row.reverse {
    flex-direction: row-reverse;
}

.text-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.text-content .role {
    font-size: 1.2rem;
    background: #7ebb48;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.text-content p {
    font-size: 1.05rem;
    color: #b0b0c0;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #4facfe);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: gradientRotate 3s linear infinite;
}

@keyframes gradientRotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.image-wrapper:hover::before {
    opacity: 1;
}

.image-wrapper:hover {
    transform: translateY(-15px) scale(1.02);
}

.image-content img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 28px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.image-wrapper:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.glow-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.director-row:nth-child(2) .glow-effect {
    /*background: linear-gradient(135deg, #667eea, #764ba2);*/
    top: -50px;
    right: -50px;
    opacity: 0.3;
}

.director-row:nth-child(3) .glow-effect {
    /*background: linear-gradient(135deg, #f093fb, #f5576c);*/
    bottom: -50px;
    left: -50px;
    opacity: 0.3;
}

.director-row:nth-child(4) .glow-effect {
    /*background: linear-gradient(135deg, #4facfe, #00f2fe);*/
    top: -50px;
    left: -50px;
    opacity: 0.3;
}

.director-row:nth-child(5) .glow-effect {
    /*background: linear-gradient(135deg, #fa709a, #fee140);*/
    bottom: -50px;
    right: -50px;
    opacity: 0.3;
}

.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.2) 30%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: opacity 0.3s ease;
    filter: blur(40px);
}

.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {

    .director-row,
    .director-row.reverse {
        flex-direction: column;
        gap: 50px;
    }

    .text-content,
    .image-content {
        flex: 0 0 100%;
    }

    .section-header h1 {
        font-size: 2.5rem;
        margin-top: 40px;
    }

    .vision-label {
        margin-left: 88px !important;
    }

    .text-content {
        padding: 35px;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .image-content img {
        height: 400px;
    }


}

/* Hero Banner with Image */
.hero-banner {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: brightness(0.4); */
}



.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 40px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(34, 139, 34, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(74, 222, 128, 0.5);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4ade80;
    margin-bottom: 30px;
    animation: glow 2s ease-in-out infinite;
    display: none;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(74, 222, 128, 0.6);
    }
}

.hero-title {
    font-size: clamp(56px, 10vw, 110px);
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: none;
}

.hero-description {
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.8;
    color: #e2e8f0;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    display: none;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll-indicator::after {
    content: '↓';
    font-size: 32px;
    color: #4ade80;
    display: none;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Vision Section - Text Slider */
.vision-section {
    position: relative;
    padding: 0px 0;
    background: black;
    overflow: hidden;
}

.vision-label-container {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.vision-label {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(34, 139, 34, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4ade80;
    margin-left: 44%;
}

.vision-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.vision-slider-wrapper::before,
.vision-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.vision-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.vision-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, transparent 100%);
}

.vision-slider-track {
    display: flex;
    gap: 60px;
    animation: slideLeft 40s linear infinite;
    width: max-content;
}

.vision-slider-track:hover {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.vision-text-item {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    padding: 0 30px;
}

.vision-text {
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 20%, #4ade80 60%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    transition: all 0.3s ease;
}

.vision-text-item:hover .vision-text {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.5));
}

.vision-separator {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.6);
}

.vision-glow-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(74, 222, 128, 0.3) 25%,
            rgba(74, 222, 128, 0.6) 50%,
            rgba(74, 222, 128, 0.3) 75%,
            transparent 100%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 70vh;
        min-height: 500px;
    }

    .vision-section {
        padding: 60px 0;
    }

    .vision-slider-wrapper::before,
    .vision-slider-wrapper::after {
        width: 100px;
    }

    .vision-text {
        font-size: 36px;
    }
}


/* ------------------------------------------------------ */

 /* Video Modal */
 .video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-container:hover .video-controls,
.video-controls.show {
    transform: translateY(0);
}

.video-title {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.timeline {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 12px;
    position: relative;
}

.timeline-progress {
    height: 100%;
    background: #e50914;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.timeline-progress::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 12px;
    height: 12px;
    background: #e50914;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.timeline:hover .timeline-progress::after {
    transform: translateY(-50%) scale(1);
}

.controls-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.play-pause-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.play-pause-btn:hover {
    transform: scale(1.1);
}

.time-display {
    font-size: 14px;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.fullscreen-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.fullscreen-btn:hover {
    transform: scale(1.1);
}


.films-showcase {
     max-width: 1400px;
    margin: 0 auto;
    padding: clamp(60px, 10vw, 140px) clamp(20px, 7vw, 140px);
    background: #000000;
    margin-bottom: -145px;
    margin-top: -125px;
}

.films-section-heading {
    margin-bottom: 40px;
}

.films-section-heading p {
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.films-section-heading h2 {
    font-size: 48px;
    font-weight: 700;
}

.film-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(428px, 1fr));
    gap: 24px;
}

.film-showcase-card {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.film-showcase-card:hover,
.film-showcase-card:focus {
    transform: translateY(-8px);
    border-color: rgba(74, 222, 128, 0.5);
    box-shadow: 0 30px 80px rgba(74, 222, 128, 0.2);
}

.film-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.film-showcase-card:hover img {
    transform: scale(1.05);
}

.film-showcase-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.film-showcase-card:hover .film-showcase-card__overlay,
.film-showcase-card:focus .film-showcase-card__overlay {
    transform: translateY(0);
}

.film-showcase-card__overlay span {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-container:hover .video-controls,
.video-controls.show {
    transform: translateY(0);
}

.video-title {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.timeline {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 12px;
    position: relative;
}

.timeline-progress {
    height: 100%;
    background: #e50914;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.timeline-progress::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 12px;
    height: 12px;
    background: #e50914;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.timeline:hover .timeline-progress::after {
    transform: translateY(-50%) scale(1);
}

.controls-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.play-pause-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.play-pause-btn:hover {
    transform: scale(1.1);
}

.time-display {
    font-size: 14px;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.fullscreen-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.fullscreen-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .film-card-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }

    .films-section-heading h2 {
        font-size: 32px;
    }

    .video-container {
        width: 95%;
    }
}

/* ________________________________________ */
.carousel-container {
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    margin-top: -130px;
}

.carousel-title {
    text-align: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 80px;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 90s linear infinite;
    position: relative;
    margin-top: 45px;
}

.logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    margin: 0 0px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    color: #000;
    position: relative;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}


/* Fade edges */
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

