        :root {
            --fire-gold: #ff9d00;
            --fire-red: #d32f2f;
            --dark-bg: #0a0502;
            --card-glass: rgba(20, 10, 5, 0.9);
            --text-gold: #fbc02d;
        }

        html,
        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }


        body {
            background-color: var(--dark-bg);
            background-image: radial-gradient(circle at top left, rgba(255, 157, 0, 0.08), transparent 20%),
                              radial-gradient(circle at bottom right, rgba(255, 69, 0, 0.05), transparent 18%);
            color: #ffffff;
            font-family: 'Outfit', sans-serif;
            min-height: 100vh;
        }


        h1,
        h2,
        h3,
        .nav-link {
            font-family: 'Cinzel', serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Fiery Background Effect */
        .fiery-bg {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1622110674153-a1326259c41e?auto=format&fit=crop&q=60&w=900');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }

        .navbar {
            background: rgba(0, 0, 0, 0.95);
            border-bottom: 2px solid var(--fire-gold);
            padding: 1rem 0;
            z-index: 1000;
            position: fixed;
            width: 100%;
            top: 0;
        }

        .nav-link {
            color: #fff !important;
            transition: 0.3s;
        }

        .nav-link:hover {
            color: var(--fire-gold) !important;
            text-shadow: 0 0 10px var(--fire-gold);
        }

        .nav-link.active {
            color: var(--fire-gold) !important;
            text-shadow: 0 0 10px var(--fire-gold);
        }

        .nav-link {
            position: relative;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 2px;
            background: var(--fire-gold);

            transform: scaleX(0);
            transform-origin: left;
            transition: transform .35s ease;
        }

        .nav-link.active::after {
            transform: scaleX(1);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.855), rgba(0, 0, 0, 0)),
                url('./assets/general/fighting-rooster.png');
            background-size: cover;
            background-position: center;
            border-bottom: 3px solid var(--fire-gold);
            position: relative;
            background-repeat: no-repeat;
        }

        /* video background */
        /* background video */
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;

            opacity: 0;
            transition: opacity .6s ease;

            z-index: 1;
        }

        /* keep text above video */
        .hero .container {
            position: relative;
            z-index: 3;
        }

        /* show video when hovering teaser button */
        .hero:has(.teaser-btn:hover) .hero-video {
            opacity: 1;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top left, rgba(255, 157, 0, 0.18), transparent 25%),
                        radial-gradient(circle at bottom right, rgba(255, 69, 0, 0.12), transparent 18%);
            pointer-events: none;
            z-index: 2;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(transparent, var(--dark-bg));
            z-index: 2;
        }

        .hero-title {
            font-size: clamp(2rem, 8vw, 4.8rem);
            color: var(--fire-gold);
            text-shadow: 2px 2px 24px rgba(255, 69, 0, 0.9);
            font-weight: 700;
            letter-spacing: 0.18em;
            max-width: 14ch;
            animation: fadeInUp 1.2s ease-out both;
        }

        .hero .lead {
            opacity: .95;
            transition: opacity 0.4s ease;
            animation: fadeInUp 1.3s ease-out both;
            animation-delay: 0.15s;
        }

        .hero .btn {
            opacity: 0;
            animation: fadeInUp 1.4s ease-out both;
            animation-delay: 0.24s;
        }

        .btn-fire {
            background: linear-gradient(135deg, #ffba00, #ff4d00);
            border: none;
            color: #000;
            font-weight: 800;
            padding: 14px 35px;
            border-radius: 50px;
            transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(255, 123, 0, 0.25);
        }

        .btn-fire:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 18px 45px rgba(255, 123, 0, 0.35);
            color: #000;
        }

        .btn-outline-gold {
            border: 2px solid rgba(255, 157, 0, 0.9);
            color: var(--fire-gold);
            padding: 12px 30px;
            transition: 0.35s ease;
            background: rgba(255, 157, 0, 0.08);
            border-radius: 50px;
        }

        .btn-outline-gold:hover {
            background: rgba(255, 157, 0, 0.18);
            transform: translateY(-2px);
            color: #000;
        }

        .navbar-scrolled {
            background: rgba(5, 5, 5, 0.95) !important;
            box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(14px);
            border-color: rgba(255, 157, 0, 0.25);
        }

        .section-title {
            position: relative;
            padding-bottom: 0.85rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 5rem;
            height: 4px;
            border-radius: 999px;
            background: linear-gradient(90deg, rgba(255, 157, 0, 0.95), rgba(255, 255, 255, 0.2));
        }

        .movie-card,
        .movie-card1,
        .payment-card,
        .bank-card,
        .director-message,
        .team-member {
            transform: translateZ(0);
            backface-visibility: hidden;
            will-change: transform, opacity;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }

        .movie-card:hover,
        .movie-card1:hover,
        .bank-card:hover,
        .director-message:hover,
        .team-member:hover {
            transform: translateY(-8px);
            box-shadow: 0 28px 55px rgba(0, 0, 0, 0.28);
        }

        .movie-card img,
        .movie-card1 img,
        .team-member img,
        .director-img,
        .qr-box {
            transition: transform 0.45s ease, filter 0.45s ease;
        }

        .movie-card img:hover,
        .movie-card1 img:hover,
        .team-member img:hover,
        .director-img:hover,
        .qr-box:hover {
            transform: scale(1.02);
            filter: brightness(1.08) contrast(1.05);
        }

        .section-surface {
            background: rgba(10, 5, 2, 0.92);
            border: 1px solid rgba(255, 179, 0, 0.15);
            box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
            border-radius: 28px;
            backdrop-filter: blur(18px);
        }

        @media (max-width: 992px) {
            .section-title::after {
                width: 3.5rem;
            }

            .hero-title {
                font-size: clamp(2.2rem, 12vw, 3.8rem);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .navbar .nav-link {
            transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
        }

        .nav-link:hover {
            transform: translateY(-1px);
        }

        .btn-outline-gold {
            border: 2px solid rgba(255, 157, 0, 0.9);
            color: var(--fire-gold);
            padding: 12px 30px;
            transition: 0.35s ease;
            background: rgba(255, 157, 0, 0.08);
            border-radius: 50px;
        }

        .btn-outline-gold:hover {
            background: rgba(255, 157, 0, 0.18);
            transform: translateY(-2px);
            color: #000;
        }

        /* Feature Card Styles */
        .movie-card2 {
            background: var(--card-glass);
            border: 1px solid rgba(255, 157, 0, 0.3);
            border-radius: 12px;
            padding: 2rem;
            backdrop-filter: blur(15px);
            margin-bottom: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .actor-badge {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid var(--fire-gold);
            padding: 6px 18px;
            border-radius: 20px;
            display: inline-block;
            margin: 5px;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .actor-badge:hover {
            background: var(--fire-gold);
            color: #000;
        }


        .actor-img {
            height: 150px;
            width: 100%;
            max-width: 130px;
            object-fit: cover;
            border: 2px solid #ff9d00;
        }

        .actor-badge {
            margin-top: 8px;
            display: inline-block;
        }

        /* progress bar  */
        .progress-wrapper {
            position: relative;
            padding-top: 2rem;
        }

        .custom-progress {
            height: 10px;
            border: #ffffff 1px solid;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 20px;
            overflow: visible;
        }

        .custom-progress-bar {
            background: linear-gradient(90deg, #d32f2f, #ff9d00);
            border-radius: 20px;
            transition: width 0.6s ease;

        }

        /* Bubble */

        #bubble {
            position: absolute;
            top: 0;
            transform: translateX(-50%);
            background: #ff9d00;
            color: #000;
            font-size: 12px;
            font-weight: bold;
            border-radius: 6px;
            text-align: center;
        }

        #bubble::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: #37ff00;
        }

        /* =========investment card merge ============ */
        /* Merge invest section into single card on desktop */
        @media (min-width:992px) {

            #invest .row {
                --bs-gutter-x: 3rem;
            }

            #invest .invest-form {
                padding-left: 2rem;
            }

        }


        /* Team Section */
        .team-member {
            text-align: center;
            transition: 0.3s;
            background: rgba(255, 255, 255, 0.03);
            padding: 15px;
            border-radius: 12px;
        }

        .team-member img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            border: 2px solid #444;
            border-radius: 8px;
            transition: 0.5s;
            filter: sepia(30%) contrast(1.1);
        }

        .team-member:hover img {
            border-color: var(--fire-gold);
            filter: sepia(0%) contrast(1.2);
            transform: scale(1.02);
            box-shadow: 0 0 30px rgba(255, 157, 0, 0.4);
        }

        .glow-text {
            color: var(--fire-gold);
            text-shadow: 0 0 15px rgba(255, 157, 0, 0.5);
        }

        /* Form Controls */
        .form-control {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid #555;
            color: #fff;
            padding: 12px;
        }

        .form-control:focus {
            background: rgba(0, 0, 0, 0.6);
            border-color: var(--fire-gold);
            box-shadow: 0 0 10px rgba(255, 157, 0, 0.2);
            color: #fff;
        }

        .overlay-film {
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
            bottom: 0;
            width: 100%;
        }

        .poster-img {
            transition: opacity 1s ease-in-out;
        }

        /* about film image  */
        .movie-card {
            border: none;
            padding: 0;
            background: transparent;
            overflow: hidden;
        }

        .movie-card img {
            width: 100%;
            display: block;
            -webkit-mask-image: radial-gradient(circle, black 25%, transparent 100%);
            mask-image: radial-gradient(circle, black 55%, transparent 100%);
        }

        .movie-card1 img {
            width: 100%;
            display: block;
            mask-image: linear-gradient(to right, transparent, black 20%, black 90%, transparent);
        }


        /* Director Message */

        .director-message {
            max-width: 1400px;
            margin: auto;
        }

        /* Language switcher */

        .language-switch {
            font-size: 18px;
            font-weight: 600;
        }

        .lang-btn {
            cursor: pointer;
            color: #aaa;
            transition: .3s;
        }

        .lang-btn:hover {
            color: var(--fire-gold);
        }

        .lang-btn.active {
            color: var(--fire-gold);
            text-shadow: 0 0 8px var(--fire-gold);
        }

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


        .director-title {
            font-size: 28px;
        }

        .director-img {
            width: 100%;
            max-width: 260px;
            border-radius: 10px;
            border: 3px solid var(--fire-gold);
        }

        .director-message p {
            font-size: 18px;
            line-height: 1.6;
        }

        /* mobile */

        @media(max-width:768px) {

            .director-title {
                font-size: 18px;
            }

            .director-message p {
                font-size: 13px;
            }

            .director-img {
                max-width: 150px;
            }

        }

        @media(max-width:480px) {

            .director-title {
                font-size: 16px;
            }

            .director-message p {
                font-size: 12px;
            }

            .director-img {
                max-width: 120px;
            }
        }

        /* ===== MOBILE / TABLET WRAP LAYOUT ===== */

        @media (max-width: 991px) {

            .director-message .row {
                display: block;
            }

            .director-message .col-5,
            .director-message .col-7 {
                width: 100%;
            }

            .director-box {
                float: left;
                width: 140px;
                margin-right: 15px;
                margin-bottom: 10px;
            }

            .director-img {
                width: 100%;
                max-width: 140px;
            }

            .director-message p {
                font-size: 14px;
                line-height: 1.6;
            }

        }

        /* very small phones */

        @media (max-width:480px) {

            .director-box {
                width: 110px;
                margin-right: 20px;
            }

            .director-img {
                max-width: 110px;
            }

            .director-message p {
                font-size: 13px;
            }

        }


        /*  footer  */


        .email-link {
            transition: all 0.3s ease;
        }

        .email-link:hover {
            color: #d4af37 !important;
            /* gold color */

        }

        .whatsapp-link {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .whatsapp-link:hover {
            color: #25D366;
            /* WhatsApp green */

        }


        /* Contribution Section */
        .card-header-gradient {
            background: linear-gradient(90deg, rgba(67, 20, 7, 0.5), transparent);
            padding: 1.5rem;
            border-bottom: 1px solid rgba(154, 52, 18, 0.2);
        }

        .qr-container {
            position: relative;
            padding: 12px;
            background: white;
            border-radius: 20px;
            display: inline-block;
        }

        .qr-glow {
            position: absolute;
            inset: -8px;
            background: var(--accent-orange);
            opacity: 0.2;
            filter: blur(8px);
            border-radius: 24px;
            z-index: -1;
        }

        .bank-item {
            background-color: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 10px;
            padding-bottom: 5px;
            padding-left: 10px;
            padding-right: 10px;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .bank-item:hover {
            border-color: rgba(249, 115, 22, 0.3);
            background-color: rgba(0, 0, 0, 0.3);
        }

        .copy-btn {
            color: #6c757d;
            border: none;
            background: none;
            padding: 4px;
            transition: color 0.2s;
        }

        .copy-btn:hover {
            color: var(--accent-amber);
        }

        .info-box {
            background-color: rgba(13, 110, 253, 0.05);
            border: 1px solid rgba(13, 110, 253, 0.1);
            padding: 1rem;
            border-radius: 16px;
            font-size: 0.8rem;
        }

        /* Range Input Styling */
        input[type=range].demo-slider {
            width: 200px;
            accent-color: var(--accent-orange);
        }

        @media (max-width: 768px) {
            .custom-card {
                padding: 1.5rem !important;
            }

            .bank-grid {
                grid-template-columns: 1fr;
            }
        }



        

   
      .payment-container {
        width: 100%;
        max-width: 1400px;
        background: linear-gradient(135deg, #1a0800, #0f0500);
        border: 1px solid rgba(255, 179, 0, 0.2);
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 0 30px rgba(255, 170, 0, 0.15);
      }

      .title {
        text-align: center;
        font-size: 48px;
        font-weight: 700;
        color: #ffcc66;
        margin-bottom: 50px;
        letter-spacing: 2px;
      }

      .copy-btn {
    background: #111827;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
  }

      .upi-actions {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
      }

      .upi-pay-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 18px;
        border: 1px solid #ffcc66;
        border-radius: 10px;
        background: linear-gradient(135deg, #ff9d00, #d85a00);
        color: #140800;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .upi-pay-btn:hover,
      .upi-pay-btn:focus-visible {
        color: #140800;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 157, 0, 0.3);
      }

      .upi-help {
        display: block;
        margin-top: 14px;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.5;
      }

      .payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
        align-items: stretch;
      
      }

    .bi-copy{
    width: 16px;
    height: 16px;
    fill:rgba(255, 179, 0, 0.4);
  
    }
      .payment-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 179, 0, 0.4);
        border-radius: 24px;
        padding: 18px;
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: 0.3s ease;
    
      }

      .payment-card p {
        margin: 0 0 16px;
      }

   
      .payment-card h2 {
        font-size: 30px;
        margin-bottom: 25px;
        color: #fff;
      }

   

      .qr-box  {
        width: 260px;
        height: 260px;
        max-width: 100%;
        object-fit: contain;
        border-radius: 12px;
      }

      .qr-payment-link {
        display: inline-block;
        border-radius: 12px;
        line-height: 0;
        cursor: pointer;
      }

      .qr-payment-link:focus-visible {
        outline: 2px solid #ffcc66;
        outline-offset: 4px;
      }

      .label {
        color: #d89b1d;
        font-size: 16px;
        margin-bottom: 10px;
      }

      .upi-value {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 25px;
        word-break: break-word;
      }

      .apps {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 20px;
      }

      .app {
        padding: 10px 18px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 179, 0, 0.2);
        color: #fff;
        font-size: 15px;
      }

      .bank-section {
        margin-top: 20px;
        border: 1px solid rgba(255, 179, 0, 0.4);
        border-radius: 24px;
        padding: 35px;
        background: rgba(255, 255, 255, 0.02);
      }

      .bank-title {
        text-align: center;
        font-size: 38px;
        color: #ffcc66;
        margin-bottom: 35px;
        font-weight: 700;
      }

      .bank-grid {
        display: flex;
  flex-wrap: wrap;
  gap: 20px;
      }

      .bank-card {
        border: 1px solid rgba(255, 179, 0, 0.2);
        border-radius: 18px;
          flex: 1 1 300px;
        padding: 16px;
        background: rgba(255, 255, 255, 0.03);
      }

      .bank-card span {
        display: block;
        color: #d89b1d;
        font-size: 14px;
        margin-bottom: 10px;
      }

      .bank-card h3 {
        font-size: 24px;
        font-weight: 600;
        color: #fff;
        word-break: break-word;
      }

      .secure {
        margin-top: 40px;
        text-align: center;
        color: #ffcc66;
        font-size: 24px;
        font-weight: 600;
      }

      @media (max-width: 768px) {
        .title {
          font-size: 34px;
        }

        .payment-card h2 {
          font-size: 24px;
        }

        .upi-value {
          font-size: 28px;
        }

        .qr-box {
          width: 220px;
          height: 220px;
        }

        .bank-title {
          font-size: 30px;
        }
      }

