/* 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 {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* 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);
}

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

/* The active image dictates the cell's natural height */
.bento-cell .bento-img.active {
    position: relative;
    opacity: 1;
}

/* Inactive images are hidden and stacked behind */
.bento-cell .bento-img:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

@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 {
    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%),
        url('images/5.jpg');
    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%),
        url('images/IMG_2558.JPG');
    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.05rem;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.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%),
        url('images/6.jpg');
    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;
    height: 500vh; /* 5 videos * 100vh per slide */
}

.video-play-section .container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.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: 80px 0;
    background: var(--bg);
}

.contact-form-wrapper {
    background: var(--surface);
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.08);
    border-left: 5px solid var(--accent);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 30px;
}

.contact-form {
    flex: 1;
}

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

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

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

.contact-form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--fg);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .form-control {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--fg);
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: var(--muted);
    opacity: 0.6;
}

.contact-form .form-control:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
    color: var(--fg);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}

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

.contact-form .btn-block {
    width: 100%;
    margin-top: 24px;
    font-weight: 600;
    padding: 14px 32px;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    padding: 45px 0 45px 45px;
}

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

.contact-info-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 40px;
}

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

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

.contact-detail:hover .contact-detail-icon {
    background: rgba(var(--accent-rgb), 0.25);
    transform: translateY(-2px);
}

.contact-detail-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 8px;
    margin-top: 0;
}

.contact-detail-content p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

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

.contact-detail-content a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

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

    .contact-form-wrapper {
        padding: 35px;
        margin-bottom: 30px;
    }

    .contact-info-wrapper {
        padding: 35px 0;
    }

    .contact-form-title,
    .contact-info-title {
        font-size: 1.5rem;
    }
}

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

    .contact-form-wrapper {
        padding: 25px;
        margin-bottom: 30px;
    }

    .contact-info-wrapper {
        padding: 25px 0;
    }

    .contact-form-title,
    .contact-info-title {
        font-size: 1.3rem;
    }

    .contact-form label {
        font-size: 0.85rem;
    }

    .contact-detail {
        margin-bottom: 20px;
    }
}

/* 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;
    }
}

/* --- Full-width Responsive Page Hero Banner Section --- */
.page-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.page-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- 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;
    }
}