/* Responsive event row layout for events.html */
:root {
    /* Deep Blue & Purple theme variables */
    --bg: #030014;
    /* page background */
    --surface: #0a0a2a;
    /* section surfaces */
    --fg: #ffffff;
    /* main foreground/text */
    --muted: #b3b3ff;
    /* muted text */
    --accent: #8b5cf6;
    /* purple */
    --accent-dark: #6d28d9;
    /* darker purple */
    --accent-rgb: 139, 92, 246;
    /* rgb for rgba usage */
    --card-shadow: 0 4px 24px rgba(var(--accent-rgb), 0.2);
}

/* Improve scroll smoothness and animation performance */
html {
    scroll-behavior: smooth;
}

/* --- Intro Animation --- */
#intro-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0a0c;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

#intro-animation.fade-out {
    opacity: 0;
    transform: translateY(-50px);
    pointer-events: none;
}

.intro-brand {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    overflow: hidden;
}

.intro-celeb, .intro-tree {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

.intro-celeb {
    color: #fff;
    animation: slideUpFade 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

.intro-tree {
    background: linear-gradient(135deg, var(--accent) 0%, #d8b4fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideUpFade 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
}

@keyframes slideUpFade {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- Global Animated Background (BrokerPilot style) --- */
.global-bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    overflow: hidden;
    background-color: var(--bg);
    pointer-events: none;
}

/* Base noise overlay */
.bg-noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

/* Faint dot grid overlay */
.bg-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 1;
}

/* Glowing Orbs */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.65;
    z-index: 0;
    animation: floatBlob 25s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-duration: 28s;
}

.bg-blob-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-dark) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    animation-duration: 34s;
    animation-delay: -5s;
}

.bg-blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4c1d95 0%, transparent 70%);
    top: 20%;
    left: 30%;
    animation-duration: 40s;
    animation-delay: -12s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 120px) scale(1.15); }
    66% { transform: translate(-60px, 80px) scale(0.85); }
    100% { transform: translate(40px, -60px) scale(1.05); }
}

/* prefer transform/opacity for animations; hint to browser */
.animated-header,
.events-hero-slide,
.video-slide {
    will-change: transform, opacity;
}

.event-list {
    width: 100%;
}

.event-row {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    margin-bottom: 32px;
    overflow: hidden;
}

.event-img-col {
    padding: 0;
    min-height: 220px;
}

.event-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.13);
}

.event-details-col {
    padding: 32px 24px 24px 24px;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
}

.event-desc {
    font-size: 1.08rem;
    color: #f1f1f1;
    margin-bottom: 18px;
}

.event-date,
.event-guests {
    font-size: 1rem;
    color: #f1f1f1;
    margin-right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 991px) {
    .event-details-col {
        padding: 18px 12px 16px 12px;
    }

    .event-title {
        font-size: 1.18rem;
    }

    .event-img {
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .event-row {
        flex-direction: column !important;
    }

    .event-img-col,
    .event-details-col {
        width: 100%;
        max-width: 100%;
    }

    .event-img {
        max-width: 98vw;
        margin-bottom: 12px;
    }

    .event-details-col {
        padding: 14px 8vw 12px 8vw;
    }
}

/* Event Gallery Styles */
.event-gallery {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(0, 0, 0, 0.05);
    /* subtle background for transparency */
    animation: fadeInUp 0.8s ease-out both;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Staggered animation delays for gallery images */
.gallery-img:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-img:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-img:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-img:nth-child(4) {
    animation-delay: 0.4s;
}

.gallery-img:nth-child(5) {
    animation-delay: 0.5s;
}

.gallery-img:nth-child(6) {
    animation-delay: 0.6s;
}

.gallery-img:nth-child(7) {
    animation-delay: 0.7s;
}

.gallery-img:nth-child(8) {
    animation-delay: 0.8s;
}

.gallery-img:nth-child(9) {
    animation-delay: 0.9s;
}

.gallery-img:nth-child(10) {
    animation-delay: 1.0s;
}

.gallery-img:nth-child(11) {
    animation-delay: 1.1s;
}

.gallery-img:nth-child(12) {
    animation-delay: 1.2s;
}

.gallery-img:nth-child(13) {
    animation-delay: 1.3s;
}

.gallery-img:nth-child(14) {
    animation-delay: 1.4s;
}

.gallery-img:nth-child(15) {
    animation-delay: 1.5s;
}

.gallery-img:nth-child(16) {
    animation-delay: 1.6s;
}

.gallery-img:nth-child(17) {
    animation-delay: 1.7s;
}

.gallery-img:nth-child(18) {
    animation-delay: 1.8s;
}

.gallery-img:nth-child(19) {
    animation-delay: 1.9s;
}

.gallery-img:nth-child(20) {
    animation-delay: 2.0s;
}

.gallery-img:nth-child(21) {
    animation-delay: 2.1s;
}

.gallery-img:nth-child(22) {
    animation-delay: 2.2s;
}

.gallery-img:nth-child(23) {
    animation-delay: 2.3s;
}

.gallery-img:nth-child(24) {
    animation-delay: 2.4s;
}

.gallery-img:nth-child(25) {
    animation-delay: 2.5s;
}

.gallery-img:nth-child(26) {
    animation-delay: 2.6s;
}

.gallery-img:nth-child(27) {
    animation-delay: 2.7s;
}

.gallery-img:nth-child(28) {
    animation-delay: 2.8s;
}

.gallery-img:nth-child(29) {
    animation-delay: 2.9s;
}

.gallery-img:nth-child(30) {
    animation-delay: 3.0s;
}

.gallery-img:nth-child(31) {
    animation-delay: 3.1s;
}

.gallery-img:nth-child(32) {
    animation-delay: 3.2s;
}

.gallery-img:nth-child(33) {
    animation-delay: 3.3s;
}

.gallery-img:nth-child(34) {
    animation-delay: 3.4s;
}

.gallery-img:nth-child(35) {
    animation-delay: 3.5s;
}

@media (max-width: 767px) {
    .event-gallery {
        padding: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-img {
        height: 200px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #020024 0%, #090945 50%, #150030 100%);
    background-attachment: fixed;
    color: var(--fg);
}

.nav-item a {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.sec-padding {
    padding-bottom: 80px;
}

.fixed-top {
    background: rgba(3, 0, 20, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-item a {
    color: #ffffff !important;
}

.nav-item {
    padding: 0px 5px;
}

.nav-btn {
    padding: 10px 28px !important;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);

    /* Brand slider styles */
    color: #ffffff !important;
    border: none;
    border-radius: 33px;
    transition: all .3s;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

/* Navbar Brand Logo */
.navbar-brand {
    padding: 0;
    margin: 0;
    height: auto;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-text-container {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-text-container {
    transform: scale(1.02);
}

.brand-text-celeb {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    background: linear-gradient(90deg, #6c28d9, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.brand-text-tree {
    font-family: 'Great Vibes', cursive;
    font-size: 44px;
    font-weight: 400;
    background: linear-gradient(90deg, #8b5cf6, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: -2px;
}

.navbar-brand img {
    height: 58px;
    max-height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.28s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 16px rgba(139, 92, 246, 0.5));
}

/* Navbar / Header visual updates */
.nav-scroll {
    background: rgba(11, 11, 13, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.06);
}

.navbar {
    padding: 12px 0;
}

.navbar .nav-link {
    color: var(--fg);
    margin-right: 8px;
    font-weight: 600;
}

.navbar .nav-link:hover {
    color: var(--accent);
}

.navbar .nav-item.active .nav-link {
    color: var(--accent);
}

.navbar-toggler {
    border: none;
    background: transparent;
    padding: 10px;
    outline: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.08);
}

.navbar-toggler[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.08);
}

.hamburger-menu {
    width: 22px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, background-color 0.3s ease;
}

.navbar-toggler:hover .hamburger-menu span:nth-child(2) {
    width: 80%;
    align-self: flex-end;
}

.navbar-toggler[aria-expanded="true"] .hamburger-menu span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--accent);
}

.navbar-toggler[aria-expanded="true"] .hamburger-menu span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-menu span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--accent);
}

/* Full site logo rules: makes the full (wordmark + icon) logo visible and responsive */
.site-logo {
    max-height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-container .site-logo {
    max-height: 160px;
}

/* --- Masonry Gallery (About Section) --- */
.about-bento-gallery {
    column-count: 4;
    column-gap: 15px;
    width: 100%;
}

.bento-cell {
    position: relative;
    break-inside: avoid;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--surface);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Fixed aspect ratios for stability */
.bento-large-landscape { aspect-ratio: 16 / 9; }
.bento-small-square { aspect-ratio: 1 / 1; }
.bento-tall-portrait { aspect-ratio: 3 / 4; }

.bento-cell .bento-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    object-fit: contain;
    transition: opacity 0.8s ease-in-out;
}

.bento-cell .bento-img.active {
    opacity: 1;
    z-index: 2;
}

/* Inactive images are hidden and stacked behind */
.bento-cell .bento-img:not(.active) {
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 991px) {
    .about-bento-gallery {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .about-bento-gallery {
        column-count: 2;
        margin-top: 30px;
    }
}

.about-image {
    max-height: 350px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.footer-section .site-logo {
    max-width: 160px;
    max-height: 120px;
}

@media (max-width: 767px) {
    .site-logo {
        max-height: 56px;
    }

    .logo-container .site-logo {
        max-height: 120px;
    }

    .footer-section .site-logo {
        max-width: 120px;
    }
}



.get-btn {
    padding: 12px 35px;
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 33px;
    box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.5);
    transition: all 0.3s ease;
}

.get-btn:hover {
    background-color: var(--accent-dark);
    box-shadow: 0 6px 25px rgba(var(--accent-rgb), 0.8);
    transform: translateY(-2px);
}

/* Cards section */
.cards-section {
    margin-top: 40px;
    background-color: transparent;
}

.cards-inner {
    padding: 50px 0px;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    transition: all .4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.cards-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    border-radius: 10px;
}

.cards-inner:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.1) 100%);
    box-shadow: 0px 20px 40px rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
    border: 1px solid rgba(139, 92, 246, 0.6);
}

.cards-inner h5 {
    font-weight: 500;
    font-size: 48px;
    line-height: 60px;
    color: var(--accent);
    margin-top: 0;
    margin-bottom: 10px;
}

.cards-inner p {
    font-size: 16px;
    line-height: 24px;
    color: #7f8c8d;
    margin-bottom: 0;
}

/* course-section */
.title-text {
    position: relative;
    font-size: 36px;
    line-height: 54px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #d946ef 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shineGradient 4s linear infinite;
}

@keyframes shineGradient {
    to {
        background-position: 200% center;
    }
}

.title-text::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30' preserveAspectRatio='none'%3E%3Cpath d='M2,8 C30,0 70,12 98,6' stroke='%238b5cf6' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3Cpath d='M6,22 C35,16 65,26 95,18' stroke='%238b5cf6' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    filter: drop-shadow(0 2px 6px rgba(139, 92, 246, 0.6));
    clip-path: inset(0 100% 0 0);
}

/* Animate the underline drawing in when the body loads */
body.loaded .title-text::after {
    animation: drawUnderline 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
}

@keyframes drawUnderline {
    to { clip-path: inset(0 0 0 0); }
}

.page-header {
    padding: 100px 0;
    /* removed background image per request; keep dark gradient */
    background: linear-gradient(180deg, rgba(11, 11, 13, 0.55), rgba(17, 18, 23, 0.55));
    color: var(--fg);
}

/* Stronger header look with subtle gold accent underline */
.page-header .page-header-content h1 {
    position: relative;
}

.page-header .page-header-content h1::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

.page-header .page-header-content {
    text-align: center;
}

@media (max-width: 991px) {
    .page-header {
        padding: 64px 0;
        background-attachment: scroll;
    }
}

/* Contact page main background (applies to contact page main section as well) */
.contact-main-section {
    /* keep contact-main transparent when using full-page body background */
    background: transparent;
    min-height: 100vh;
    padding: 20vh 0 8vh;
}

@media (max-width: 991px) {
    .contact-main-section {
        background-attachment: scroll;
        padding: 48px 0;
        min-height: auto;
    }
}

/* Full-page background for contact page */
body.contact-page {
    background: var(--surface);
    color: var(--fg);
}

@media (max-width: 991px) {
    body.contact-page {
        background-attachment: scroll;
    }
}


/* Video play section: force section heading to pure white */
.video-play-section .title-text,
.video-highlights-premium .title-text {
    color: #ffffff !important;
}

/* Marquee behavior overrides: position slides absolute and animate across viewport */
.brand-carousel-viewport {
    position: relative;
    overflow: hidden;
    height: 130px;
    background: rgba(var(--accent-rgb), 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.brand-carousel-track {
    display: flex;
    gap: 80px;
    align-items: center;
    height: 100%;
    will-change: transform;
    padding: 20px 0;
}

.brand-slide {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    min-width: 180px;
    max-width: 280px;
    padding: 12px 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    flex-shrink: 0;
}

.brand-slide:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brand-slide img {
    max-height: 100px;
    width: auto;
    display: block;
    margin: 0;
    object-fit: contain;
}

@media (max-width: 991px) {
    .brand-carousel-viewport {
        height: 110px;
        padding: 0 20px;
    }

    .brand-carousel-track {
        gap: 60px;
    }

    .brand-slide {
        min-width: 150px;
        max-width: 230px;
        padding: 10px 30px;
        flex-shrink: 0;
    }

    .brand-slide img {
        max-height: 80px;
    }
}

@media (max-width: 767px) {
    .brand-carousel-viewport {
        height: 90px;
        padding: 0 15px;
    }

    .brand-carousel-track {
        gap: 40px;
        padding: 15px 0;
    }

    .brand-slide {
        min-width: 120px;
        max-width: 180px;
        padding: 8px 20px;
        flex-shrink: 0;
    }

    .brand-slide img {
        max-height: 60px;
    }
}

/* Brand Slider Section */
.brand-slider-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    margin: 60px auto;
    max-width: 95%; /* keep it contained so the box shape is visible */
}

@media (max-width: 991px) {
    .brand-slider-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .brand-slider-section {
        padding: 40px 0;
    }
}

/* Double-row marquee sliders */
.double-brand-slider {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.marquee {
    overflow: hidden;
    width: 100%;
}

.marquee__inner {
    display: flex;
    width: max-content;
    gap: 64px;
    /* larger gap to ensure logos don't touch */
    align-items: center;
    /* each inner contains duplicated slides for seamless loop */
    animation: marquee-scroll 60s linear infinite;
    will-change: transform;
    white-space: nowrap;
}

.marquee--top .marquee__inner {
    /* reverse direction visually by reversing animation */
    animation-direction: reverse;
    animation-duration: 60s;
}

.marquee--bottom .marquee__inner {
    animation-direction: normal;
    animation-duration: 70s;
    /* start halfway through the loop so the second row appears offset (mid-logos) */
    animation-delay: -35s;
}

.marquee__inner .brand-slide {
    flex: 0 0 180px;
    /* fixed slide width so each logo occupies same space */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 6px 8px;
}

.marquee:hover .marquee__inner {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 32px));
    }
}