/* =========================================================
   RESPONSIVE LAYOUT SYSTEM
   Consolidated overrides for phones, tablets and wide screens
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    min-width: 0;
    line-height: 1.6;
}

section {
    min-width: 0;
    scroll-margin-top: 86px;
}

img,
svg,
video {
    max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span {
    overflow-wrap: break-word;
}

.container,
.container-fluid,
.row,
[class*="col-"] {
    min-width: 0;
}

.navbar .container {
    gap: 0.75rem;
}

.navbar-brand {
    flex: 0 1 auto;
    min-width: 0;
    margin-right: auto;
}

.navbar-brand .h3 {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.navbar-toggler {
    flex: 0 0 auto;
    margin-right: 0 !important;
}

.hero {
    min-height: 100vh;
    min-height: 100svh;
    margin-top: 0 !important;
    padding: clamp(7.5rem, 14vh, 10rem) 0 clamp(4rem, 10vh, 7rem);
}

.hero .row {
    width: 100%;
    margin: 0;
}

.hero .col-lg-8 {
    padding-inline: 0;
}

.hero-title {
    max-width: 14ch;
    margin-inline: 0;
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
}

.hero .lead {
    max-width: 38rem !important;
    line-height: 1.65;
}

.hero .btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    white-space: normal;
    text-align: center;
}

.movie-card,
.movie-card1 {
    width: 100%;
    max-width: 46rem;
    margin-inline: auto;
}

.movie-card1 {
    max-width: 31rem;
}

.poster-img {
    width: 100%;
    min-height: 0 !important;
    max-height: min(75vh, 46rem);
    object-fit: contain;
}

.actor-badge {
    max-width: 100%;
    min-height: 2.25rem;
    margin-inline: 0;
    padding-inline: 0.75rem;
    line-height: 1.3;
    white-space: normal;
}

.director-message {
    width: 100%;
    padding: clamp(1.25rem, 4vw, 2.5rem);
}

.director-message .row {
    align-items: flex-start;
}

.director-message p {
    max-width: 75ch;
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
}

.director-box {
    margin-inline: auto;
}

.language-switch {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.payment-container {
    margin-inline: auto;
    padding: clamp(1rem, 4vw, 2.5rem);
    border-radius: clamp(1rem, 3vw, 1.5rem);
}

.payment-container .title {
    margin-bottom: clamp(1.5rem, 5vw, 3rem);
    font-size: clamp(1.6rem, 5vw, 3rem);
    line-height: 1.2;
}

.payment-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
    gap: clamp(1rem, 3vw, 1.875rem);
}

.payment-card,
.bank-section,
.bank-card {
    min-width: 0;
}

.payment-card {
    padding: clamp(1rem, 3vw, 1.5rem);
}

.qr-box {
    width: min(16.25rem, 100%);
    height: auto;
    aspect-ratio: 1;
}

.upi-value,
.bank-card h5 {
    overflow-wrap: anywhere;
    word-break: normal;
}

.upi-value {
    font-size: clamp(1.1rem, 4vw, 1.625rem);
}

.bank-section {
    padding: clamp(1rem, 4vw, 2.25rem);
}

.bank-title {
    margin-bottom: clamp(1.25rem, 4vw, 2.2rem);
    font-size: clamp(1.5rem, 5vw, 2.375rem);
    line-height: 1.2;
}

.bank-grid {
    align-items: stretch;
    gap: clamp(0.75rem, 3vw, 1.25rem);
}

.bank-card {
    flex: 1 1 min(100%, 18.75rem);
}

.team-member {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
}

.team-member img {
    display: block;
    width: min(100%, 260px);
    height: auto;
    margin-inline: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

#team .team-member:first-child img {
    object-position: center top;
}

.team-member h5 {
    display: flex;
    min-height: 2.6rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem !important;
    line-height: 1.3;
}

.team-member p {
    min-height: 2.5rem;
    margin-bottom: 0;
    line-height: 1.35;
}

.team-member h5,
.team-member p {
    overflow-wrap: anywhere;
}

#contact .row {
    row-gap: 2rem;
}

#contact .d-flex {
    gap: 0.75rem 1.5rem;
}

#contact a {
    overflow-wrap: anywhere;
}

@media (min-width: 1200px) {
    .hero .container {
        max-width: 1180px;
    }

    .actor-img {
        max-width: 145px;
        height: 170px;
    }
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 74px;
    }

    section {
        scroll-margin-top: 74px;
    }

    .navbar {
        padding-block: 0.7rem;
    }

    .navbar .container {
        justify-content: flex-start;
    }

    .navbar-brand {
        order: 1;
    }

    .navbar-toggler {
        order: 2;
        margin-left: auto;
    }

    .navbar-collapse {
        order: 3;
        flex-basis: 100%;
        width: 100%;
        padding-top: 0.65rem;
    }

    .navbar-nav {
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }

    .nav-link {
        padding: 0.7rem 0.25rem !important;
    }

    .nav-link::after {
        bottom: 0;
        transform-origin: center;
    }

    .hero {
        background-position: 62% center;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.45));
        pointer-events: none;
    }

    .hero .col-lg-8 {
        max-width: 42rem;
    }

    .director-message .row {
        display: flex;
    }

    .director-box {
        float: none;
        width: 100%;
        margin: 0 auto 1.5rem;
    }

    .director-img {
        width: min(13rem, 70vw);
        max-width: 100%;
    }

    .director-message p {
        font-size: 1rem;
    }

    .fiery-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 767.98px) {
    .container {
        --bs-gutter-x: 1.5rem;
    }

    section.py-5,
    section .container.py-5,
    footer.py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    #about {
        margin-top: 0 !important;
    }

    h1,
    h2,
    h3 {
        letter-spacing: 0.08em;
    }

    .display-5,
    .display-6 {
        font-size: clamp(1.65rem, 8vw, 2.4rem);
        line-height: 1.2;
    }

    .hero {
        min-height: 42rem;
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .hero-title {
        max-width: 12ch;
        font-size: clamp(1.85rem, 10vw, 3rem);
    }

    .hero .lead {
        margin-bottom: 2rem !important;
        font-size: 1rem !important;
        line-height: 1.6;
    }

    .hero .lead br {
        display: none;
    }

    .hero .d-flex {
        width: 100%;
        align-items: stretch;
    }

    .hero .btn {
        width: 100%;
        max-width: 24rem;
        margin-inline: auto;
        padding: 0.8rem 1rem !important;
        font-size: 0.95rem;
    }

    .movie-card2 {
        padding: 1.25rem;
    }

    .actor-img {
        height: clamp(8rem, 38vw, 10rem);
        max-width: 100%;
    }

    .actor-badge {
        width: 100%;
        font-size: 0.8rem;
    }

    .payment-container {
        border-radius: 1rem;
    }

    .payment-card,
    .bank-section,
    .bank-card {
        border-radius: 0.9rem;
    }

    .bank-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bank-card h5 {
        font-size: 1rem;
    }

    .team-member {
        padding: 0.75rem;
    }

    .team-member h5 {
        font-size: 0.95rem;
    }

    #contact,
    #contact .col-lg-6,
    #contact .col-lg-5 {
        text-align: center;
    }

    #contact .d-flex {
        flex-direction: column;
        justify-content: center !important;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        max-width: 100%;
        font-size: 1.8rem;
        letter-spacing: 0.04em;
    }

    .hero .lead {
        max-width: 22rem !important;
    }

    .hero .d-flex {
        align-items: flex-start;
    }

    .hero .btn {
        width: min(100%, 20rem);
        margin-inline: 0;
    }
}

@media (max-width: 479.98px) {
    .navbar-brand .h3 {
        font-size: 1.08rem;
    }

    .navbar-toggler {
        padding: 0.3rem 0.5rem;
    }

    .hero {
        background-position: 58% center;
    }

    .hero-title {
        font-size: clamp(1.55rem, 8.2vw, 1.8rem);
        letter-spacing: 0.03em;
    }

    .hero h4 {
        font-size: 0.8rem !important;
        letter-spacing: 0.18em !important;
        line-height: 1.5;
    }

    .movie-card2,
    .director-message,
    .payment-container {
        padding: 1rem;
    }

    .director-img {
        width: min(10rem, 65vw);
    }

    .director-message p {
        font-size: 0.95rem;
    }

    .payment-grid {
        margin-bottom: 1.25rem;
    }

    .qr-box {
        width: min(13.5rem, 100%);
    }

    .team-member img {
        aspect-ratio: 1 / 1;
    }

    #contact a,
    #contact p {
        font-size: 0.95rem !important;
    }
}

@media (max-height: 560px) and (orientation: landscape) {
    .hero {
        min-height: 36rem;
        align-items: flex-start;
        padding-top: 6.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (hover: none) {
    .hero-video {
        display: none;
    }
}

/* The Vision: consistent poster framing and column alignment */
#film .vision-layout {
    align-items: center;
    row-gap: 2.5rem;
}

