/* Responsive event row layout for events.html */
:root {
    /* Purple + Dark theme variables */
    --bg: #0b0b0d;
    /* page background */
    --surface: #111217;
    /* section surfaces */
    --fg: #efe7d0;
    /* main foreground/text */
    --muted: #bfb6a0;
    /* muted text */
    --accent: #8a2be2;
    /* purple */
    --accent-dark: #6a1b9a;
    /* darker purple */
    --accent-rgb: 138, 43, 226;
    /* rgb for rgba usage */
    --card-shadow: 0 4px 24px rgba(var(--accent-rgb), 0.07);
}

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

/* 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: var(--surface);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(var(--accent-rgb), 0.07);
    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: var(--surface);
    border-radius: 18px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.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: var(--bg);
    color: var(--fg);
}

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

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

.fixed-top {
    background: #1a1a2e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.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, #a97f2d 0%, #8b6320 100%);
}

/* Navbar Brand Logo */
.navbar-brand {
    padding: 0;
    margin: 0;
    height: auto;
}

.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 {
    padding: 8px 12px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: transparent;
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] {
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 30px;
    height: 30px;
    display: inline-block;
}

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

.navbar-brand .site-logo {
    max-height: 150px;
}

.logo-container .site-logo {
    height: 500px;
    width: auto;
    object-fit: contain;
}

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

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

    .navbar-brand .site-logo {
        max-height: 70px;
    }

    .logo-container .site-logo {
        height: 250px;
        width: auto;
        object-fit: contain;
    }

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

/* Header section */
.header-section {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(22, 33, 62, 0.4) 100%), url('../images/2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: auto;
}

.header-details h6 {
    color: var(--accent);
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.header-details h1 {
    font-weight: bold;
    font-size: 48px;
    line-height: 70px;
    color: #ffffff;
    margin-bottom: 19px;
}

.header-details h1 span {
    color: var(--accent);
}

.header-details p {
    font-size: 16px;
    line-height: 36px;
    color: #ecf0f1;
    margin-bottom: 15px;
}

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

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

.header-image img {
    filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.6));
}

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

.cards-inner {
    padding: 50px 0px;
    text-align: center;
    background: var(--surface);
    border-radius: 10px;
    transition: all .4s;
    border-left: 4px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.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: var(--surface);
    box-shadow: 0px 20px 40px rgba(var(--accent-rgb), 0.10);
    transform: translateY(-5px);
}

.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 {
    font-size: 36px;
    line-height: 54px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.title-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
    border-radius: 2px;
}

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

@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;
    gap: 64px;
    /* larger gap to ensure logos don't touch */
    align-items: center;
    /* each inner contains duplicated slides for seamless loop */
    animation: marquee-scroll 30s linear infinite;
    will-change: transform;
    white-space: nowrap;
}

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

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

.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(-50%);
    }
}

/* 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 {
    background:
        linear-gradient(180deg, #0b0b0d 0%, rgba(11, 11, 13, 0.98) 15%, rgba(17, 18, 23, 0.95) 50%, rgba(11, 11, 13, 0.98) 85%, #0b0b0d 100%),
        url('images/IMG_3114.JPEG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.artists-showcase .artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    align-items: start;
}

.artists-showcase .artist-card {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15) 0%, rgba(103, 58, 183, 0.1) 100%);
    border: 1.5px solid rgba(156, 39, 176, 0.3);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.25);
    /* Purple outer glow */
    transition: transform 0.32s cubic-bezier(.22, .9, .36, 1), box-shadow 0.32s 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: 15px;
    max-height: 200px;
}

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

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

/* See More Button - Updated to match Get Quote */
.see-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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.15), 0 0 20px rgba(var(--accent-rgb), 0.2);
    /* Added glow */
    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 Button - Updated to match Get Quote */
.buy-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
    transition: all .3s;
    cursor: pointer;
}

.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, #0b0b0d 0%, rgba(11, 11, 13, 0.8) 15%, rgba(17, 18, 23, 0.5) 50%, rgba(11, 11, 13, 0.8) 85%, #0b0b0d 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, #0b0b0d 0%, rgba(11, 11, 13, 0.8) 15%, rgba(17, 18, 23, 0.5) 50%, rgba(11, 11, 13, 0.8) 85%, #0b0b0d 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 - Premium Redesign */
.testimonial-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    /* Dark gradient background matching site theme */
    background: radial-gradient(circle at top right, #1a1a2e 0%, #0f0f16 100%);
}

/* Background decorative elements */
.testimonial-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.testimonial-wrapper {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* Carousel Inner - Container for the cards */
#testimonialCarousel .carousel-inner {
    overflow: visible;
    /* Allow shadows/glows to spill out */
    background: transparent;
    /* Remove default background */
    box-shadow: none;
    /* Remove default shadow */
    padding: 20px;
}

/* Individual Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
    /* Purple outer glow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform, box-shadow;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    line-height: 1;
    font-family: serif;
    color: rgba(var(--accent-rgb), 0.1);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(var(--accent-rgb), 0.3);
}

/* Avatar Styling */
.testimonial-avatar {
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(var(--accent-rgb), 0.5);
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3);
}

/* Content Typography */
.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-content .quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 32px;
    font-family: 'Poppins', sans-serif;
    /* Start with body font, maybe shift to serif if desired */
}