/* Hello Enjoy The Work Section */
.hello-section {
    padding: 80px 0;
    background: url('images/hello-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 40px 0;
}

.hello-glassy-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(218, 112, 214, 0.25) 0%, rgba(138, 43, 226, 0.05) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1.5px solid rgba(255, 180, 255, 0.4);
    border-radius: 120px;
    padding: 0 80px 0 0;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(218, 112, 214, 0.2);
    max-width: 850px;
    width: 100%;
    height: 280px;
    position: relative;
}

.hello-avatar {
    height: 100%;
    width: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hello-avatar img {
    height: 265px;
    width: auto;
    object-fit: contain;
    border-bottom-left-radius: 100px;
    margin-bottom: 2px;
    margin-left: 30px;
}

.hello-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    flex: 1;
    height: 100%;
    padding-left: 20px;
}

.hello-h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(90deg, #ffffff 0%, #ff3399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0;
    line-height: 1;
    letter-spacing: 1px;
}

.hello-h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #ff3399;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 2px;
}

.hello-h4 {
    font-family: 'Great Vibes', cursive;
    font-size: 100px;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    position: absolute;
    bottom: 10px;
    left: 40px;
    text-shadow: 0px 4px 12px rgba(0,0,0,0.4);
    transform: rotate(-6deg);
}

@media (max-width: 767px) {
    .hello-glassy-box {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }
    .hello-avatar {
        margin-right: 0;
        margin-bottom: 20px;
        align-self: center;
    }
    .hello-avatar img {
        height: 180px;
        border-radius: 20px;
    }
    .hello-h2 { font-size: 48px; }
    .hello-h3 { font-size: 24px; }
    .hello-h4 { font-size: 56px; left: 0; bottom: -10px; }
}

/* Smooth & fast star burst hover animation */
@keyframes starBurst {
    0% {
        transform: translate(var(--tx, 0), var(--ty, 0)) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(calc(var(--tx, 0) * 1.8), calc(var(--ty, 0) * 1.8)) scale(0);
        opacity: 0;
    }
}

/* Apply star effect to all button types on hover */
.nav-btn,
.get-btn,
.see-more-btn,
.buy-btn,
.nav-link,
button,
a.btn,
.carousel-control-prev,
.carousel-control-next {
    position: relative;
    overflow: visible;
}

.nav-btn::before,
.get-btn::before,
.see-more-btn::before,
.buy-btn::before,
.nav-link::before,
button::before,
a.btn::before,
.carousel-control-prev::before,
.carousel-control-next::before {
    content: '✨';
    position: absolute;
    pointer-events: none;
    font-size: 1em;
    opacity: 0;
    top: 50%;
    left: 50%;
    margin-top: -0.5em;
    margin-left: -0.5em;
}

.nav-btn:hover::before,
.get-btn:hover::before,
.see-more-btn:hover::before,
.buy-btn:hover::before,
.nav-link:hover::before,
button:hover::before,
a.btn:hover::before,
.carousel-control-prev:hover::before,
.carousel-control-next:hover::before {
    animation: starBurst 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    --tx: -15px;
    --ty: -15px;
    opacity: 1;
}

.nav-btn:hover::after,
.get-btn:hover::after,
.see-more-btn:hover::after,
.buy-btn:hover::after,
.nav-link:hover::after,
button:hover::after,
a.btn:hover::after,
.carousel-control-prev:hover::after,
.carousel-control-next:hover::after {
    content: '✨';
    position: absolute;
    pointer-events: none;
    font-size: 1em;
    animation: starBurst 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    --tx: 15px;
    --ty: -15px;
    opacity: 1;
    top: 50%;
    right: 50%;
    margin-top: -0.5em;
    margin-right: -0.5em;
}

/* Animations for Artists and Testimonials sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to artist cards */
.artists-showcase .artist-card {
    animation: bounceIn 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) backwards;
    transition: all 0.3s ease;
}

.artists-showcase .artist-card:nth-child(1) {
    animation-delay: 0.1s;
}

.artists-showcase .artist-card:nth-child(2) {
    animation-delay: 0.2s;
}

.artists-showcase .artist-card:nth-child(3) {
    animation-delay: 0.3s;
}

.artists-showcase .artist-card:nth-child(4) {
    animation-delay: 0.4s;
}

.artists-showcase .artist-card:nth-child(5) {
    animation-delay: 0.5s;
}

.artists-showcase .artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Apply animation to testimonial section */
.testimonial-section {
    animation: fadeInUp 0.8s ease-out;
}

.carousel-item .testimonial-inner {
    animation: slideInRight 0.7s ease-out;
}

/* Tweak spacing on smaller viewports */
@media (max-width: 991px) {
    .marquee__inner {
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .marquee__inner {
        gap: 28px;
    }

    .marquee__inner .brand-slide {
        flex: 0 0 120px;
    }
}

/* Ensure images fit inside the fixed slide without overflow */
.brand-slide img {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Artists showcase styles */
.artists-showcase {
    position: relative;
    height: 300vh;
    background: transparent;
}

.artists-showcase .container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artists-showcase .artist-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    padding: 20px 0;
}

.artists-showcase .artist-marquee__inner {
    display: flex;
    width: max-content;
    gap: 40px;
}

.artists-showcase .artist-card {
    flex: 0 0 clamp(300px, 35vw, 450px);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(126, 58, 237, 0.12) 100%);
    border: 1.5px solid rgba(168, 85, 247, 0.3);
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(.22, .9, .36, 1), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    will-change: transform;
    transform-origin: center center;
}

.artists-showcase .artist-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
    border-radius: 16px;
}

/* Floating entrance animation */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }

    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.artists-showcase .artist-card {
    animation: floatIn 0.9s cubic-bezier(.2, .9, .3, 1) both;
}

/* 3D tilt on hover + subtle lift */
.artists-showcase .artist-card:hover {
    transform: translateY(-10px) rotateX(6deg) rotateY(3deg) translateZ(0);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

/* Sheen sweep effect */
.artists-showcase .artist-card::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -30%;
    width: 30%;
    height: 220%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(18deg) translateX(-40px);
    opacity: 0;
    pointer-events: none;
}

.artists-showcase .artist-card:hover::before {
    transition: transform 0.9s ease, opacity 0.6s ease;
    transform: rotate(18deg) translateX(220px);
    opacity: 1;
}

.artists-showcase .artist-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 20px;
    max-height: clamp(200px, 45vh, 450px);
}

.artists-showcase .artist-name {
    font-size: 1.5rem;
    margin: 0 0 6px 0;
    color: var(--fg);
}

.artists-showcase .artist-role {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.see-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.see-more-btn:hover {
    opacity: 0.95;
    transform: translateY(-2px);
}

.see-more-btn:visited {
    color: #fff;
}

.see-more-btn:active {
    color: #fff;
}

.see-more-btn:focus {
    color: #fff;
    outline: none;
}

.card {
    border: none;
    background: var(--surface);
    box-shadow: 0px 10px 40px rgba(var(--accent-rgb), 0.10);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
    border-radius: 18px;
}

.card-img-top {
    padding: 20px;
    padding-bottom: 0;
}

.card-body h5 {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.card-body p {
    font-size: 16px;
    line-height: 24px;
    color: #7f8c8d;
    margin-bottom: 19px;
}

.buy-btn {
    padding: 8px 27px;
    background-color: var(--accent);
    color: #111;
    border: none;
    border-radius: 33px;
    transition: all .3s;
}

.buy-btn:hover {
    background-color: var(--accent-dark);
}

.card-footer {
    background: var(--surface);
    border-top: 0px;
    border-radius: 18px !important;
}

.date img {
    width: 24px;
    height: 24px;
}

.date h6 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #7f8c8d;
    margin-left: 3px;
}

/* video area */
.video-section {
    background:
        linear-gradient(180deg, rgba(11, 11, 13, 0.9) 0%, rgba(17, 18, 23, 0.5) 50%, rgba(11, 11, 13, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0px;
    margin-bottom: 50px;
}

.about-section {
    background:
        linear-gradient(180deg, rgba(11, 11, 13, 0.9) 0%, rgba(17, 18, 23, 0.5) 50%, rgba(11, 11, 13, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0px;
    margin-bottom: 50px;
}

.video-details h2 {
    font-size: 36px;
    line-height: 54px;
    color: #1a1a2e;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    transition: transform .3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.video-image img {
    border-radius: 20px;
}

.video-image {
    position: relative;
}

.video-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    cursor: pointer;
}

/* testimonial section */
.testimonial-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 18px;
    position: relative;
    overflow: hidden;
}

.testimonial-inner::after {
    display: none;
}

.testimonial-avatar {
    display: none;
}

.testimonial-avatar img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    display: block;
}

.testimonial-content {
    flex: 1 1 auto;
    text-align: left;
}

.testimonial-content .quote {
    font-style: italic;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonial-content h5 {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--accent);
    margin: 8px 0 0 0;
    letter-spacing: 0.04em;
}

.testimonial-content .client-title {
    font-size: 0.9rem;
    color: var(--accent);
    margin: 0;
}

/* Compact Testimonial Carousel */
.testimonial-section {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.65) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 40px 0 30px 0;
}

.carousel-inner {
    padding: 30px 22px;
    background: transparent;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: none;
    border: none;
}

.carousel-item {
    transition: transform 0.6s cubic-bezier(.2, .8, .2, 1), opacity 0.6s ease-in-out;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    position: relative;
}

.carousel-item.active {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item,
.carousel-inner {
    height: auto !important;
}

.carousel-indicators {
    bottom: -20px;
}

.carousel-indicators li {
    background-color: var(--accent);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 4px;
}

/* Carousel styling */
.carousel-inner {
    padding: 40px 20px;
    background: transparent;
    box-shadow: none;
}

.carousel-item {
    transition: opacity 0.6s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    background: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--accent-dark);
    transform: scale(1.1);
}

/* subscribe area */
.subscribe-inner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 50px 0px;
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.subscribe-inner h2 {
    font-size: 36px;
    line-height: 54px;
    color: #111;
    margin-bottom: 30px;
    font-weight: 600;
}

.subscribe-inner a {
    text-decoration: none;
    color: #ffffff;
}

/* Footer section */
.footer-section {
    background: transparent;
    border-top: none;
    padding: 80px 0 80px;
    margin-top: 100px;
    color: #d0d0d0;
    overflow: visible;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.15);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #a0a0a0;
    margin: 0;
}

/* Navigation Links */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list li {
    margin: 0;
}

.footer-nav-list li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-nav-list li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 36px;
    padding-bottom: 36px;
    visibility: visible;
    overflow: visible;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    letter-spacing: 0.5px;
}

.divider {
    margin: 0 8px;
    color: #666;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .footer-heading {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-nav-list li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 50px 0 30px;
        margin-top: 50px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-heading {
        font-size: 0.8rem;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .footer-nav-list {
        align-items: center;
    }

    .footer-nav-list li a {
        font-size: 0.85rem;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }
}

/* Mobile footer: ensure visibility on very small screens */
@media (max-width: 600px) {
    .footer-section {
        padding: 50px 15px 50px 15px;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 20px;
        visibility: visible;
        overflow: visible;
    }

    .footer-copyright {
        font-size: 0.85rem;
        color: #aaa;
        line-height: 1.6;
        word-break: break-word;
        display: block;
        padding: 0 10px;
        margin: 0;
        visibility: visible;
    }
}

/* Footer link color and hover fixes */
.footer-content a,
.footer-content a:visited {
    color: #a0a0a0;
}

.footer-content a:hover {
    color: var(--accent);
    text-decoration: none;
}

/* Make footer transparent on Contact page so page background shows through */
body.contact-page .footer-section {
    background: transparent;
    border-top: none;
    margin-top: 0;
    color: var(--fg);
    padding: 80px 0 80px;
    overflow: visible;
}

body.contact-page .footer-wrapper {
    border-bottom: none;
}

body.contact-page .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    visibility: visible;
}

body.contact-page .footer-heading,
body.contact-page .footer-description,
body.contact-page .footer-nav-list li a,
body.contact-page .footer-copyright {
    color: var(--fg);
    visibility: visible;
}

body.contact-page .social-icon {
    background: rgba(var(--accent-rgb), 0.08);
    border-color: rgba(var(--accent-rgb), 0.14);
    color: var(--accent);
}

/* Statistics/Key Metrics Section */
.stats-section {
    background: var(--surface);
    padding: 48px 0 32px 0;
    margin-bottom: 32px;
    border-radius: 18px;
}

.stat-box {
    margin-bottom: 18px;
}

/* Ensure Who We Are title is white */
.video-details h2 {
    color: #ffffff;
}

/* Video Carousel Styles */
.video-play-section {
    position: relative;
}

.video-play-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-carousel-section {
    padding: 0;
    width: 100%;
}

.video-carousel-viewport {
    overflow: hidden;
    position: relative;
    perspective: 1200px;
    padding: 30px 0;
}