#film .vision-poster-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

#film .movie-card1 {
    width: min(100%, 390px);
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid rgba(255, 157, 0, 0.45);
    border-radius: 18px;
    background: #080402;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55), 0 0 22px rgba(255, 157, 0, 0.12);
}

#film .movie-card1 .poster-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: none;
    mask-image: none;
}

#film .overlay-film {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    margin-top: 0 !important;
    padding: 5rem 1rem 1.1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.94));
    pointer-events: none;
}

#film .overlay-film h3,
#film .overlay-film p {
    margin-inline: auto;
}

#film .vision-content {
    min-width: 0;
    padding-left: clamp(1rem, 4vw, 3rem);
}

#film .vision-content > h2 {
    margin-top: 0;
}

#film .vision-content > p {
    max-width: 65ch;
    line-height: 1.7;
}

#film .vision-content .row {
    align-items: stretch;
}

#film .vision-content .col-6 {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 991.98px) {
    #film .vision-layout {
        row-gap: 2rem;
    }

    #film .movie-card1 {
        width: min(100%, 350px);
    }

    #film .vision-content {
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    #film .vision-content > h2 {
        text-align: center;
    }

    #film .vision-content > p {
        margin-inline: auto;
    }
}

@media (max-width: 575.98px) {
    #film .vision-layout {
        row-gap: 1.75rem;
    }

    #film .movie-card1 {
        width: min(100%, 310px);
        border-radius: 14px;
    }

    #film .overlay-film {
        padding: 4rem 0.75rem 0.8rem;
    }

    #film .overlay-film h3 {
        font-size: 1.05rem;
    }

    #film .vision-content > p {
        font-size: 1rem !important;
        text-align: left;
    }
}