.client-info h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.client-info .client-title {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Custom Indicators */
.carousel-indicators-custom {
    position: static;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-indicators-custom li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators-custom li.active {
    background-color: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.5);
}

/* Overriding default bootstrap active structure for custom card usage */
.carousel-item {
    padding: 10px;
    /* Space for hover lift */
}


/* Carousel styling */
.carousel-inner {
    border-radius: 15px;
    padding: 40px 20px;
    background: var(--surface);
}

.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: #181824;
    border-top: 1px solid rgba(var(--accent-rgb), 0.2);
    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-carousel-section {
    padding: 28px 0 12px 0;
}

.video-carousel-viewport {
    overflow: hidden;
    position: relative;
}

.video-carousel-track {
    display: flex;
    gap: 18px;
    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 {
    transform: translateY(-6px) scale(1.02);
    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;
    }
}

@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;
    }

    .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(135deg, var(--accent) 0%, var(--accent-dark) 100%);
        color: #ffffff !important;
        border-radius: 33px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);

        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: 80px;
        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: 100vw;
        max-width: 100vw;
        height: auto;
        max-height: 320px;
        object-fit: contain;
        border-radius: 18px;
        margin-bottom: 18px;
        display: block;
    }

    .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;
    }

    .header-image img {
        max-width: 250px;
    }

    .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;
    }

    .header-image img {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        max-height: 320px;
        object-fit: contain;
        border-radius: 18px;
        margin-bottom: 18px;
        display: block;
    }
}

/* 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: linear-gradient(180deg, rgba(11, 11, 13, 0.85), rgba(17, 18, 23, 0.85)), url('images/IMG_3114.JPEG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 60px;
    padding-bottom: 80px;
}

.artist-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(169, 127, 45, 0.08) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-top: 16px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.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;
}

.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);
    animation: heroTextUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}

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

.get-btn {
    opacity: 0;
    transform: scale(0.8);
    animation: heroBtnPop 0.7s cubic-bezier(0.23, 1, 0.32, 1) 1.1s 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;
    }
}

/* Hero Section "Stage" Gradient */
.animated-header span {
    background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 700;
}

/* Get Quote Button */
.get-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
}

.get-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.4);
}

/* Global Nav Button Style - Unified */
.nav-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 33px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.4);
    color: #ffffff !important;
}

/* Navbar Logo Size */
.site-logo {
    max-height: 45px !important;
    width: auto;
    object-fit: contain;
}

/* Process Section (Search to Stage) Styles */
.process-section {
    background: #0b0b0d;
    padding: 80px 0;
}

.process-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
}

.process-title .highlight-purple {
    color: var(--accent);
    /* Fallback */
    background: linear-gradient(180deg, #a74eff 0%, #6800d1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.start-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

/* Reusable Gradient Text Class */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.start-circle-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(167, 78, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.1);
}

.start-circle-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
    transform: scale(1.05);
}

.start-label {
    margin-left: 22px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

.process-card {
    background: linear-gradient(180deg, rgba(20, 20, 25, 0.85), rgba(45, 12, 70, 0.75)),
        url('images/IMG_3114.JPEG');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 60px 50px;
    color: #fff;
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.4), 0 20px 50px rgba(0, 0, 0, 0.5);
    /* Added purple glow */
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glass effect on top of card */
.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 0;
}

/* Hero Section Background */
.header-section {
    position: relative;
    background: #0b0b0d;
    /* Base dark theme color */
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/6.jpg') center/cover no-repeat;
    opacity: 0.6;
    /* Direct opacity control - Adjusted to 60% */
    z-index: 0;
    pointer-events: none;
}

.header-section>.container {
    position: relative;
    z-index: 1;
    /* Ensure content stays above the background */
}

.process-steps {
    position: relative;
    z-index: 1;
}

.step-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.step-item .text-accent {
    color: #ffbf00;
    /* Orange-Gold from design */
    font-weight: 800;
}

.step-item p {
    font-size: 1rem;
    color: #d0d0d0;
    margin-bottom: 0;
    line-height: 1.5;
}

.step-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 25px 0;
    width: 100%;
}

@media (max-width: 991px) {
    .process-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .start-btn-wrapper {
        align-items: center;
    }

    .process-card {
        padding: 40px 30px;
        margin-top: 40px;
    }

}

/* Codomax Footer Link */

.codomax-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.codomax-link:hover {
    color: var(--accent);
    text-decoration: none;

}

/* Video Carousel Navigation Buttons */
.video-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.video-prev,
.video-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    outline: none;
}

.video-prev:hover,
.video-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

.video-prev:active,
.video-next:active {
    transform: translateY(0) scale(0.95);
}

/* About Section Text Color */
.video-details h2,
.video-details p {
    color: #ffffff !important;
}

/* VOTING PAGE STYLES */
.voting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.voting-card {
    background: var(--surface);
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.voting-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.3);
}

.voting-img-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #1a1a2e;
}

.voting-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.voting-content h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.voting-content p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.vote-btn {
    width: 100%;
    cursor: pointer;
    background: transparent;
    border: 2px solid var(--accent);
    color: #fff;
}

.vote-btn:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

@media (max-width: 768px) {
    .voting-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}