.video-carousel-track {
    display: flex;
    gap: 18px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.video-slide {
    min-width: 320px;
    width: 320px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-wrap {
    width: 100%;
    /* Use portrait ratio for Shorts (9:16) */
    aspect-ratio: 9/16;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    display: block;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-wrap video {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    display: block;
}

.video-caption {
    margin-top: 10px;
    color: #f1f1f1;
    font-weight: 600;
    text-align: center;
}

.video-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.video-prev,
.video-next {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .video-slide {
        width: 240px;
        min-width: 200px
    }
}

@media (max-width: 767px) {

    /* On mobile show large vertical video */
    .video-slide {
        width: 72vw;
        min-width: 200px
    }

    .video-carousel-section {
        padding: 18px 0
    }
}

/* Professional video player polish */
.video-wrap {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.video-wrap::after {
    /* subtle centered play icon for idle state (non-destructive) */
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    display: grid;
    place-items: center;
    pointer-events: none;
}

.video-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-44%, -50%);
    width: 0;
    height: 0;
    border-left: 18px solid rgba(255, 255, 255, 0.95);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    pointer-events: none;
}

.video-slide {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-slide:not(.active) .video-wrap::after,
.video-slide:not(.active) .video-wrap::before {
    opacity: 1;
    /* show play hint on inactive slides */
}

.video-slide.active .video-wrap::after,
.video-slide.active .video-wrap::before {
    opacity: 0;
    /* hide overlay when active (playing) */
    transition: opacity 0.25s ease;
}

.video-slide.active .video-wrap {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

/* caption overlay for active slide */
.video-slide .video-caption {
    position: static;
    margin-top: 12px;
    background: transparent;
    padding: 0;
    border-radius: 6px;
}

.video-slide.active .video-caption {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45));
    padding: 8px 14px;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    max-width: calc(100% - 28px);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* small control pill (mute) placeholder - styled so JS can insert button matching appearance */
.video-mute-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 6;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    backdrop-filter: blur(4px);
}

@media (max-width: 767px) {
    .video-wrap::after {
        width: 56px;
        height: 56px;
    }

    .video-wrap::before {
        border-left-width: 14px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }

    .video-slide.active .video-wrap {
        transform: translateY(-4px) scale(1.01);
    }
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.stat-label {
    font-size: 1.1rem;
    color: #f1f1f1;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .stats-section {
        padding: 32px 0 18px 0;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.98rem;
    }
}

/* Responsive Css */
@media only screen and (max-width: 1024px) {
    .header-section {
        padding-top: 80px;
    }
}

/* Desktop: header image responsive styling */
.header-image {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.header-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.header-image img:hover {
    transform: scale(1.02);
}

@media only screen and (max-width: 991px) {
    .header-section {
        height: 100%;
        padding-bottom: 50px;
        padding-top: 0;
    }

    .header-details {
        padding-top: 40px;
        text-align: center;
    }

    .header-image {
        text-align: center;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-image img {
        width: 90%;
        max-width: 420px;
        height: auto;
        object-fit: contain;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    }

    .cards-inner {
        margin-bottom: 20px;
    }

    .video-details {
        margin-bottom: 50px;
    }

    .testimonial-inner {
        text-align: center;
    }

    .testimonial-inner p {
        margin-left: 0;
    }

    .nav-btn {
        display: inline-block;
        width: auto;
        margin: 0;
        padding: 10px 28px !important;
        font-size: 1.1rem;
        background: linear-gradient(90deg, var(--accent) 60%, var(--accent-dark) 100%);
        color: #111 !important;
        border-radius: 33px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.10);
        vertical-align: middle;
    }

    .navbar-collapse {
        background: rgba(11, 11, 13, 0.42);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 0 0 14px 14px;
        box-shadow: 0 8px 32px rgba(11, 11, 13, 0.28);
        margin-top: 8px;
        padding: 12px 0 18px 0;
        animation: navbarSlideDown 0.35s cubic-bezier(.77, 0, .18, 1);
        border: 1px solid rgba(var(--accent-rgb), 0.06);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-left: 0;
    }

    .navbar-collapse .nav-link {
        color: var(--fg);
        padding: 10px 18px;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .navbar-collapse .nav-link:hover {
        color: var(--accent);
        background: rgba(255, 255, 255, 0.02);
    }

    .nav-item {
        width: 100%;
        margin: 0;
        padding: 0 0 8px 0;
    }

    .nav-link {
        width: 100%;
        padding: 12px 24px;
        color: #fff !important;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: background 0.2s;
    }

    .nav-link:hover,
    .nav-link:focus {
        background: #282531;
        color: var(--accent) !important;
    }
}

@media only screen and (max-width: 767px) {
    .card-deck {
        display: block !important;
    }

    .card {
        margin-bottom: 30px !important;
    }

    .header-section {
        height: auto;
        min-height: 100vh;
        padding-top: 130px;
        padding-bottom: 40px;
    }

    .header-details {
        text-align: center;
        padding-top: 30px;
        order: 2;
    }

    .header-image {
        text-align: center;
        margin-bottom: 20px;
        order: 1;
    }

    .header-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: contain;
        display: block;
        margin: 0 auto 18px;
    }

    .header-details h1 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .header-details p {
        font-size: 14px;
        line-height: 24px;
    }

    .header-image {
        text-align: center;
        margin-bottom: 20px;
    }

    /* Removed duplicate .header-image img max-width rule */

    .footer-list-item ul li {
        font-size: 14px;
        line-height: 26px;
    }

    .video-details {
        text-align: center;
    }

    .video-details h2 {
        font-size: 24px;
        line-height: 36px;
    }

    .logo-container {
        min-height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .header-image {
        text-align: center;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 360px;
        object-fit: contain;
        display: block;
        margin: 0 auto 18px;
    }
}

@media (max-width: 480px) {
    .header-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }
}

/* Page Header */
.page-header {
    height: auto;
    /* background intentionally omitted so page-specific background (e.g. contact) can apply */
    color: #f1f1f1;
    padding-top: 80px;
    padding-bottom: 40px;
}

.page-header-content h1 {
    font-size: 48px;
    line-height: 70px;
    font-weight: bold;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
    color: #f1f1f1;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header-content p {
    font-size: 18px;
    line-height: 28px;
    opacity: 0.95;
    color: #7f8c8d;
}

/* Artists Section */
.artists-section {
    background: transparent;
    padding-top: 60px;
    padding-bottom: 80px;
}

.artist-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(126, 58, 237, 0.05) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.4s ease;
    margin-top: 16px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.artist-card:hover {
    transform: translateY(-10px) rotateX(6deg) rotateY(3deg) translateZ(0);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 20px rgba(168, 85, 247, 0.2);
}

.artist-card::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -30%;
    width: 30%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(18deg) translateX(-150px);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.artist-card:hover::before {
    transition: transform 0.9s ease, opacity 0.6s ease;
    transform: rotate(18deg) translateX(300px);
    opacity: 1;
}

.artist-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
    border-radius: 16px;
}

.artist-image {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.artist-image img {
    width: 100%;
    height: 180px;
    max-width: none;
    max-height: none;
    object-fit: contain;
    transition: transform .3s;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.artist-info h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #f1f1f1;
    margin-bottom: 5px;
}

.artist-info p {
    font-size: 14px;
    line-height: 22px;
    color: #7f8c8d;
    margin-bottom: 0;
}

/* Layout: show 5 artist cards per row on wide screens */
@media (min-width: 992px) {
    .artists-section .row {
        display: flex;
        flex-wrap: wrap;
        margin-left: -18px;
        margin-right: -18px;
        gap: 12px;
    }

    .artists-section .row>div {
        flex: 0 0 calc(20% - 12px);
        max-width: calc(20% - 12px);
        padding-left: 18px;
        padding-right: 18px;
    }

    .artists-section .artist-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin-bottom: 40px;
    }
}

/* Mobile: show 2 artist cards per row on small screens */
@media (max-width: 767px) {
    .artists-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: -16px;
        margin-right: -16px;
        gap: 12px;
    }

    .artists-section .row>div {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
    }

    .artists-section .artist-card {
        width: 100%;
        max-width: 320px;
        margin-bottom: 40px;
    }

    .artists-section .artist-image img {
        height: 160px;
    }
}

/* Films Section */
.films-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

.film-card {
    margin-bottom: 30px;
    transition: all .4s;
}

.film-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}

.film-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .3s;
}

.film-card:hover .film-image img {
    transform: scale(1.05);
}

.film-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.film-card:hover .film-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.play-button:hover {
    background: linear-gradient(135deg, #a97f2d 0%, #8b6320 100%);
    transform: scale(1.1);
}

.play-button img {
    width: 30px;
    height: 30px;
}

.film-info h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #f1f1f1;
    margin-bottom: 5px;
}

.film-info p {
    font-size: 14px;
    line-height: 22px;
    color: #7f8c8d;
    margin-bottom: 0;
}

/* Modern Contact Section - Side-by-side Form + Info */
.contact-main-section {
    padding: 150px 0 110px;
    background: radial-gradient(circle at 50% 10%, rgba(139, 92, 246, 0.12), transparent 50%), var(--bg);
    min-height: calc(100vh - 150px);
}

.contact-heading-wrap {
    max-width: 780px;
    margin: 0 auto 55px;
}

.contact-heading-wrap .services-subtitle {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 12px;
}

.contact-heading-wrap .title-text {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: #ffffff;
}

.contact-header-desc {
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin: 0 auto;
    max-width: 620px;
}