/* Cast and crew profile cards */
#film .cast-grid {
    margin-top: 1.25rem;
}

#film .cast-grid > h5 {
    text-align: left;
    letter-spacing: 0.08em;
}

#film .cast-member {
    display: flex;
    min-width: 0;
}

#film .cast-card {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    padding: 0.55rem;
    overflow: hidden;
    border: 1px solid rgba(255, 157, 0, 0.35);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255, 157, 0, 0.1), rgba(8, 4, 2, 0.94) 48%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

#film .cast-card::before {
    content: "";
    position: absolute;
    inset: 0.55rem 0.55rem auto;
    z-index: 2;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--fire-gold), transparent);
    pointer-events: none;
}

#film .cast-photo {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 11px;
    aspect-ratio: 4 / 5;
    background: #100804;
}

#film .cast-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 30%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
    pointer-events: none;
}

#film .cast-photo .actor-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

#film .cast-card--santosh .actor-img,
#film .cast-card--sathya .actor-img {
    object-position: center top;
}

#film .cast-card--logo .cast-photo {
    background: #fff;
}

#film .cast-card--logo .actor-img {
    padding: 0.65rem;
    object-fit: contain;
}

#film .cast-card--logo .cast-photo::after {
    display: none;
}

#film .cast-card .actor-badge {
    display: flex;
    width: 100%;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.75rem 0.35rem 0.35rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 0.86rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

#film .cast-card .actor-badge:hover {
    background: transparent;
    color: #fff;
}

@media (hover: hover) {
    #film .cast-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 157, 0, 0.75);
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 157, 0, 0.12);
    }

    #film .cast-card:hover .actor-img {
        transform: scale(1.035);
    }
}

@media (max-width: 575.98px) {
    #film .cast-grid {
        --bs-gutter-x: 0.85rem;
        --bs-gutter-y: 0.85rem;
    }

    #film .cast-grid > h5 {
        text-align: center;
    }

    #film .cast-card {
        padding: 0.4rem;
        border-radius: 13px;
    }

    #film .cast-card::before {
        inset: 0.4rem 0.4rem auto;
    }

    #film .cast-photo {
        border-radius: 9px;
    }

    #film .cast-card .actor-badge {
        min-height: 3rem;
        padding-top: 0.6rem;
        font-size: 0.76rem;
    }
}