.contact-form-wrapper {
    background: rgba(14, 14, 28, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: clamp(36px, 4.5vw, 52px);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 45px rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-title {
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
}

.contact-form {
    flex: 1;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form .form-row {
    margin-left: -10px;
    margin-right: -10px;
}

.contact-form .form-row .form-group {
    padding-left: 10px;
    padding-right: 10px;
}

.contact-form label {
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-form .form-control {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.98rem;
    color: #ffffff;
    min-height: 52px;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contact-form .form-control:focus {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 145px;
}

.contact-form .get-btn {
    width: 100%;
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 16px 32px;
    border-radius: 12px;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form .get-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(139, 92, 246, 0.5);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    background: rgba(14, 14, 28, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: clamp(36px, 4.5vw, 52px);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 45px rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-title {
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-info-subtitle {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    background: rgba(var(--accent-rgb), 0.15);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail:hover .contact-detail-icon {
    background: rgba(var(--accent-rgb), 0.28);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.25);
}

.contact-detail-content h5 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    margin-top: 0;
}

.contact-detail-content p {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    line-height: 1.65;
}

.contact-detail-content a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-detail-content a:hover {
    color: #d8b4fe;
    text-decoration: underline;
}

/* Responsive Contact */
@media (max-width: 991px) {
    .contact-main-section {
        padding: 120px 0 80px;
    }

    .contact-heading-wrap {
        margin-bottom: 40px;
    }

    .contact-form-wrapper {
        margin-bottom: 32px;
    }
}

@media (max-width: 767px) {
    .contact-main-section {
        padding: 105px 0 65px;
    }

    .contact-heading-wrap {
        margin-bottom: 32px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .contact-detail {
        margin-bottom: 22px;
        gap: 16px;
    }

    .contact-detail-icon {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
}

/* Events List Section */
.events-list-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Events page (scoped) - styles apply only to `body.events-page` so footer is excluded */
body.events-page .footer-section {
    padding: 70px 0 60px;
    overflow: visible;
}

body.events-page .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    visibility: visible;
}

body.events-page .footer-copyright {
    visibility: visible;
}

body.events-page .page-header {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(7, 9, 12, 0.85), rgba(17, 18, 23, 0.9));
    color: var(--fg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

body.events-page .events-list-section {
    padding-top: 48px;
    padding-bottom: 72px;
}

body.events-page .event-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}

/* Each event becomes a card inside the grid */
body.events-page .event-row {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    align-items: center;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

body.events-page .event-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

body.events-page .event-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

body.events-page .event-img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

body.events-page .event-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--fg);
}

body.events-page .event-desc {
    color: var(--muted);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    body.events-page .event-row {
        grid-template-columns: 1fr;
    }

    body.events-page .event-img-col {
        padding: 12px 0 0 0;
    }
}

@media (max-width: 767px) {
    body.events-page .page-header {
        padding: 56px 0;
    }

    body.events-page .event-row {
        border-radius: 12px;
    }
}

.events-list-section .card-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: start;
}

/* Responsive event row layout for events.html */
.event-list {
    width: 100%;
}

.event-row {
    background: var(--surface);
    border-radius: 14px;
    box-shadow: 0 6px 30px rgba(var(--accent-rgb), 0.06);
    margin-bottom: 28px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.event-img-col {
    padding: 0;
    min-height: 220px;
}

.event-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.event-details-col {
    padding: 28px 24px 24px 24px;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 8px;
}

.event-title small {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 4px;
}

.event-desc {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.event-cta {
    margin-top: 14px;
}

.event-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(var(--accent-rgb), 0.10);
}

@media (max-width: 991px) {
    .event-details-col {
        padding: 18px 12px 16px 12px;
    }

    .event-title {
        font-size: 1.18rem;
    }

    .event-img {
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .event-row {
        flex-direction: column !important;
    }

    .event-img-col,
    .event-details-col {
        width: 100%;
        max-width: 100%;
    }

    .event-img {
        max-width: 98vw;
        margin-bottom: 12px;
    }

    .event-details-col {
        padding: 14px 8vw 12px 8vw;
    }
}

/* Responsive film row layout for films.html */
.film-list {
    width: 100%;
}

.film-row {
    background: #232336;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(231, 76, 60, 0.07);
    margin-bottom: 32px;
    overflow: hidden;
}

.film-img-col {
    padding: 0;
    min-height: 220px;
}

.film-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.13);
}

.film-details-col {
    padding: 32px 24px 24px 24px;
}

.film-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
}

.film-desc {
    font-size: 1.08rem;
    color: var(--fg);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .film-details-col {
        padding: 18px 12px 16px 12px;
    }

    .film-title {
        font-size: 1.18rem;
    }

    .film-img {
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .film-row {
        flex-direction: column !important;
    }

    .film-img-col,
    .film-details-col {
        width: 100%;
        max-width: 100%;
    }

    .film-img {
        max-width: 98vw;
        margin-bottom: 12px;
    }

    .film-details-col {
        padding: 14px 8vw 12px 8vw;
    }
}

/* Events Section carousel styles */
.events-carousel-section {
    padding: 60px 0 40px 0;
    background: var(--bg);
}

.events-carousel-header {
    text-align: center;
    margin-bottom: 28px;
}

.events-carousel-header h2 {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 800;
    margin: 0 auto 6px auto;
}

.events-carousel-viewport {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.events-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(.2, .9, .2, 1);
    will-change: transform;
    gap: 28px;
}

.event-card {
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-width: 320px;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    padding: 18px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    position: relative;
    font-size: 1rem;
    text-align: left;
    border: 1px solid rgba(var(--accent-rgb), 0.06);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(var(--accent-rgb), 0.12);
    border-color: rgba(var(--accent-rgb), 0.14);
}

.event-thumb {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
    margin: 0 0 12px 0;
    display: block;
}

.event-info {
    flex: 1;
}

.event-info p {
    margin: 0;
    color: #f1f1f1;
    font-size: 1.08rem;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 767px) {
    .event-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 96vw;
        max-width: 99vw;
        padding: 24px 6vw 18px 6vw;
    }

    .event-thumb {
        margin: 24px auto 0 auto;
        width: 90px;
        height: 90px;
    }
}

.events-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.events-carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #e0e0e0;
    transition: background 0.2s;
    cursor: pointer;
}

.events-carousel-indicators button.active {
    background: #e74c3c;
}

.event-info h4 {
    margin-bottom: 18px;
}

.header-details h1.animated-header {
    opacity: 0;
    transform: translateY(40px);
}
body.loaded .header-details h1.animated-header {
    animation: heroTextUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.1s forwards;
}

.header-details p {
    opacity: 0;
    transform: translateY(40px);
}
body.loaded .header-details p {
    animation: heroTextUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.35s forwards;
}

.header-details .get-btn {
    opacity: 0;
    transform: scale(0.8);
}
body.loaded .header-details .get-btn {
    animation: heroBtnPop 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroBtnPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    80% {
        opacity: 1;
        transform: scale(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Events Hero Carousel Styles */
.events-hero-carousel-section {
    width: 100vw;
    background: #181824;
    padding: 0;
    margin: 48px 0 48px 0;
    overflow: hidden;
}

.events-hero-carousel-viewport {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.events-hero-carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
}

.events-hero-slide {
    min-width: 100vw;
    max-width: 100vw;
    min-height: 380px;
    height: 48vw;
    max-height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.events-hero-overlay {
    background: rgba(24, 24, 36, 0.72);
    border-radius: 22px;
    padding: 40px 32px 32px 32px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 4px 32px rgba(231, 76, 60, 0.13);
}

.events-hero-overlay h2 {
    color: #fff;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.events-hero-overlay p {
    color: #e0e0e0;
    font-size: 1.15rem;
    margin-bottom: 0;
}

.events-hero-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 2;
}

.events-hero-carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: #444;
    transition: background 0.2s;
    cursor: pointer;
}

.events-hero-carousel-indicators button.active {
    background: #e74c3c;
}

@media (max-width: 767px) {
    .events-hero-carousel-section {
        min-height: 220px;
        margin: 32px 0 32px 0;
    }

    .events-hero-carousel-viewport {
        min-height: 180px;
    }

    .events-hero-slide {
        min-height: 180px;
        height: 54vw;
        max-height: 260px;
    }

    .events-hero-overlay {
        padding: 18px 4vw 14px 4vw;
        max-width: 98vw;
    }

    .events-hero-overlay h2 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .events-hero-overlay p {
        font-size: 0.92rem;
    }

    .events-hero-img {
        width: 96vw;
        height: 38vw;
        min-height: 100px;
        max-height: 150px;
        margin-bottom: 12px;
    }

    /* Animated overall background (subtle, dark-themed gradient) */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background: linear-gradient(120deg, #0f1220 0%, #141426 25%, rgba(231, 76, 60, 0.06) 50%, #161623 75%, #0d0f18 100%);
        background-size: 400% 400%;
        filter: blur(40px) saturate(0.9);
        opacity: 0.95;
        animation: bgGradientShift 18s linear infinite;
    }

    @keyframes bgGradientShift {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* Soft animated floating shapes using pseudo-elements for depth */
    body::after {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background-image: radial-gradient(rgba(231, 76, 60, 0.06) 0.5px, transparent 0.5px), radial-gradient(rgba(231, 76, 60, 0.04) 0.5px, transparent 0.5px);
        background-size: 1400px 1400px, 900px 900px;
        background-position: 0% 0%, 50% 50%;
        opacity: 0.7;
        animation: bgDotsMove 32s linear infinite;
    }

    @keyframes bgDotsMove {
        from {
            background-position: 0% 0%, 50% 50%;
        }

        to {
            background-position: 100% 100%, 0% 0%;
        }
    }

    /* Respect reduced motion setting */
    @media (prefers-reduced-motion: reduce) {

        body::before,
        body::after {
            animation: none !important;
        }
    }
}

/* Films page scoped styles */
body.films-page .page-header {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(8, 9, 12, 0.88), rgba(18, 19, 24, 0.92));
    color: var(--fg);
}

body.films-page .footer-section {
    padding: 70px 0 60px;
    overflow: visible;
}

body.films-page .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    visibility: visible;
}

body.films-page .footer-copyright {
    visibility: visible;
}

body.films-page .film-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 22px;
}

body.films-page .film-row {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 18px;
    align-items: center;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02));
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

body.films-page .film-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

body.films-page .film-img-col {
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.films-page .film-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

body.films-page .film-title {
    font-size: 1.125rem;
    color: var(--fg);
    margin: 0 0 8px 0;
}

body.films-page .film-desc {
    color: var(--muted);
    margin: 0;
}

@media (max-width: 991px) {
    body.films-page .film-row {
        grid-template-columns: 1fr;
    }
}

/* --- Services Section (Next-Gen Cards Style) --- */
.services-section {
    position: relative;
    z-index: 5;
    padding-top: 60px;
    padding-bottom: 80px;
}

.services-header {
    margin-bottom: 50px;
}

.services-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.service-card {
    background: #ffffff;
    color: #0f172a;
    padding: 32px 24px 28px 24px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
    min-height: 250px;
    z-index: 1;
}

.service-card.card-left-curve {
    border-top-left-radius: 90px;
}

.service-card.card-right-curve {
    border-top-right-radius: 90px;
}

.service-card:hover {
    background: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.service-card-body {
    position: relative;
    z-index: 3;
}

.service-card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.25;
    color: #0f172a;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-title {
    color: #ffffff;
}

.service-card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #475569; /* slate 600 */
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-desc {
    color: rgba(255, 255, 255, 0.9);
}

.service-card-watermark {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03); /* very subtle dark text */
    pointer-events: none;
    user-select: none;
    z-index: 1;
    line-height: 1;
    letter-spacing: -2px;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-watermark {
    color: rgba(255, 255, 255, 0.08);
}

/* Responsiveness for services section */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .service-card.card-left-curve {
        border-top-left-radius: 60px;
    }
    .service-card.card-right-curve {
        border-top-right-radius: 60px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .services-title {
        font-size: 36px;
    }
    .service-card {
        min-height: auto;
        padding: 30px 20px 24px 20px;
    }
    .service-card.card-left-curve {
        border-top-left-radius: 40px;
    }
    .service-card.card-right-curve {
        border-top-right-radius: 40px;
    }
}

/* --- Cinematic Video Hero Section --- */
.page-hero {
    width: 100%;
    min-height: min(88vh, 900px);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    isolation: isolate;
    background: #030014;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3, 0, 20, 0.92) 0%, rgba(3, 0, 20, 0.70) 42%, rgba(3, 0, 20, 0.34) 100%),
        linear-gradient(180deg, rgba(3, 0, 20, 0.30) 0%, rgba(3, 0, 20, 0.08) 48%, rgba(3, 0, 20, 0.88) 100%);
}

.hero-video-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 45%, rgba(139, 92, 246, 0.22), transparent 38%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 105px;
    padding-bottom: 110px;
    max-width: 1180px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(196, 181, 253, 0.32);
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.12);
    color: #e9e3ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.hero-content h1 {
    max-width: 820px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -3px;
    text-transform: uppercase;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.hero-content h1 span {
    background: linear-gradient(90deg, #ffffff 0%, #d8b4fe 48%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content > p {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}

.hero-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.38);
}

.hero-btn-primary:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(139, 92, 246, 0.55);
}

.hero-btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    color: #ffffff;
    transform: translateY(-3px);
    border-color: rgba(196, 181, 253, 0.65);
    background: rgba(139, 92, 246, 0.16);
}

.hero-trust-line {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero-scroll-indicator {
    position: absolute;
    z-index: 3;
    right: 34px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero-scroll-indicator span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a78bfa;
    box-shadow: 0 0 14px rgba(167, 139, 250, 0.9);
    animation: heroPulse 1.8s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: .35; transform: scale(.8); }
    50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 82vh;
        align-items: flex-end;
    }

    .hero-video {
        object-position: 58% center;
    }

    .hero-video-overlay {
        background:
            linear-gradient(180deg, rgba(3, 0, 20, 0.30) 0%, rgba(3, 0, 20, 0.56) 45%, rgba(3, 0, 20, 0.96) 100%);
    }

    .hero-content {
        padding-top: 120px;
        padding-bottom: 76px;
    }

    .hero-eyebrow {
        margin-bottom: 15px;
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 13vw, 68px);
        letter-spacing: -2px;
        line-height: 1.02;
        margin-bottom: 16px;
    }

    .hero-content > p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .hero-actions {
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-btn {
        min-height: 46px;
        padding: 0 18px;
        font-size: 13px;
    }

    .hero-trust-line {
        font-size: 9px;
        line-height: 1.7;
    }

    .hero-scroll-indicator {
        right: 18px;
        bottom: 18px;
        font-size: 9px;
    }
}

/* --- Brand Intro Text Section --- */
.brand-intro-container {
    margin-top: 50px;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.brand-intro-text {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: -1.5px;
    text-transform: capitalize;
    max-width: 850px;
    margin: 0 auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .brand-intro-text {
        font-size: 32px;
        letter-spacing: -1px;
        padding: 0 15px;
    }
}

/* --- Mobile Performance Optimization Overrides (iOS / Android Smooth Scroll) --- */
@media (max-width: 991px) {
    /* Disable fixed background attachment which causes severe repainting lag and image flickering/blinking on mobile browsers */
    body,
    body.contact-page,
    .video-section,
    .about-section,
    .testimonial-section,
    .page-header,
    .contact-main-section {
        background-attachment: scroll !important;
    }

    /* Disable backdrop-filter blurs on heavy grid elements for smoother scrolling */
    .event-row,
    .event-gallery,
    .cards-inner,
    .brand-slider-section,
    .hello-glassy-box,
    .artist-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        /* Fallback backgrounds for high readability without blur */
        background: rgba(10, 10, 42, 0.95) !important;
    }

    /* Disable expensive CSS filter blurs and animations on floating background blobs */
    .bg-blob {
        animation: none !important;
        filter: blur(60px) !important;
        opacity: 0.35 !important;
    }

    /* Disable the full-page SVG noise overlay which has heavy mix-blend-mode cost on mobile scroll */
    .bg-noise-overlay {
        display: none !important;
    }
}

/* =========================================================
   Premium Capability Showcase
   Inspired by the supplied reference, adapted to Celebtree's
   existing violet / indigo visual language.
   ========================================================= */
.capability-showcase {
    position: relative;
    z-index: 5;
    padding-top: 30px;
    overflow: hidden;
}

.capability-panel {
    position: relative;
    margin: 0 auto 70px;
    padding: 52px 42px 48px;
    border: 1px solid rgba(139, 92, 246, 0.28);
    border-radius: 30px;
    background:
        radial-gradient(circle at 15% 10%, rgba(139, 92, 246, 0.16), transparent 32%),
        radial-gradient(circle at 90% 90%, rgba(109, 40, 217, 0.12), transparent 30%),
        linear-gradient(145deg, rgba(10, 10, 42, 0.84), rgba(3, 0, 20, 0.74));
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}

.capability-panel::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(196, 181, 253, 0.10);
    border-radius: 22px;
    pointer-events: none;
}

.capability-panel::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    top: -150px;
    right: -80px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.18), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
}

.capability-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 42px;
}

.capability-kicker {
    display: block;
    margin-bottom: 9px;
    color: #c4b5fd;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.capability-title {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.capability-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.capability-card {
    min-height: 390px;
    position: relative;
    padding: 0 22px 25px;
    border: 1px solid rgba(167, 139, 250, 0.30);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.13), rgba(255,255,255,0.035));
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease, background .35s ease;
    overflow: visible;
}

.capability-card::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 42%;
    background: linear-gradient(to top, rgba(139, 92, 246, 0.12), transparent);
    pointer-events: none;
    border-radius: 0 0 22px 22px;
}

.capability-card:hover {
    transform: translateY(-10px);
    border-color: rgba(196, 181, 253, 0.58);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.24), rgba(109, 40, 217, 0.09));
    box-shadow: 0 22px 50px rgba(91, 33, 182, 0.28), 0 0 0 1px rgba(167,139,250,.08);
}

.capability-icon {
    position: relative;
    z-index: 3;
    width: 142px;
    height: 142px;
    margin: -26px auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: #10051f;
    background: radial-gradient(circle at 34% 25%, #ffffff 0%, #ddd6fe 17%, #a78bfa 48%, #7c3aed 100%);
    border: 2px solid rgba(255,255,255,.55);
    box-shadow: 0 0 0 8px rgba(139, 92, 246, .08), 0 15px 35px rgba(0,0,0,.35), inset 0 2px 12px rgba(255,255,255,.55);
    transition: transform .45s ease, box-shadow .45s ease;
}

.capability-card:hover .capability-icon {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 0 0 10px rgba(139, 92, 246, .10), 0 18px 40px rgba(91,33,182,.38), inset 0 2px 12px rgba(255,255,255,.62);
}

.capability-card-content {
    position: relative;
    z-index: 3;
}

.capability-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: rgba(196,181,253,.45);
    text-underline-offset: 5px;
}

.capability-card ul {
    margin: 0;
    padding-left: 20px;
    color: rgba(255,255,255,.78);
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 500;
}

.capability-card li { margin-bottom: 7px; }

.search-stage-panel {
    position: relative;
    margin-bottom: 20px;
    padding: 70px 42px 72px;
    border: 1px solid rgba(139, 92, 246, 0.30);
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(139, 92, 246, .20), transparent 38%),
        radial-gradient(circle at 10% 80%, rgba(217, 70, 239, .10), transparent 30%),
        linear-gradient(145deg, rgba(10,10,42,.9), rgba(3,0,20,.84));
    box-shadow: 0 25px 70px rgba(0,0,0,.28);
}

.search-stage-panel::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(196,181,253,.10);
    border-radius: 21px;
    pointer-events: none;
}

.search-stage-heading { position: relative; z-index: 2; }

.search-stage-brand {
    display: inline-block;
    margin-bottom: 12px;
    font-family: 'Great Vibes', cursive;
    font-size: clamp(52px, 7vw, 90px);
    line-height: .9;
    color: #fff;
    text-shadow: 0 0 28px rgba(139,92,246,.28);
}

.search-stage-brand span {
    background: linear-gradient(135deg, #d8b4fe, #8b5cf6, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-stage-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: 1px;
}

.search-stage-heading h2 span {
    background: linear-gradient(90deg, #c4b5fd, #d946ef, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-stage-heading p {
    margin: 14px 0 36px;
    color: rgba(255,255,255,.65);
    font-size: 15px;
}

.talent-pill-grid {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 18px;
}

.talent-pill-grid span {
    padding: 12px 18px;
    border: 1px solid rgba(167,139,250,.30);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(139,92,246,.24), rgba(109,40,217,.10));
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 20px rgba(0,0,0,.15);
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.talent-pill-grid span:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(196,181,253,.65);
    background: linear-gradient(135deg, rgba(139,92,246,.42), rgba(109,40,217,.20));
}

@media (max-width: 1100px) {
    .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .capability-card { min-height: 350px; }
}

@media (max-width: 767px) {
    .capability-panel { padding: 42px 18px 34px; border-radius: 22px; margin-bottom: 38px; }
    .capability-panel::before { inset: 7px; border-radius: 16px; }
    .capability-heading { margin-bottom: 32px; }
    .capability-kicker { letter-spacing: 2.5px; font-size: 10px; }
    .capability-grid { grid-template-columns: 1fr; gap: 46px; }
    .capability-card { min-height: auto; padding: 0 20px 26px; }
    .capability-icon { width: 116px; height: 116px; margin-top: -30px; font-size: 42px; }
    .capability-card h3 { font-size: 19px; }
    .capability-card ul { font-size: 13px; }
    .search-stage-panel { padding: 52px 18px 54px; border-radius: 22px; }
    .talent-pill-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .talent-pill-grid span { padding: 10px 8px; font-size: 12px; }
}

@media (max-width: 420px) {
    .talent-pill-grid { grid-template-columns: 1fr; max-width: 280px; }
}

/* =========================================================
   PREMIUM ARTIST SHOWCASE — slow cinematic talent marquee
   ========================================================= */
.artists-showcase-premium {
    position: relative;
    height: auto !important;
    min-height: 760px;
    padding: 110px 0 95px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 35%, rgba(139,92,246,.10), transparent 28%),
        radial-gradient(circle at 88% 65%, rgba(109,40,217,.10), transparent 30%);
}

.artists-showcase-premium::before,
.artists-showcase-premium::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .16;
    pointer-events: none;
}
.artists-showcase-premium::before { left: -180px; top: 25%; background: var(--accent); }
.artists-showcase-premium::after { right: -180px; bottom: 5%; background: #4c1d95; }

.artists-showcase-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 54px;
    padding: 0 20px;
    text-align: center;
}
.artists-showcase-heading .title-text { margin-bottom: 26px; }
.artists-showcase-heading .title-text::after { display: none; }
.artists-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 18px;
    color: #b9a4ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}
.artists-eyebrow span {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}
.artists-eyebrow span:last-child { background: linear-gradient(90deg, var(--accent), transparent); }
.artists-showcase-intro {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255,255,255,.62);
    font-size: 15px;
    line-height: 1.8;
}

.artist-marquee-premium {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 18px 0 30px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.artist-marquee-premium .artist-marquee-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: artistsSlowDrift 42s linear infinite;
    will-change: transform;
}
.artist-marquee-premium:hover .artist-marquee-track { animation-play-state: paused; }

@keyframes artistsSlowDrift {
    from { transform: translate3d(0,0,0); }
    to { transform: translate3d(calc(-50% - 12px),0,0); }
}

.artists-showcase-premium .artist-card-premium {
    position: relative;
    flex: 0 0 clamp(245px, 21vw, 330px);
    height: 470px;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.11) !important;
    border-radius: 28px !important;
    background: #08051b !important;
    box-shadow: 0 22px 55px rgba(0,0,0,.38), 0 0 0 1px rgba(139,92,246,.04) inset !important;
    transform: translateZ(0);
    transition: transform .7s cubic-bezier(.16,1,.3,1), border-color .5s ease, box-shadow .7s ease;
    animation: none !important;
}
.artists-showcase-premium .artist-card-premium:hover {
    transform: translateY(-14px) scale(1.018) !important;
    border-color: rgba(139,92,246,.65) !important;
    box-shadow: 0 35px 80px rgba(0,0,0,.5), 0 0 50px rgba(139,92,246,.15) !important;
}
.artist-card-media,
.artist-card-media .artist-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.artist-card-media .artist-img {
    object-fit: cover;
    object-position: center top;
    margin: 0 !important;
    max-height: none !important;
    border-radius: 0 !important;
    filter: saturate(.92) contrast(1.03);
    transform: scale(1.015);
    transition: transform 1.2s cubic-bezier(.16,1,.3,1), filter .8s ease;
}
.artist-card-premium:hover .artist-card-media .artist-img {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.06);
}
.artist-card-glow {
    position: absolute;
    inset: auto 0 0;
    height: 55%;
    background: linear-gradient(to top, rgba(4,2,17,.96), rgba(4,2,17,.30), transparent);
    z-index: 1;
}
.artist-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(155deg, rgba(139,92,246,.12), transparent 34%, transparent 65%, rgba(3,0,20,.35));
    pointer-events: none;
}
.artist-card-meta {
    position: absolute;
    top: 19px;
    left: 20px;
    right: 20px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.artist-index {
    color: rgba(255,255,255,.55);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
.artist-tag {
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(7,3,24,.35);
    color: #ddd4ff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    backdrop-filter: blur(8px);
}
.artist-card-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 23px;
    z-index: 5;
    text-align: left;
}
.artist-kicker {
    color: #b7a2ff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}
.artists-showcase-premium .artist-name {
    margin: 7px 0 15px !important;
    color: #fff !important;
    font-size: clamp(25px, 2.1vw, 34px) !important;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -.6px;
    text-shadow: 0 5px 20px rgba(0,0,0,.45);
}
.artist-book-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.76);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s ease, gap .3s ease;
}
.artist-book-link span { color: #b69cff; font-size: 16px; line-height: 1; }
.artist-book-link:hover { color: #fff; text-decoration: none; gap: 13px; }

.artists-showcase-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 25px;
    padding: 0 20px;
    color: rgba(255,255,255,.42);
    font-size: 12px;
    letter-spacing: .3px;
}
.artists-showcase-footer .see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border: 1px solid rgba(139,92,246,.35);
    border-radius: 999px;
    background: rgba(139,92,246,.10);
    color: #fff;
    font-size: 11px;
    box-shadow: 0 8px 25px rgba(0,0,0,.18);
    transition: all .35s ease;
}
.artists-showcase-footer .see-more-btn:hover { background: rgba(139,92,246,.2); border-color: rgba(139,92,246,.65); transform: translateY(-2px); }

@media (max-width: 767px) {
    .artists-showcase-premium { min-height: 0; padding: 80px 0 70px; }
    .artists-showcase-heading { margin-bottom: 35px; }
    .artists-showcase-heading .title-text { font-size: 30px; line-height: 1.25; }
    .artists-showcase-intro { font-size: 13px; line-height: 1.7; }
    .artist-marquee-premium { -webkit-mask-image: none; mask-image: none; }
    .artist-marquee-premium .artist-marquee-track { gap: 16px; animation-duration: 36s; }
    .artists-showcase-premium .artist-card-premium { flex-basis: 255px; height: 390px; border-radius: 22px !important; }
    .artist-card-content { left: 19px; right: 19px; bottom: 19px; }
    .artists-showcase-footer { flex-direction: column; gap: 15px; margin-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    .artist-marquee-premium .artist-marquee-track { animation: none; }
    .artists-showcase-premium .artist-card-premium,
    .artist-card-media .artist-img { transition: none; }
}

/* ===== Global Smoothness & Performance Pass ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img { content-visibility: auto; }
.bento-img, .artist-img, .brand-slide img { backface-visibility: hidden; transform: translateZ(0); }
.video-slide video, .hero-video { transform: translateZ(0); backface-visibility: hidden; }
.bg-noise-overlay { opacity: .14; }
.bg-blob { filter: blur(90px); opacity: .42; }
.cards-inner, .event-row, .event-gallery, .service-card, .testimonial-inner { will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* Seamless cinematic section transitions */
main > section,
section[id] {
  position: relative;
  border-top: 0 !important;
  border-bottom: 0 !important;
}
main > section::before,
section[id]::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -90px;
  height: 180px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(3,0,20,.45) 48%, transparent 100%);
}
main > section > *,
section[id] > * { position: relative; z-index: 1; }

/* Remove abrupt section backgrounds and blend them into the page */
.about-section, .services-section, .events-section, .artists-section,
.testimonials-section, .colleges-section, .video-section {
  background: transparent !important;
}

/* Atmospheric fade at the end of each section */
main > section::after,
section[id]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to bottom, transparent, var(--bg, #030014));
}

@media (max-width: 768px) {
  main > section::before,
  section[id]::before { top: -55px; height: 110px; }
  main > section::after,
  section[id]::after { height: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  main > section::before,
  section[id]::before,
  main > section::after,
  section[id]::after { transition: none !important; }
}


/* =========================================================
   HOME — CLEAN ARTISTS WORKED SECTION
   No large image cards, tags, or numbered overlays.
   ========================================================= */
.artists-showcase-premium {
    min-height: 0 !important;
    padding: 105px 0 92px !important;
}
.artists-showcase-premium .artists-showcase-heading {
    margin-bottom: 0 !important;
}
.artists-showcase-premium .artists-showcase-footer {
    margin-top: 34px !important;
}

@media (max-width: 767px) {
    .artists-showcase-premium {
        padding: 78px 0 70px !important;
    }
    .artists-showcase-premium .artists-showcase-footer {
        margin-top: 28px !important;
    }
}

/* =========================================================
   CELEBTREE — MODERN PREMIUM NAVBAR
   Lightweight glass / pill navigation
   ========================================================= */
.nav-scroll {
    top: 14px;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1050;
}

.nav-scroll > .container {
    max-width: 1240px;
    padding-left: 18px;
    padding-right: 18px;
}

.nav-scroll .navbar {
    min-height: 76px;
    padding: 8px 14px 8px 22px;
    background: rgba(5, 4, 25, 0.76);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    box-shadow: 0 16px 45px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.nav-scroll .navbar-brand {
    flex-shrink: 0;
    margin-right: auto;
    padding: 0 18px 0 0;
    display: inline-flex;
    align-items: center;
}

.nav-scroll .brand-text-celeb {
    font-size: 29px;
    letter-spacing: .2px;
}

.nav-scroll .brand-text-tree {
    font-size: 39px;
}

.nav-scroll .navbar-nav {
    align-items: center;
    gap: 4px;
}

.nav-scroll .nav-item {
    padding: 0;
}

.nav-scroll .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin: 0;
    padding: 8px 17px !important;
    border-radius: 13px;
    color: rgba(255,255,255,.72) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .15px;
    text-decoration: none;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.nav-scroll .nav-link::before,
.nav-scroll .nav-link::after {
    content: none !important;
    animation: none !important;
}

.nav-scroll .nav-link:hover {
    color: #fff !important;
    background: rgba(139,92,246,.10);
    transform: translateY(-1px);
}

.nav-scroll .nav-item.active .nav-link {
    color: #fff !important;
    background: rgba(139,92,246,.13);
}

.nav-scroll .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, #8b5cf6, #c4b5fd);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(139,92,246,.7);
}

.nav-scroll .nav-btn {
    min-height: 44px;
    margin-left: 8px !important;
    padding: 9px 20px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9) !important;
    border: 1px solid rgba(196,181,253,.22) !important;
    border-radius: 13px !important;
    box-shadow: 0 8px 22px rgba(109,40,217,.24), inset 0 1px 0 rgba(255,255,255,.16);
}

.nav-scroll .nav-btn:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #9b6cff, #7c3aed) !important;
    transform: translateY(-1px);
    box-shadow: 0 11px 28px rgba(109,40,217,.34), inset 0 1px 0 rgba(255,255,255,.18);
}

.nav-scroll .navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    margin-left: 10px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 13px;
    background: rgba(255,255,255,.055);
}

.nav-scroll .navbar-toggler:hover,
.nav-scroll .navbar-toggler[aria-expanded="true"] {
    background: rgba(139,92,246,.13);
    border-color: rgba(139,92,246,.25);
}

@media (max-width: 991px) {
    .nav-scroll { top: 8px; }
    .nav-scroll > .container { padding-left: 12px; padding-right: 12px; }
    .nav-scroll .navbar {
        min-height: 66px;
        padding: 6px 10px 6px 16px;
        border-radius: 18px;
    }
    .navbar-brand img {
        height: 50px;
        max-height: 54px;
    }
    .nav-scroll .brand-text-celeb { font-size: 25px; }
    .nav-scroll .brand-text-tree { font-size: 34px; }
    .nav-scroll .navbar-collapse {
        margin-top: 8px;
        padding: 8px;
        background: rgba(5,4,25,.94);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 16px;
        box-shadow: 0 18px 45px rgba(0,0,0,.35);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
    .nav-scroll .navbar-nav { gap: 3px; }
    .nav-scroll .nav-item { padding: 0 !important; }
    .nav-scroll .nav-link {
        width: 100%;
        justify-content: flex-start;
        min-height: 46px;
        padding: 10px 14px !important;
        border-radius: 11px;
        font-size: 14px;
    }
    .nav-scroll .nav-item.active .nav-link::after {
        left: 14px;
        bottom: 8px;
        width: 18px;
        transform: none;
    }
    .nav-scroll .nav-btn {
        width: 100%;
        margin: 3px 0 0 !important;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .nav-scroll .navbar { padding-left: 12px; }
    .navbar-brand img {
        height: 44px;
        max-height: 48px;
    }
    .nav-scroll .brand-text-celeb { font-size: 22px; }
    .nav-scroll .brand-text-tree { font-size: 30px; }
    .nav-scroll .navbar-brand { padding-right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    .nav-scroll .nav-link,
    .nav-scroll .nav-btn,
    .nav-scroll .navbar-brand { transition: none; }
}

/* ===== Who We Are — refined title + full-image gallery ===== */
.about-section .video-details .title-text {
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin-bottom: 48px;
}

.about-section .video-details .title-text::after {
    left: 50%;
    transform: translateX(-50%);
    width: 118px;
    bottom: -12px;
}

/* Let the gallery determine its own height so every source image can be shown completely. */
.about-bento-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    column-count: unset;
}

.about-bento-gallery .bento-cell {
    display: grid;
    grid-template-areas: "image";
    align-items: center;
    justify-items: center;
    min-width: 0;
    min-height: 220px;
    margin-bottom: 0;
    aspect-ratio: auto;
    background: rgba(10, 10, 42, 0.72);
}

.about-bento-gallery .bento-cell .bento-img {
    grid-area: image;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
    border-radius: inherit;
}

.about-bento-gallery .bento-cell .bento-img:not(.active) {
    position: relative;
    grid-area: image;
}

@media (max-width: 991px) {
    .about-bento-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-bento-gallery .bento-cell {
        min-height: 180px;
    }
}

@media (max-width: 575px) {
    .about-section .video-details .title-text {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 42px;
    }

    /* Compact 2-column mobile gallery — avoids oversized artist cards. */
    .about-bento-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 0;
    }

    .about-bento-gallery .bento-cell {
        min-height: 0;
        height: 155px;
        aspect-ratio: 4 / 5;
        border-radius: 12px;
        overflow: hidden;
    }

    .about-bento-gallery .bento-cell .bento-img {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        border-radius: inherit;
    }
}

@media (max-width: 380px) {
    .about-bento-gallery { gap: 8px; }
    .about-bento-gallery .bento-cell { height: 138px; border-radius: 10px; }
}

/* =========================================================
   CELEBTREE — MODERN TEXT-ONLY ARTIST DIRECTORY
   No artist image cards / no numbered cards.
   ========================================================= */
.artist-directory-section {
  position: relative;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(70px, 8vw, 110px);
  background: transparent;
}
.artist-directory-intro { max-width: 820px; margin: 0 auto 34px; }
.artist-eyebrow {
  display: inline-block; margin-bottom: 12px; font-size: .72rem; letter-spacing: .2em;
  font-weight: 700; color: #b9a0ff; text-transform: uppercase;
}
.artist-directory-intro h2 {
  margin: 0; color: #fff; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; letter-spacing: -.03em;
}
.artist-directory-intro p { margin: 14px auto 0; max-width: 640px; color: rgba(255,255,255,.62); line-height: 1.75; }
.artist-directory-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.artist-search-wrap { position: relative; flex: 0 1 340px; }
.artist-search-wrap i { position: absolute; left: 17px; top: 50%; transform: translateY(-50%); color: #a78bfa; font-size: .9rem; }
.artist-search-wrap input {
  width: 100%; height: 48px; border: 1px solid rgba(167,139,250,.22); border-radius: 999px;
  padding: 0 44px; color: #fff; background: rgba(10,10,42,.58); outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03); transition: border-color .2s ease, background .2s ease;
}
.artist-search-wrap input:focus { border-color: rgba(167,139,250,.65); background: rgba(18,15,55,.72); }
.artist-search-wrap input::placeholder { color: rgba(255,255,255,.42); }
#artistSearchClear { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); border: 0; background: transparent; color: rgba(255,255,255,.55); font-size: 1.25rem; cursor: pointer; }
.artist-filter-pills { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.artist-filter {
  border: 1px solid rgba(167,139,250,.2); border-radius: 999px; padding: 9px 15px; background: rgba(10,10,42,.45);
  color: rgba(255,255,255,.62); font-size: .78rem; font-weight: 600; cursor: pointer; transition: .2s ease;
}
.artist-filter:hover, .artist-filter.active { color: #fff; border-color: rgba(167,139,250,.65); background: linear-gradient(135deg, rgba(139,92,246,.22), rgba(99,102,241,.12)); }
.artist-count-line { margin: 4px 0 13px; color: rgba(255,255,255,.4); font-size: .75rem; letter-spacing: .04em; }
.artist-directory-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 9px; }
.artist-name-item {
  min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  min-height: 52px; padding: 12px 15px; border: 1px solid rgba(167,139,250,.12); border-radius: 13px;
  background: rgba(8,7,31,.42); color: #fff; text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.artist-name-item:hover { transform: translateY(-2px); border-color: rgba(167,139,250,.42); background: rgba(22,16,58,.7); }
.artist-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .84rem; font-weight: 600; letter-spacing: .01em; }
.artist-arrow { flex: 0 0 auto; color: #a78bfa; font-size: .9rem; opacity: .55; transition: .2s ease; }
.artist-name-item:hover .artist-arrow { opacity: 1; transform: translate(2px,-2px); }
.artist-empty-state { text-align: center; padding: 60px 20px; color: rgba(255,255,255,.55); }
.artist-empty-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 14px; border-radius: 50%; background: rgba(139,92,246,.12); color: #a78bfa; }
.artist-empty-state h3 { color: #fff; margin: 0 0 6px; font-size: 1.15rem; }
.artist-empty-state p { margin: 0; font-size: .85rem; }
.artist-directory-cta { margin-top: 42px; }
.artist-directory-cta p { margin-bottom: 12px; color: rgba(255,255,255,.48); font-size: .84rem; }
.artist-book-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 19px; border: 1px solid rgba(167,139,250,.45); border-radius: 999px; color: #fff !important; text-decoration: none !important; background: linear-gradient(135deg, rgba(139,92,246,.24), rgba(79,70,229,.15)); transition: .2s ease; }
.artist-book-btn:hover { transform: translateY(-2px); border-color: rgba(167,139,250,.8); box-shadow: 0 10px 30px rgba(76,29,149,.2); }
@media (max-width: 991px) {
  .artist-directory-toolbar { flex-direction: column; align-items: stretch; }
  .artist-search-wrap { flex-basis: auto; width: 100%; }
  .artist-filter-pills { justify-content: flex-start; }
  .artist-directory-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 767px) {
  .artist-directory-section { padding-top: 48px; }
  .artist-directory-intro { margin-bottom: 26px; }
  .artist-directory-intro p { font-size: .86rem; }
  .artist-filter { padding: 8px 12px; font-size: .72rem; }
  .artist-directory-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; }
  .artist-name-item { min-height: 48px; padding: 10px 12px; border-radius: 11px; }
  .artist-name { font-size: .74rem; }
}
@media (max-width: 420px) {
  .artist-directory-grid { grid-template-columns: 1fr; }
  .artist-filter-pills { gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  .artist-name-item, .artist-book-btn, .artist-filter, .artist-search-wrap input { transition: none; }
}

/* Artists We Worked With - dual-direction image marquee */
.worked-artists-section {
    overflow: hidden;
    background: transparent;
    position: relative;
}

.worked-artists-header {
    max-width: 760px;
    margin: 0 auto 34px;
}

.worked-artists-header p {
    color: var(--muted);
    max-width: 650px;
    margin: 12px auto 0;
    line-height: 1.7;
}

.worked-artists-marquee {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
}

.worked-artists-track {
    display: flex;
    width: max-content;
    gap: 18px;
    will-change: transform;
}

.worked-artists-marquee-top .worked-artists-track {
    animation: workedArtistsLTR 38s linear infinite;
}

.worked-artists-marquee-bottom .worked-artists-track {
    animation: workedArtistsRTL 42s linear infinite;
}

.worked-artist-card {
    flex: 0 0 clamp(150px, 16vw, 220px);
    height: clamp(190px, 22vw, 280px);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 10px 35px rgba(0,0,0,.22);
}

.worked-artist-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.worked-artist-card:hover img {
    transform: scale(1.06);
}

.worked-artists-cta {
    margin-top: 38px;
}

@keyframes workedArtistsLTR {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@keyframes workedArtistsRTL {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 767px) {
    .worked-artists-track { gap: 12px; }
    .worked-artist-card {
        flex-basis: 135px;
        height: 175px;
        border-radius: 14px;
    }
    .worked-artists-marquee {
        mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    }
}


/* =========================================================
   Multi-Industry 3D Artist Network
   ========================================================= */
.multi-industry-section { position:relative; overflow:hidden; background:radial-gradient(circle at 12% 20%,rgba(180,80,255,.10),transparent 28%),radial-gradient(circle at 88% 72%,rgba(255,150,70,.09),transparent 28%),#080808; }
.multi-industry-heading { max-width:780px; margin:0 auto 48px; }
.multi-industry-heading p { max-width:650px; margin:14px auto 0; color:rgba(255,255,255,.68); line-height:1.75; }
.industry-3d-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; perspective:1400px; align-items:center; }
.industry-3d-card { position:relative; display:block; height:430px; overflow:hidden; border-radius:24px; background:#111; border:1px solid rgba(255,255,255,.12); box-shadow:0 20px 50px rgba(0,0,0,.35); transform:rotateY(0deg) translateZ(0); transition:transform .55s cubic-bezier(.2,.8,.2,1),box-shadow .55s ease,border-color .4s ease; isolation:isolate; text-decoration:none; }
.industry-3d-card:nth-child(1){transform:translateY(18px) rotateY(-4deg)}
.industry-3d-card:nth-child(2){transform:translateY(-6px) rotateY(-2deg);z-index:2}
.industry-3d-card:nth-child(3){transform:translateY(-6px) rotateY(2deg);z-index:2}
.industry-3d-card:nth-child(4){transform:translateY(18px) rotateY(4deg)}
.industry-3d-card:hover{transform:translateY(-14px) scaleX(1.28) scaleY(1.025)!important;border-color:rgba(255,255,255,.35);box-shadow:0 35px 80px rgba(0,0,0,.62),0 0 40px rgba(188,92,255,.14);z-index:20}
.industry-card-image,.industry-card-image img,.industry-card-overlay,.industry-card-glow{position:absolute;inset:0}
.industry-card-image{z-index:1;overflow:hidden;background:#0d0d0d}.industry-card-image img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .8s cubic-bezier(.2,.7,.2,1),filter .6s ease,object-fit .1s;filter:saturate(.92) contrast(1.04)}
.industry-3d-card:hover .industry-card-image img{object-fit:contain;transform:scale(1.02);filter:saturate(1.08) contrast(1.08)}
.industry-card-overlay{z-index:2;background:linear-gradient(180deg,rgba(0,0,0,.02) 25%,rgba(0,0,0,.12) 46%,rgba(0,0,0,.88) 100%)}
.industry-card-glow{z-index:3;inset:auto 8% -18% 8%;height:45%;background:radial-gradient(ellipse,rgba(255,255,255,.22),transparent 65%);filter:blur(25px);pointer-events:none;opacity:.5;transition:opacity .4s ease,transform .5s ease}.industry-3d-card:hover .industry-card-glow{opacity:.9;transform:translateY(-15px)}
.industry-card-label{position:absolute;z-index:4;left:22px;right:22px;bottom:20px;display:flex;align-items:flex-end;justify-content:space-between;color:#fff}.industry-card-label span{font-size:11px;letter-spacing:.16em;opacity:.62;padding-bottom:5px}.industry-card-label strong{font-size:clamp(18px,1.7vw,25px);font-weight:700;letter-spacing:-.02em}
.multi-industry-cta{margin-top:54px}
@media(max-width:1100px){.industry-3d-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.industry-3d-card{height:380px}.industry-3d-card:nth-child(n){transform:none}.industry-3d-card:hover{transform:translateY(-10px) scaleX(1.08) scaleY(1.02)!important}}
@media(max-width:700px){.multi-industry-heading{margin-bottom:30px;padding:0 10px}.multi-industry-heading p{font-size:14px;line-height:1.65}.industry-3d-grid{display:flex;gap:14px;overflow-x:auto;padding:8px 6px 24px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scrollbar-width:none}.industry-3d-grid::-webkit-scrollbar{display:none}.industry-3d-card,.industry-3d-card:nth-child(n){flex:0 0 min(78vw,300px);height:390px;transform:none!important;scroll-snap-align:center}.industry-3d-card:hover{transform:scale(1.015)!important}.industry-3d-card:hover .industry-card-image img{object-fit:contain}.industry-3d-card:active{transform:scale(.98)!important}.industry-card-label{left:18px;right:18px;bottom:17px}.multi-industry-cta{margin-top:28px}}
@media(prefers-reduced-motion:reduce){.industry-3d-card,.industry-card-image img,.industry-card-glow{transition:none}}

/* Refined footer logo sizing - uses the tightly-cropped Celebtree wordmark */
.footer-about-col .footer-logo {
    display: block;
    width: 250px;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: left center;
    margin: 0 0 20px;
}

@media (max-width: 767px) {
    .footer-about-col .footer-logo {
        width: 205px;
        margin: 0 auto 18px;
    }
}

/* Instagram Events & Updates */
.instagram-events-section {
    padding: 60px 0 90px;
    position: relative;
}
.instagram-events-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: clamp(48px, 6vw, 76px) clamp(24px, 5vw, 60px);
    background: radial-gradient(circle at 50% 0%, rgba(180, 80, 255, 0.18), transparent 70%), #0c0b14;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(139, 92, 246, 0.12);
}
.instagram-events-card::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(180, 80, 255, 0.14), transparent 70%);
    pointer-events: none;
}
.instagram-events-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: auto;
}
.instagram-id-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
}
.instagram-id-badge i {
    color: #e1306c;
    font-size: 1.1rem;
}
.instagram-events-content h2 {
    color: #ffffff !important;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.instagram-events-content p {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 32px;
}
.instagram-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}
.instagram-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f1f1f1;
    font-size: 0.88rem;
    font-weight: 600;
}
.instagram-events-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 34px;
    border-radius: 999px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    border: none;
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
    transition: transform .25s ease, box-shadow .25s ease;
}
.instagram-events-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(220, 39, 67, 0.55);
    color: #ffffff !important;
}
.instagram-events-btn i {
    font-size: 1.2rem;
}
@media (max-width: 576px) {
    .instagram-events-section { padding: 40px 0 60px; }
    .instagram-events-card { border-radius: 20px; padding: 36px 18px; }
    .instagram-events-content p { font-size: 0.95rem; line-height: 1.65; margin-bottom: 24px; }
    .instagram-events-btn { width: 100%; padding: 14px 20px; font-size: 0.95rem; }
    .instagram-features { gap: 8px; margin-bottom: 28px; }
    .instagram-pill { font-size: 0.8rem; padding: 6px 12px; }
}

/* =========================================================
   Premium Video Highlights
   ========================================================= */
.video-highlights-premium{position:relative;overflow:hidden;background:radial-gradient(circle at 50% 15%,rgba(180,80,255,.10),transparent 34%),#080808}
.video-highlights-heading{max-width:760px;margin:0 auto 38px}
.video-highlights-kicker{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.2em;opacity:.62;margin-bottom:10px}
.video-highlights-heading h2{margin-bottom:10px}
.video-highlights-heading p{max-width:650px;margin:0 auto;color:rgba(255,255,255,.66);line-height:1.75}
.video-showcase{display:flex;align-items:center;gap:18px;position:relative}
.video-showcase-viewport{width:100%;overflow:hidden;padding:30px 0 42px;cursor:grab}
.video-showcase-viewport:active{cursor:grabbing}
.video-showcase-track{display:flex;align-items:stretch;gap:22px;transition:transform .65s cubic-bezier(.2,.8,.2,1);will-change:transform}
.video-highlight-card{flex:0 0 min(330px,72vw);border-radius:24px;overflow:hidden;background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.10);box-shadow:0 18px 50px rgba(0,0,0,.35);transform:scale(.88) rotateY(0deg);opacity:.52;transition:transform .55s cubic-bezier(.2,.8,.2,1),opacity .45s ease,box-shadow .45s ease,border-color .45s ease}
.video-highlight-card.active{transform:scale(1.035) translateY(-8px);opacity:1;border-color:rgba(255,255,255,.24);box-shadow:0 32px 80px rgba(0,0,0,.55),0 0 45px rgba(180,80,255,.10)}
.video-highlight-media{position:relative;aspect-ratio:9/14;background:#000;overflow:hidden}
.video-highlight-media video{width:100%;height:100%;display:block;object-fit:cover;background:#000}
.video-highlight-badge{position:absolute;top:14px;left:14px;padding:7px 10px;border-radius:999px;background:rgba(0,0,0,.55);border:1px solid rgba(255,255,255,.16);backdrop-filter:blur(8px);font-size:10px;font-weight:700;letter-spacing:.14em;color:#fff;pointer-events:none}
.video-highlight-info{padding:17px 18px 20px}
.video-highlight-info span{display:block;font-size:10px;letter-spacing:.16em;font-weight:700;opacity:.5;margin-bottom:7px}
.video-highlight-info strong{display:block;color:#fff;font-size:14px;line-height:1.5;font-weight:600}
.video-nav{flex:0 0 48px;width:48px;height:48px;border-radius:50%;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.05);color:#fff;font-size:20px;display:grid;place-items:center;cursor:pointer;transition:transform .25s ease,background .25s ease,border-color .25s ease;z-index:3}
.video-nav:hover{transform:scale(1.08);background:rgba(255,255,255,.11);border-color:rgba(255,255,255,.3)}
.video-showcase-bottom{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:2px}
.video-dots{display:flex;gap:7px;align-items:center}
.video-dot{width:7px;height:7px;padding:0;border:0;border-radius:50%;background:rgba(255,255,255,.25);cursor:pointer;transition:width .25s ease,background .25s ease}
.video-dot.active{width:24px;background:#fff;border-radius:999px}
.video-instagram-link{color:#fff;text-decoration:none;font-size:13px;font-weight:600;opacity:.72;transition:opacity .2s ease,transform .2s ease}
.video-instagram-link:hover{opacity:1;transform:translateX(3px);color:#fff;text-decoration:none}
@media(max-width:767px){
 .video-highlights-heading{margin-bottom:22px;padding:0 10px}
 .video-highlights-heading p{font-size:14px}
 .video-showcase{display:block}
 .video-showcase-viewport{overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding:18px 9vw 34px;cursor:default}
 .video-showcase-viewport::-webkit-scrollbar{display:none}
 .video-showcase-track{gap:14px;transform:none!important;width:max-content}
 .video-highlight-card,.video-highlight-card.active{flex-basis:78vw;max-width:320px;transform:none;opacity:1;scroll-snap-align:center}
 .video-highlight-card.active{box-shadow:0 24px 55px rgba(0,0,0,.48)}
 .video-nav{display:none}
 .video-showcase-bottom{justify-content:center;flex-direction:column;margin-top:0}
 .video-instagram-link{font-size:12px}
}
@media(prefers-reduced-motion:reduce){.video-showcase-track,.video-highlight-card,.video-nav,.video-dot,.video-instagram-link{transition:none}}

/* Mobile performance and layout safeguards */
@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
    }

    .global-bg-wrapper {
        contain: strict;
    }

    .bg-noise-overlay {
        display: none;
    }

    .bg-blob {
        filter: blur(70px);
        opacity: .28;
        animation: none;
    }

    .bg-blob-1,
    .bg-blob-2,
    .bg-blob-3 {
        width: 320px;
        height: 320px;
    }

    .artist-image-scrollers,
    .video-highlights-premium,
    .services-section,
    .how-it-works-section,
    .testimonials-section,
    .contact-section {
        content-visibility: auto;
        contain-intrinsic-size: 1px 500px;
    }

    .artist-image-scrollers .worked-artist-card {
        contain: layout paint;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bg-blob,
    .artist-image-scrollers .worked-artists-track,
    .brand-carousel-track {
        animation: none !important;
    }
}


/* =========================================================
   How It Works — animated booking journey
   ========================================================= */
.how-it-works-section{
    position:relative;
    overflow:hidden;
    background:
      radial-gradient(circle at 12% 25%, rgba(255,255,255,.055), transparent 24%),
      radial-gradient(circle at 88% 70%, rgba(177,72,255,.09), transparent 30%),
      linear-gradient(180deg, #080808 0%, #0b0b0d 100%);
}
.how-it-works-section::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    left:-260px;
    top:20%;
    border-radius:50%;
    background:rgba(185,77,255,.08);
    filter:blur(90px);
    pointer-events:none;
}
.how-it-works-heading{max-width:760px;margin:0 auto 54px;position:relative;z-index:1}
.how-it-works-heading h2{margin:8px 0 14px}
.how-it-works-heading p{max-width:690px;margin:0 auto;color:rgba(255,255,255,.66);line-height:1.8;font-size:1rem}
.how-it-works-flow{display:flex;align-items:stretch;justify-content:center;position:relative;z-index:1}
.how-step-card{
    flex:1 1 0;
    min-width:0;
    position:relative;
    padding:30px 24px 28px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:24px;
    background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
    box-shadow:0 22px 55px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter:blur(12px);
    transform:translateY(35px) scale(.97);
    opacity:0;
    transition:transform .75s cubic-bezier(.2,.8,.2,1),opacity .65s ease,border-color .35s ease,box-shadow .35s ease;
}
.how-it-works-section.is-visible .how-step-card{transform:translateY(0) scale(1);opacity:1}
.how-it-works-section.is-visible .how-step-1{transition-delay:.05s}
.how-it-works-section.is-visible .how-step-2{transition-delay:.18s}
.how-it-works-section.is-visible .how-step-3{transition-delay:.31s}
.how-it-works-section.is-visible .how-step-4{transition-delay:.44s}
.how-step-card:hover{transform:translateY(-8px) scale(1.015)!important;border-color:rgba(255,255,255,.22);box-shadow:0 30px 70px rgba(0,0,0,.38),0 0 35px rgba(177,72,255,.10)}
.how-step-number{position:absolute;top:16px;right:18px;font-size:.72rem;font-weight:800;letter-spacing:.16em;color:rgba(255,255,255,.28)}
.how-step-icon{width:52px;height:52px;display:grid;place-items:center;border-radius:16px;margin-bottom:24px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.10);font-size:19px;color:#fff;box-shadow:0 10px 25px rgba(0,0,0,.2)}
.how-step-content span{display:block;text-transform:uppercase;letter-spacing:.14em;font-size:.67rem;font-weight:800;color:rgba(255,255,255,.45);margin-bottom:9px}
.how-step-content h3{font-size:1.08rem;line-height:1.35;margin:0 0 10px;color:#fff;font-weight:750}
.how-step-content p{margin:0;color:rgba(255,255,255,.62);font-size:.9rem;line-height:1.7}
.how-flow-line{width:42px;flex:0 0 42px;position:relative;display:flex;align-items:center;justify-content:center}
.how-flow-line::before{content:"";width:100%;height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent)}
.how-flow-line span{position:absolute;width:7px;height:7px;border-radius:50%;background:#fff;box-shadow:0 0 18px rgba(255,255,255,.7);opacity:.65}
.how-it-works-section.is-visible .how-flow-line span{animation:howPulse 2.2s ease-in-out infinite}
.how-it-works-section.is-visible .how-flow-line:nth-of-type(2) span{animation-delay:.35s}
.how-it-works-section.is-visible .how-flow-line:nth-of-type(3) span{animation-delay:.7s}
.how-it-works-note{position:relative;z-index:1;margin:34px auto 0;color:rgba(255,255,255,.52);font-size:.82rem;letter-spacing:.02em}
.how-it-works-note i{margin-right:8px;color:#fff}
@keyframes howPulse{0%,100%{transform:scale(.75);opacity:.3}50%{transform:scale(1.55);opacity:1}}
@media(max-width:991px){
    .how-it-works-flow{display:grid;grid-template-columns:1fr 1fr;gap:16px}
    .how-flow-line{display:none}
    .how-step-card{padding:26px 21px}
}
@media(max-width:767px){
    .how-it-works-section{padding-top:64px;padding-bottom:64px}
    .how-it-works-heading{margin-bottom:34px;padding:0 8px}
    .how-it-works-heading p{font-size:.9rem;line-height:1.7}
    .how-it-works-flow{grid-template-columns:1fr;gap:12px}
    .how-step-card{padding:22px 20px 22px 76px;border-radius:19px;min-height:142px}
    .how-step-icon{position:absolute;left:18px;top:22px;width:43px;height:43px;border-radius:13px;margin:0;font-size:16px}
    .how-step-number{top:14px;right:16px;font-size:.65rem}
    .how-step-content h3{font-size:1rem;padding-right:28px}
    .how-step-content p{font-size:.84rem;line-height:1.6}
    .how-it-works-note{font-size:.75rem;line-height:1.6;padding:0 12px}
}
@media(prefers-reduced-motion:reduce){
    .how-step-card{transition:none!important;transform:none!important;opacity:1!important}
    .how-it-works-section.is-visible .how-flow-line span{animation:none}
}

/* Professional Contact Page Refresh */
.contact-professional-section { position: relative; }
.contact-card-kicker { display:inline-block; letter-spacing:.16em; font-size:.72rem; font-weight:700; color:#b58cff; margin-bottom:10px; }
.contact-professional-info { min-height:100%; }
.contact-professional-info .contact-info-title { margin-bottom:12px; }
.contact-professional-info .contact-info-subtitle { max-width:560px; line-height:1.8; margin-bottom:32px; }
.contact-professional-info .contact-detail { display:flex; align-items:flex-start; gap:16px; }
.contact-professional-info .contact-detail-icon { flex:0 0 46px; width:46px; height:46px; display:flex; align-items:center; justify-content:center; border-radius:14px; background:rgba(140,80,255,.10); border:1px solid rgba(181,140,255,.22); color:#b58cff; }
.contact-professional-info .contact-detail-content h5 { margin:0 0 5px; font-weight:600; }
.contact-professional-info .contact-detail-content p { margin:0; line-height:1.7; }
.contact-professional-info .contact-detail-content a { color:inherit; text-decoration:none; transition:.25s ease; }
.contact-professional-info .contact-detail-content a:hover { color:#b58cff; }
.contact-quick-note { margin-top:30px; padding:18px 20px; display:flex; gap:14px; align-items:flex-start; border-radius:16px; background:rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.08); }
.contact-quick-note > i { color:#b58cff; margin-top:3px; }
.contact-quick-note div { display:flex; flex-direction:column; gap:3px; }
.contact-quick-note strong { font-size:.9rem; }
.contact-quick-note span { font-size:.78rem; opacity:.65; line-height:1.5; }
@media (max-width:767px){ .contact-professional-info .contact-info-subtitle{margin-bottom:24px;} .contact-quick-note{margin-top:22px;} }

/* =========================================================
   CELEBTREE — RESPONSIVE + PERFORMANCE PASS
   Keeps the visual design while reducing layout shift,
   expensive mobile effects and animation jank.
   ========================================================= */
html { overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; text-rendering: optimizeLegibility; }
img, video { max-width: 100%; }
img { height: auto; }

/* Let the browser isolate heavy sections and avoid repainting the whole page. */
.services-section, .about-section, .stats-section, .video-highlights-premium,
.how-it-works-section, .contact-professional-section, .industry-section,
.events-section, .artists-section, footer { contain: layout paint style; }

/* Avoid costly blur layers on touch devices. */
@media (hover: none), (pointer: coarse) {
  .glass-card, .service-card, .artist-card, .contact-card,
  .nav-scroll, .video-highlight-badge, .contact-professional-info,
  .how-step-card { -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
}

/* Tablet */
@media (max-width: 991px) {
  .container { width: 100%; max-width: 100%; padding-left: 22px; padding-right: 22px; }
  .page-hero { min-height: min(760px, 100svh); }
  .hero-content { padding-top: 110px; padding-bottom: 80px; }
  .hero-content h1 { font-size: clamp(42px, 7vw, 68px); line-height: 1.04; }
  .hero-content p { max-width: 650px; font-size: 15px; }
  .services-grid, .industry-3d-grid { gap: 18px; }
  .service-card { min-height: 300px; }
  .how-flow-line { display: none !important; }
}

/* Mobile */
@media (max-width: 767px) {
  html { scroll-behavior: auto; }
  .container { padding-left: 16px; padding-right: 16px; }
  section.sec-padding { padding-top: 64px !important; padding-bottom: 64px !important; }

  .nav-scroll { padding-left: 0; padding-right: 0; }
  .nav-scroll .navbar { min-height: 66px; padding: 8px 0; }
  .nav-scroll .navbar-brand { padding-right: 8px; }
  .nav-scroll .brand-text-celeb { font-size: 23px; }
  .nav-scroll .brand-text-tree { font-size: 31px; }
  .navbar-toggler { margin-left: auto; }
  .nav-scroll .navbar-nav { gap: 2px; padding: 12px 0 8px; }
  .nav-scroll .nav-link { width: 100%; min-height: 46px; padding: 9px 12px !important; justify-content: flex-start; }

  .page-hero { min-height: 100svh; min-height: 100dvh; }
  .hero-video { object-position: center center; }
  .hero-content { padding-top: 100px; padding-bottom: 70px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: .12em; line-height: 1.5; }
  .hero-content h1 { font-size: clamp(38px, 12vw, 56px); line-height: .98; letter-spacing: -.035em; }
  .hero-content p { font-size: 14px; line-height: 1.7; max-width: 100%; }
  .hero-actions { width: 100%; flex-direction: column; gap: 10px; }
  .hero-btn { width: 100%; min-height: 48px; justify-content: center; }

  .services-grid { grid-template-columns: 1fr !important; }
  .service-card { min-height: 250px; }
  .industry-3d-grid { display: flex; overflow-x: auto; overscroll-behavior-x: contain; }
  .industry-3d-card { flex: 0 0 min(82vw, 310px) !important; }

  .video-showcase-viewport { overscroll-behavior-x: contain; }
  .video-highlight-media video { object-fit: cover; }

  /* Reduce motion cost on mobile while preserving a premium feel. */
  .bg-blob { animation-duration: 18s !important; }
  .bg-noise-overlay { opacity: .18 !important; }
  .how-step-card, .service-card, .industry-3d-card, .artist-card { will-change: auto; }

  /* Prevent fixed chat UI from covering form/buttons. */
  .ai-chat-container, .ai-chat-window { max-width: calc(100vw - 20px) !important; }
  .ai-chat-window { max-height: min(78svh, 680px) !important; }
}

@media (max-width: 420px) {
  .container { padding-left: 13px; padding-right: 13px; }
  .hero-content { padding-top: 92px; }
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 13.5px; }
  .section-title, .title-text { font-size: clamp(28px, 8vw, 38px) !important; }
}

/* Accessibility and low-power devices: eliminate unnecessary animation work. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Fast first paint: the intro should never hold the site hostage. */
#intro-animation { transition-duration: .32s !important; }
#intro-animation.fade-out { transform: translateY(-12px); }


/* --- How It Works: Celebtree theme-matched cards --- */
.how-it-works-section{
    background:
      radial-gradient(circle at 15% 30%, rgba(139,92,246,.12), transparent 28%),
      radial-gradient(circle at 85% 70%, rgba(216,180,254,.08), transparent 28%),
      linear-gradient(180deg, var(--bg) 0%, #07031b 100%);
}
.how-step-card{
    background:
      linear-gradient(145deg, rgba(139,92,246,.16), rgba(10,10,42,.72) 52%, rgba(3,0,20,.9));
    border:1px solid rgba(139,92,246,.25);
    box-shadow:0 22px 55px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.07);
}
.how-step-card:hover{
    border-color:rgba(139,92,246,.58);
    box-shadow:0 30px 70px rgba(0,0,0,.42), 0 0 38px rgba(139,92,246,.18);
}
.how-step-icon{
    background:linear-gradient(135deg, rgba(139,92,246,.28), rgba(216,180,254,.12));
    border-color:rgba(139,92,246,.30);
    color:#fff;
    box-shadow:0 10px 25px rgba(139,92,246,.16);
}
.how-step-content span{color:#c4b5fd}
.how-flow-line::before{
    background:linear-gradient(90deg,transparent,rgba(139,92,246,.48),transparent);
}


/* =========================================================
   Dual-direction artist image scrollers
   ========================================================= */
.artist-image-scrollers {
    padding: 18px 0 24px;
    opacity: .9;
}
.artist-image-scrollers .worked-artists-marquee {
    padding: 7px 0;
}
.artist-image-scrollers .worked-artists-track {
    gap: 16px;
}
.artist-image-scrollers .worked-artist-card {
    flex: 0 0 clamp(145px, 15vw, 205px);
    height: clamp(180px, 20vw, 265px);
    border-radius: 16px;
    border: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.artist-image-scrollers .worked-artist-card img {
    object-fit: cover;
}
@media (max-width: 767px) {
    .artist-image-scrollers {
        padding: 10px 0 16px;
        opacity: .9;
        overflow: hidden;
    }
    .artist-image-scrollers .worked-artists-track {
        gap: 8px;
        will-change: transform;
    }
    .artist-image-scrollers .worked-artist-card {
        flex: 0 0 92px;
        width: 92px;
        height: 122px;
        border-radius: 10px;
    }
    /* Keep both rows autoplaying on mobile instead of relying on desktop rules. */
    .artist-image-scrollers .worked-artists-marquee-top .worked-artists-track {
        animation: workedArtistsLTR 28s linear infinite !important;
        animation-play-state: running !important;
    }
    .artist-image-scrollers .worked-artists-marquee-bottom .worked-artists-track {
        animation: workedArtistsRTL 31s linear infinite !important;
        animation-play-state: running !important;
    }
}

@media (max-width: 380px) {
    .artist-image-scrollers .worked-artist-card {
        flex-basis: 82px;
        width: 82px;
        height: 108px;
        border-radius: 9px;
    }
}


/* ===== Shared navbar visibility fix ===== */
.nav-scroll {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
}
.nav-scroll .navbar-collapse {
    visibility: visible;
}
.nav-scroll .navbar-nav .nav-item {
    visibility: visible !important;
}
.nav-scroll .navbar-nav .nav-link {
    visibility: visible !important;
}
@media (max-width: 991px) {
    .nav-scroll .navbar-collapse.show,
    .nav-scroll .navbar-collapse.collapsing {
        display: block !important;
    }
}

/* Performance: keep below-the-fold sections from competing with first paint. */
.video-highlights-premium,
.testimonial-section,
.brands-section {
    content-visibility: auto;
    contain-intrinsic-size: 700px;
}

/* The lightweight poster is the visual fallback while the hero video is loading. */
.hero-video {
    background: #030014 url('images/home-banner-optimized.webp') center / cover no-repeat;
}

@media (max-width: 767px) {
    #others .about-image-container {
        display: none;
    }
}


/* =========================================================
   MOBILE PERFORMANCE LAYER
   Keeps the desktop experience intact while reducing
   first-paint work, GPU effects and unnecessary downloads.
   ========================================================= */

@media (max-width: 768px) {
  /* Render below-the-fold sections only when they approach the viewport. */
  body > section:not(.page-hero),
  body > main > section:not(.page-hero) {
    content-visibility: auto;
    contain-intrinsic-size: 720px;
  }

  /* The hero poster is substantially cheaper than streaming video on mobile. */
  .page-hero {
    background-size: cover;
    background-position: center;
  }

  .page-hero .hero-video {
    display: block !important;
  }

  /* Expensive blur/backdrop effects are visually unnecessary on small screens. */
  .global-bg-wrapper .bg-blob,
  .global-bg-wrapper .bg-noise-overlay {
    display: none !important;
  }

  .global-bg-wrapper .bg-grid-overlay {
    opacity: .22 !important;
  }

  [style*="backdrop-filter"],
  .glass-card,
  .glass-panel,
  .nav-scroll {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  /* Stop continuously running decorative animations on mobile. */
  .brand-carousel-track,
  .worked-artists-track,
  .marquee__inner,
  .bg-blob,
  .films-orb,
  .orb,
  [class*="float"] {
    animation: none !important;
  }

  /* Avoid costly hover transforms on touch devices. */
  * {
    -webkit-tap-highlight-color: transparent;
  }

  /* Intro animation should never delay the first useful paint. */
  #intro-animation {
    display: none !important;
  }

  body {
    overflow-x: hidden;
  }

  /* Keep media decoding cheap and predictable. */
  img,
  video {
    max-width: 100%;
  }

  /* Video highlights: load only when the section is actually reached. */
  .video-highlights-premium {
    contain: layout paint style;
  }

  .video-highlights-premium video {
    background: #08080a;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}


/* =========================================================
   MOBILE NAV PERFORMANCE + LEFT-TO-RIGHT FOOTER ALIGNMENT
   ========================================================= */
@media (max-width: 768px) {
  /* Fast mobile navigation */
  header,
  .navbar,
  .nav-container,
  .mobile-menu,
  .nav-menu,
  .menu-overlay {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  header,
  .navbar {
    contain: layout paint;
  }

  .mobile-menu,
  .nav-menu {
    will-change: transform;
    transform: translateZ(0);
    box-shadow: none !important;
  }

  /* Only animate the menu itself; don't transition every child. */
  .mobile-menu *,
  .nav-menu * {
    transition: none !important;
    animation: none !important;
  }

  /* Prevent the open/close animation from forcing a full-page repaint. */
  .mobile-menu,
  .nav-menu {
    transition: transform .18s ease-out, opacity .12s linear !important;
  }

  /* Hero/footer content aligned from the left rather than centered. */
  .page-hero,
  .page-hero .hero-content,
  .page-hero .hero-inner,
  .hero-content,
  .hero-text,
  .hero-footer,
  .hero-footer-content {
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  .page-hero .hero-content,
  .page-hero .hero-inner,
  .hero-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Shared footer layout for Artists, Films and Events pages. */
  footer,
  .site-footer,
  .main-footer,
  .footer,
  .footer-container,
  .footer-content {
    text-align: left !important;
    align-items: flex-start !important;
  }

  footer .footer-container,
  .site-footer .footer-container,
  .main-footer .footer-container,
  .footer-container,
  .footer-content {
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  footer .footer-grid,
  .site-footer .footer-grid,
  .footer-grid {
    text-align: left !important;
    justify-items: start !important;
  }

  footer ul,
  .site-footer ul,
  .footer ul {
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
  }

  footer .footer-column,
  .site-footer .footer-column,
  .footer-column {
    text-align: left !important;
    align-items: flex-start !important;
  }

  footer .social-links,
  .site-footer .social-links,
  .social-links {
    justify-content: flex-start !important;
  }
}


/* =========================================================
   FINAL MOBILE HERO + NAV FIX
   ========================================================= */
@media (max-width: 768px) {

  /* HERO: push all hero copy/actions toward the bottom */
  .page-hero {
    min-height: 100svh !important;
    height: 100svh !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      transparent 42%,
      rgba(0,0,0,.18) 62%,
      rgba(0,0,0,.72) 100%
    );
    z-index: 1;
  }

  .page-hero .hero-video,
  .page-hero video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
  }

  .page-hero .hero-content,
  .page-hero .hero-inner,
  .page-hero .hero-container,
  .page-hero .hero-text,
  .hero-content,
  .hero-inner {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 20px 30px !important;
    margin: 0 !important;
    align-self: flex-end !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
  }

  /* Keep CTA buttons side-by-side on mobile */
  .page-hero .hero-actions,
  .page-hero .hero-buttons,
  .page-hero .cta-group,
  .hero-actions,
  .hero-buttons,
  .cta-group {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
  }

  .page-hero .hero-actions > *,
  .page-hero .hero-buttons > *,
  .page-hero .cta-group > *,
  .hero-actions > *,
  .hero-buttons > *,
  .cta-group > * {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  /* If the existing CTA wrapper has a different name, keep common button
     siblings together instead of stacking them. */
  .page-hero a,
  .page-hero button {
    max-width: 100% !important;
  }

  /* MOBILE NAV: ensure the hamburger/menu control is always visible */
  header,
  nav,
  .navbar,
  .nav-container {
    position: relative !important;
    z-index: 10000 !important;
  }

  .hamburger,
  .menu-toggle,
  .mobile-menu-toggle,
  .mobile-nav-toggle,
  .nav-toggle,
  button[aria-label*="menu" i],
  button[aria-label*="navigation" i] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10001 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .hamburger span,
  .menu-toggle span,
  .mobile-menu-toggle span,
  .mobile-nav-toggle span,
  .nav-toggle span,
  .hamburger::before,
  .hamburger::after {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Guarantee a visible three-line icon even if the original icon is hidden. */
  .hamburger::before,
  .hamburger::after {
    content: "" !important;
  }

  .hamburger {
    flex-direction: column !important;
    gap: 5px !important;
  }

  .hamburger span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: currentColor !important;
  }

  /* Don't let decorative hero layers cover the navbar. */
  .page-hero::before {
    z-index: 0 !important;
  }
}


/* =========================================================
   COLLEGES WE WORK WITH — OPPOSITE DIRECTION INFINITE SCROLLER
   Row 1: left -> right
   Row 2: right -> left
   ========================================================= */

.college-marquee-track {
  display: flex !important;
  width: max-content !important;
  max-width: none !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 24px !important;
  will-change: transform;
  animation-duration: 28s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

.college-marquee-track > * {
  flex: 0 0 auto !important;
}

.college-marquee-ltr {
  animation-name: college-marquee-ltr;
}

.college-marquee-rtl {
  animation-name: college-marquee-rtl;
}

@keyframes college-marquee-ltr {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

@keyframes college-marquee-rtl {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.college-marquee-track:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .college-marquee-track {
    gap: 16px !important;
    animation-duration: 24s;
    will-change: transform;
  }

  .college-marquee-track img {
    max-width: 150px;
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .college-marquee-track {
    animation: none !important;
    transform: none !important;
  }
}


/* Video Highlights playback stability */
.video-highlights-premium video,
.video-highlights video,
[class*="video-highlights"] video {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto;
  object-fit: cover;
}
