/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --black: #050505;
    --black-soft: #0b0b0b;
    --gold: #d9a62e;
    --gold-light: #f5cf67;
    --gold-dark: #9d6d13;
    --white: #ffffff;
    --muted: #aaa9a5;
    --border: rgba(218, 166, 46, 0.35);
}

body {
    font-family: "Inter", sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.section-dark {
    background: #050505;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    border-bottom: 1px solid rgba(218, 166, 46, 0.18);
    backdrop-filter: blur(15px);
}

.navbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 30px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block;
    width: auto;
    height: 100px;
    object-fit: contain;
}

/* NAV */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
}

.nav-link {
    position: relative;
    height: 76px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: #e6e6e6;
    transition: 0.3s;
}

.nav-link i {
    font-size: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 13px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}


/* DROPDOWN */

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 69px;
    left: 50%;
    transform: translate(-50%, 15px);
    width: 190px;
    padding: 10px;
    background: rgba(8, 8, 8, 0.98);
    border: 1px solid var(--border);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s;
}

.dropdown-menu a:last-child {
    border-bottom: 0;
}

.dropdown-menu a:hover {
    background: rgba(218, 166, 46, 0.08);
}

.dropdown-menu i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.dropdown-menu span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dropdown-menu strong {
    font-size: 12px;
    font-weight: 500;
}

.dropdown-menu small {
    color: #777;
    font-size: 9px;
}


/* NOTIFY */

.notify-btn {
    border: 1px solid var(--gold-dark);
    color: var(--gold-light);
    padding: 12px 17px;
    font-size: 10px;
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: 0.3s;
}

.notify-btn:hover {
    background: var(--gold);
    color: #000;
}


/* MOBILE BUTTON */

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    background: var(--gold);
    margin: 5px 0;
}

/* =========================================
   HERO SECTION - FINAL REFERENCE STYLE
========================================= */

.hero {
    position: relative;
    min-height: calc(100vh - 76px);
    height: calc(100vh - 76px);

    overflow: hidden;
    height: 945px;
    background: #000;
}

/* =========================================
   BLACK → GOLD GRADIENT
========================================= */

.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            #000000 0%,
            #000000 27%,
            rgba(0, 0, 0, .98) 38%,
            rgba(0, 0, 0, .75) 50%,
            rgba(0, 0, 0, .35) 65%,
            rgba(0, 0, 0, .08) 82%,
            rgba(0, 0, 0, 0) 100%);

    z-index: 2;

    pointer-events: none;
}

/* =========================================
   HERO TROPHY
========================================= */

.iba-about-hero-visual img {
    transition:
        transform 0.8s cubic-bezier(.2, .8, .2, 1),
        filter 0.6s ease;
}

.iba-about-hero:hover .iba-about-hero-visual img {
    transform: scale(1.04) translateY(-5px);

    filter:
        drop-shadow(0 0 45px rgba(201, 151, 46, .32)) drop-shadow(0 30px 50px rgba(0, 0, 0, .8));
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 68%;
    height: 100%;
    background-image: url("images/DARBHANGA_EVENT.png");
    background-repeat: no-repeat;
    background-size: 95%;
    background-position: center center;
    z-index: 1;

    /* Add this new animation line */
    animation: floatTrophy 6s ease-in-out infinite;
}

/* Keyframes for the floating effect */
@keyframes floatTrophy {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-content {
    width: 50%;
    position: relative;
    z-index: 10;

    /* Add this new animation line */
    animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Keyframes for the text reveal */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.rotating-trophy {
    position: absolute;
    right: 8%;
    top: 50%;
    width: 250px;
    height: 250px;

    transform: translateY(-50%);
    perspective: 1200px;

    z-index: 5;
    pointer-events: none;
}

.rotating-trophy img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    transform-style: preserve-3d;

    animation: trophyRotate 10s linear infinite;

    filter:
        drop-shadow(0 20px 30px rgba(0, 0, 0, .8)) drop-shadow(0 0 25px rgba(255, 190, 50, .35));
}

@keyframes trophyRotate {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

/* ===== HERO TEXT FIX ===== */

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1140px;
    height: 100%;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 10;

    width: 55%;
    max-width: 600px;

    margin: 0;
    padding: 0;
}

/* Heading ko left mein properly rakho */
.hero-content h1 {
    margin-left: 0;
    text-align: left;
}

/* Trophy alag layer mein rahe */
.rotating-trophy {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

/* Mobile */
@media (max-width: 900px) {

    .hero-container {
        padding: 0 25px;
    }

    .hero-content {
        width: 55%;
    }

    .rotating-trophy {
        right: -80px;
        width: 380px;
    }
}

/* =========================================
   3D TROPHY + MOVING LIGHT
========================================= */

.rotating-trophy {
    position: absolute;
    right: 8%;
    top: 50%;

    width: 430px;
    height: 650px;

    transform: translateY(-50%);
    perspective: 1200px;

    z-index: 5;
    pointer-events: none;
}

/* Trophy */
.rotating-trophy img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transform-style: preserve-3d;

    animation: trophyRotate 10s linear infinite;

    filter:
        drop-shadow(0 20px 30px rgba(0, 0, 0, .8)) drop-shadow(0 0 25px rgba(255, 190, 50, .30));
}


/* Moving golden light */
.rotating-trophy::after {
    content: "";

    position: absolute;

    z-index: 3;

    top: 5%;
    left: -20%;

    width: 35%;
    height: 90%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .05),
            rgba(255, 215, 100, .55),
            rgba(255, 255, 255, .12),
            transparent);

    filter: blur(14px);

    transform: skewX(-15deg);

    animation: trophyLight 3s ease-in-out infinite;

    pointer-events: none;
}


/* Trophy rotation */
@keyframes trophyRotate {

    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }

}


/* Light travelling across trophy */
@keyframes trophyLight {

    0% {
        left: -35%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        left: 100%;
        opacity: 1;
    }

    70% {
        left: 120%;
        opacity: 0;
    }

    100% {
        left: 120%;
        opacity: 0;
    }

}

/* =========================================
   HERO CONTENT
========================================= */

.hero-container {
    position: relative;

    z-index: 10;

    width: min(1250px, 92%);
    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;
}


.hero-content {
    width: 50%;

    position: relative;

    z-index: 10;
}

/* =========================================
   PRESENTED BY
========================================= */

.presented-by {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 35px;

    color: #e6ad2c;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 2px;
}

.presented-by span {
    display: block;

    width: 48px;
    height: 1px;

    background: #dca51f;
}


/* =========================================
   MAIN TITLE
========================================= */

.hero h1 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(68px, 4vw, 100px);

    line-height: 0.84;

    font-weight: 450;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    color: #f5f5f5;
}

.hero h1 strong {
    display: block;

    color: #eab333;

    font-weight: 450;
}


/* =========================================
   IBA 2026
========================================= */

.iba-year {
    display: inline-block;

    margin-top: 22px;

    padding: 7px 25px;

    border: 1px solid #dca51f;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;

    letter-spacing: 6px;
}


/* =========================================
   SUBTITLE
========================================= */

.hero-subtitle {
    margin: 12px 0 22px;

    color: #eeeeee;

    font-size: 17px;
}


/* =========================================
   RECOGNIZE / INSPIRE / LEAD
========================================= */

.hero-values {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-bottom: 24px;
}

.value {
    display: flex;
    align-items: center;

    gap: 9px;
}

.value-icon {
    font-size: 22px;
}

.value b {
    display: block;

    color: #eab52b;

    font-size: 11px;
}

.value small {
    display: block;

    color: #ccc;

    font-size: 10px;
}


/* =========================================
   COMING SOON
========================================= */

.coming-soon {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 18px;

    color: #e9b531;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;

    letter-spacing: 2px;
}

.coming-soon span {
    width: 38px;
    height: 1px;

    background: #dca51f;
}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-buttons a {
    height: 43px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    text-decoration: none;

    font-size: 11px;

    transition: 0.3s ease;
}

.btn-primary {
    background: #e7ad28;
    color: #000;
}

.btn-outline {
    border: 1px solid #dba41d;
    color: #fff;
}

.hero-buttons a:hover {
    transform: translateY(-2px);
}

/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    margin-bottom: 45px;
}

.section-heading.center {
    text-align: center;
}

.eyebrow {
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 4vw, 55px);
    line-height: 0.95;
    margin-top: 10px;
    font-weight: 500;
}

.section-heading h2 span {
    color: var(--gold-light);
}

.section-heading p {
    max-width: 600px;
    margin: 15px auto 0;
    color: #999;
    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   WHY IBA
===================================================== */

.why-iba {
    padding: 40px 0;
    border-top: 1px solid rgba(218, 166, 46, 0.15);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.benefit-card {
    min-height: 140px;
    border: 1px solid var(--border);
    padding: 24px 18px;
    display: flex;
    gap: 17px;
    background: linear-gradient(145deg, #0d0d0d, #050505);
    transition: 0.35s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.benefit-icon {
    font-size: 27px;
    color: var(--gold);
}

.benefit-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    margin-bottom: 7px;
}

.benefit-card p {
    color: #888;
    font-size: 10px;
    line-height: 1.7;
}


/* =====================================================
   ABOUT
===================================================== */

.about-iba {
    padding: 90px 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(185, 125, 22, 0.08), transparent 30%),
        #080808;
    border-top: 1px solid rgba(218, 166, 46, 0.15);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.9fr 0.42fr;
    gap: 35px;
    align-items: center;
}

/* 1. Main box */
.about-image {
    height: 380px;
    position: relative;
    cursor: pointer;
    /* Hover karne par mouse point ban jayega */
}

/* 2. Inner border jiske andar image zoom hogi */
.about-image-inner {
    height: 100%;

    padding: 9px;
    overflow: hidden;
    /* DHYAAN DEIN: Ye image ko border ke bahar nahi jane dega */
}

/* 3. Aapki background image aur center text ki setting */
.stage-placeholder {
    height: 100%;
    width: 100%;
    position: relative;
    background: url('images/img+video.jpeg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* Hover animation ko smooth banane ke liye ye zaroori hai */
    transition: transform 0.6s ease, filter 0.6s ease;
}

/* 4. Andar wala patla border effect */
.stage-placeholder::before {
    content: "";
    position: absolute;
    inset: 20px;

    pointer-events: none;
    z-index: 10;
    /* Taki border hamesha image ke upar dikhe */
}

/* 5. HOVER EFFECT (Jab mouse box par jayega) */
.about-image:hover .stage-placeholder {
    transform: scale(1.08);
    /* Image halke se zoom hogi */
    filter: brightness(1.2);
    /* Image thodi chamkegi */
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    transition: 0.3s;
}

.play-button:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.about-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: 0.95;
    font-weight: 500;
    margin: 12px 0 22px;
}

.about-content h2 span {
    color: var(--gold-light);
    display: block;
}

.about-content p {
    color: #999;
    font-size: 12px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.about-content .btn {
    margin-top: 10px;
}

.about-features {
    border: 1px solid var(--border);
    padding: 5px 18px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px 0;
    border-bottom: 1px solid rgba(218, 166, 46, 0.18);
}

.about-feature:last-child {
    border-bottom: 0;
}

.about-feature i {
    color: var(--gold);
    font-size: 24px;
    width: 35px;
    text-align: center;
}

.about-feature span {
    font-size: 10px;
    color: #ddd;
}


/* =====================================================
   STATISTICS
===================================================== */

.statistics {
    padding: 30px 0;
    border-top: 1px solid rgba(218, 166, 46, 0.3);
    border-bottom: 1px solid rgba(218, 166, 46, 0.3);
    background: #0b0b0b;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 5px 15px;
    border-right: 1px solid rgba(218, 166, 46, 0.25);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-icon {
    font-size: 27px;
    color: var(--gold);
}

.stat-item strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    font-weight: 500;
    color: var(--gold-light);
}

.stat-item>div:last-child>span {
    color: var(--gold-light);
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
}

.stat-item p {
    color: #ccc;
    font-size: 9px;
    margin-top: -3px;
}



/* =====================================================
   CATEGORIES
===================================================== */

.categories {
    padding: 85px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.category-card {
    min-height: 150px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(145deg, #101010, #050505);
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background: linear-gradient(145deg, #171207, #080808);
}

.category-icon {
    font-size: 25px;
    color: var(--gold);
    margin-bottom: 15px;
}

.category-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.05;
}

.category-arrow {
    position: absolute;
    right: 8px;
    bottom: 7px;
    font-size: 8px;
    color: #777;
}

.center-button {
    text-align: center;
    margin-top: 25px;
}


/* =====================================================
   NOTIFICATION
===================================================== */

.notify-section {
    position: relative;
    padding: 45px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 50%, rgba(211, 153, 28, 0.15), transparent 30%),
        linear-gradient(90deg, #100c04, #050505, #100c04);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.notify-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.notify-icon {
    width: 105px;
    height: 105px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 37px;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(218, 166, 46, 0.15);
}

.notify-content {
    flex: 1;
}

.notify-content>span {
    color: var(--gold-light);
    font-size: 14px;
}

.notify-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    line-height: 0.9;
    margin: 5px 0;
}

.notify-content h2 strong {
    color: var(--gold-light);
}

.notify-content p {
    color: #999;
    font-size: 10px;
}

.notify-form {
    width: 410px;
    display: flex;
}

.notify-form input {
    flex: 1;
    background: #111;
    border: 1px solid #333;
    color: white;
    padding: 15px;
    outline: none;
    font-size: 11px;
}

.notify-form button {
    border: 0;
    padding: 0 22px;
    background: linear-gradient(135deg, #e7b945, #c98c1c);
    cursor: pointer;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* =====================================================
   PREVIOUS EVENTS
===================================================== */

.previous-events {
    padding: 60px 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.event-card {
    border: 1px solid var(--border);
    background: #080808;
    transition: 0.3s;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.event-image {
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle, rgba(218, 166, 46, 0.25), transparent 35%),
        linear-gradient(135deg, #151005, #030303);
    position: relative;
}

.event-image::before {
    content: "";
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(218, 166, 46, 0.2);
}

.event-image span {
    position: relative;
    z-index: 2;
    color: var(--gold-light);
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
}

.event-info {
    padding: 13px;
    text-align: center;
}

.event-info h3 {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 500;
}

.event-info p {
    color: var(--gold-light);
    font-size: 9px;
    margin-top: 6px;
}

.view-events-card {
    border: 1px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--gold-light);
    transition: 0.3s;
}

.view-events-card:hover {
    background: rgba(218, 166, 46, 0.08);
}

.view-events-card span {
    font-size: 11px;
}

.view-events-card strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
}

.view-events-card i {
    margin-top: 15px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #050505;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr 1.2fr;
    gap: 40px;
    padding: 50px 0 35px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-logo img {
    display: block;
    width: auto;
    height: 58px;
    max-width: 190px;
    object-fit: contain;
}

.footer-brand p {
    color: #888;
    font-size: 9px;
    line-height: 1.8;
    max-width: 250px;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.social-links a {
    width: 28px;
    height: 28px;
    border: 1px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #bbb;
    transition: 0.3s;
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    color: #eee;
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.footer-column a,
.footer-column p {
    color: #888;
    font-size: 9px;
    transition: 0.3s;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-column a i {
    width: 18px;
    color: var(--gold);
}

.newsletter form {
    display: flex;
    margin-top: 7px;
}

.newsletter input {
    width: 100%;
    min-width: 0;
    background: #111;
    border: 1px solid #333;
    padding: 11px;
    color: #fff;
    font-size: 9px;
    outline: none;
}

.newsletter button {
    width: 40px;
    border: 0;
    background: var(--gold);
    cursor: pointer;
}


/* COPYRIGHT */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
    color: #666;
    font-size: 8px;
}

.footer-bottom-inner>div {
    display: flex;
    gap: 10px;
}

.footer-bottom a:hover {
    color: var(--gold);
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    display: none;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 9px;
    }

    .notify-btn {
        padding: 10px;
        font-size: 8px;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .view-events-card {
        min-height: 180px;
    }
}


@media (max-width: 900px) {

    .nav-menu,
    .notify-btn {
        display: none;
    }

    .navbar {
        justify-content: space-between;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: #080808;
        border-top: 1px solid var(--border);
        padding: 10px 5%;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu>a,
    .mobile-dropdown>button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 5px;
        background: transparent;
        border: 0;
        border-bottom: 1px solid #222;
        color: #ddd;
        font-size: 11px;
        text-align: left;
    }

    .mobile-dropdown>button {
        cursor: pointer;
    }

    .mobile-submenu {
        display: none;
        padding-left: 15px;
    }

    .mobile-dropdown.open .mobile-submenu {
        display: block;
    }

    .mobile-submenu a {
        display: block;
        padding: 12px;
        color: #999;
        border-bottom: 1px solid #1b1b1b;
        font-size: 10px;
    }

    .mobile-notify {
        margin: 15px 0;
        justify-content: center !important;
        background: var(--gold) !important;
        color: #000 !important;
    }


    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-bottom: 70px;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-trophy {
        display: none;
    }


    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }


    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat-item {
        border-right: 0;
    }


    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .container {
        width: 90%;
    }

    .hero h1 {
        font-size: 60px;
    }

    .presented-by {
        font-size: 8px;
    }

    .hero-tagline {
        font-size: 13px;
    }

    .hero-highlights {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 220px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .notify-container {
        flex-direction: column;
        text-align: center;
    }

    .notify-form {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
    }
}

/* =========================================================
   IBA ABOUT PAGE
   Matches Existing Index Design System
========================================================= */

.iba-about-page {
    background: var(--black);
    color: var(--white);
    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.iba-about-page .container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.iba-about-section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--gold);

    font-family: var(--font-sans);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.iba-about-section-label::before {
    content: "";

    width: 34px;
    height: 1px;

    background: var(--gold);
}


/* =========================================================
   HERO
========================================================= */

.iba-about-hero {
    min-height: calc(100vh - 75px);

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        radial-gradient(circle at 78% 48%,
            rgba(201, 151, 46, .15),
            transparent 32%),
        #050505;
}

.iba-about-hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            #050505 0%,
            rgba(5, 5, 5, .98) 25%,
            rgba(5, 5, 5, .75) 47%,
            rgba(5, 5, 5, .20) 75%,
            rgba(5, 5, 5, 0) 100%);

    z-index: 2;
}

.iba-about-hero .container {
    position: relative;
    z-index: 5;
}

.iba-about-hero-content {
    width: 54%;

    padding: 90px 0;
}

.iba-about-eyebrow {
    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}

.iba-about-hero h1 {
    max-width: 700px;

    margin: 20px 0;

    font-family: var(--font-serif);

    font-size: clamp(60px, 7vw, 100px);

    font-weight: 400;

    line-height: .88;

    letter-spacing: -3px;
}

.iba-about-hero h1 span {
    display: block;

    color: var(--gold);
}

.iba-about-hero p {
    max-width: 560px;

    color: var(--muted);

    font-family: var(--font-sans);

    font-size: 15px;

    line-height: 1.9;
}

.iba-about-hero-actions {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-top: 32px;
}

.iba-about-text-btn {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: var(--white);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-decoration: none;

    transition: .3s;
}

.iba-about-text-btn i {
    color: var(--gold);
}

.iba-about-text-btn:hover {
    color: var(--gold);
}


/* HERO TROPHY */

.iba-about-hero-visual {
    position: absolute;

    right: -5%;
    top: 50%;

    width: 53%;
    height: 90%;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1;
}

.iba-about-hero-visual img {
    width: 90%;
    height: 90%;

    object-fit: contain;

    filter:
        drop-shadow(0 0 35px rgba(201, 151, 46, .20)) drop-shadow(0 25px 45px rgba(0, 0, 0, .7));
}


.iba-about-visual-label {
    position: absolute;

    right: 12%;
    bottom: 13%;

    width: 82px;
    height: 82px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--gold);

    color: var(--black);
}

.iba-about-visual-label span {
    font-family: var(--font-serif);

    font-size: 25px;
}

.iba-about-visual-label small {
    font-size: 8px;

    letter-spacing: 2px;
}

.iba-about-scroll {
    position: absolute;

    left: 5%;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #777;

    font-size: 8px;

    letter-spacing: 2px;

    z-index: 6;
}

.iba-about-scroll span {
    width: 35px;
    height: 1px;

    background: var(--gold);
}


/* =========================================================
   STORY
========================================================= */

.iba-about-story {
    padding: 125px 0;

    background: #080808;
}

.iba-about-story-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.iba-about-story-image {
    position: relative;

    height: 550px;
}

.iba-about-story-image img {
    width: 92%;
    height: 92%;

    object-fit: cover;

    position: relative;

    z-index: 2;
}

.iba-about-image-tag {
    position: absolute;

    right: 0;
    bottom: 25px;

    width: 120px;
    height: 90px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 20px;

    background: var(--gold);

    color: var(--black);

    z-index: 4;
}

.iba-about-image-tag strong {
    font-family: var(--font-serif);

    font-size: 35px;

    line-height: 1;
}

.iba-about-image-tag span {
    margin-top: 5px;

    font-size: 8px;

    letter-spacing: 2px;
}

.iba-about-story-content h2 {
    margin: 20px 0;

    font-family: var(--font-serif);

    font-size: clamp(45px, 5vw, 68px);

    font-weight: 400;

    line-height: .95;
}

.iba-about-story-content h2 span {
    color: var(--gold);
}

.iba-about-story-content>p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}

.iba-about-quote {
    display: flex;

    gap: 15px;

    margin-top: 30px;
}

.iba-about-quote>span {
    color: var(--gold);

    font-family: var(--font-serif);

    font-size: 55px;

    line-height: .6;
}

.iba-about-quote p {
    max-width: 500px;

    margin: 0;

    color: var(--gold-light);

    font-family: var(--font-serif);

    font-size: 19px;

    line-height: 1.5;
}


/* =========================================================
   NUMBERS
========================================================= */

.iba-about-numbers {
    padding: 55px 0;

    background: #0b0b0b;

    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.iba-about-numbers-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.iba-about-number {
    text-align: center;

    padding: 10px 25px;

    border-right: 1px solid rgba(255, 255, 255, .08);
}

.iba-about-number:last-child {
    border-right: 0;
}

.iba-about-number strong {
    font-family: var(--font-serif);

    font-size: 48px;

    font-weight: 400;

    color: var(--gold);
}

.iba-about-number strong span {
    font-size: 25px;
}

.iba-about-number p {
    margin: 5px 0 0;

    color: var(--muted);

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   PILLARS
========================================================= */

.iba-about-pillars {
    padding: 130px 0;
}

.iba-about-heading {
    max-width: 700px;

    margin-bottom: 60px;
}

.iba-about-heading h2 {
    margin: 18px 0;

    font-family: var(--font-serif);

    font-size: clamp(45px, 5vw, 70px);

    font-weight: 400;

    line-height: .95;
}

.iba-about-heading h2 span {
    color: var(--gold);
}

.iba-about-heading p {
    max-width: 600px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}

.iba-about-pillar-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

.iba-about-pillar-card {
    position: relative;

    min-height: 330px;

    padding: 28px;

    background: #0b0b0b;

    border: 1px solid rgba(255, 255, 255, .07);

    transition: .35s ease;
}

.iba-about-pillar-card:hover,
.iba-about-pillar-card.active {
    transform: translateY(-7px);

    border-color: rgba(201, 151, 46, .45);

    background:
        linear-gradient(145deg,
            #171207,
            #0b0b0b);
}

.iba-about-pillar-top {
    display: flex;

    justify-content: space-between;

    color: #555;

    font-size: 10px;
}

.iba-about-pillar-top i {
    color: var(--gold);

    font-size: 18px;
}

.iba-about-pillar-card h3 {
    margin: 55px 0 15px;

    font-family: var(--font-serif);

    font-size: 28px;

    font-weight: 400;
}

.iba-about-pillar-card p {
    color: #858585;

    font-size: 12px;

    line-height: 1.8;
}

.iba-about-pillar-card a {
    position: absolute;

    left: 28px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-decoration: none;
}


/* =========================================================
   VISION
========================================================= */

.iba-about-vision {
    padding: 130px 0;

    background:
        radial-gradient(circle at 80% 50%,
            rgba(201, 151, 46, .09),
            transparent 30%),
        #080808;
}

.iba-about-vision-grid {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 100px;

    align-items: center;
}

.iba-about-vision-content h2 {
    max-width: 650px;

    margin: 20px 0;

    font-family: var(--font-serif);

    font-size: clamp(45px, 5vw, 70px);

    font-weight: 400;

    line-height: .95;
}

.iba-about-vision-content h2 span {
    color: var(--gold);
}

.iba-about-vision-content>p {
    max-width: 600px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}

.iba-about-vision-line {
    width: 70px;
    height: 2px;

    margin-top: 30px;

    background: var(--gold);
}

.iba-about-mission-card {
    padding: 50px;

    background:
        linear-gradient(145deg,
            #1b1509,
            #0a0a0a);

    border: 1px solid rgba(201, 151, 46, .28);

    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.iba-about-mission-label {
    color: var(--gold);

    font-size: 9px;

    letter-spacing: 3px;
}

.iba-about-mission-icon {
    margin: 40px 0 20px;

    color: var(--gold);

    font-size: 30px;
}

.iba-about-mission-card h3 {
    margin: 0 0 18px;

    font-family: var(--font-serif);

    font-size: 36px;

    font-weight: 400;

    line-height: 1.05;
}

.iba-about-mission-card p {
    color: #888;

    font-size: 13px;

    line-height: 1.8;
}

.iba-about-mission-footer {
    display: flex;

    justify-content: space-between;

    margin-top: 35px;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, .07);

    color: #555;

    font-size: 8px;

    letter-spacing: 2px;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.iba-about-experience {
    min-height: 620px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.iba-about-experience-image {
    position: absolute;
    inset: 0;
}

.iba-about-experience-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.iba-about-experience-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .98) 0%,
            rgba(0, 0, 0, .85) 35%,
            rgba(0, 0, 0, .40) 70%,
            rgba(0, 0, 0, .15) 100%);
}

.iba-about-experience .container {
    position: relative;

    z-index: 2;
}

.iba-about-experience-content {
    max-width: 620px;
}

.iba-about-experience-content h2 {
    margin: 20px 0;

    font-family: var(--font-serif);

    font-size: clamp(48px, 5vw, 75px);

    font-weight: 400;

    line-height: .92;
}

.iba-about-experience-content h2 span {
    color: var(--gold);
}

.iba-about-experience-content>p {
    max-width: 500px;

    color: #aaa;

    font-size: 14px;

    line-height: 1.8;
}

.iba-about-experience-list {
    display: grid;

    grid-template-columns: repeat(2, 250px);

    gap: 18px;

    margin-top: 35px;
}

.iba-about-experience-list div {
    display: flex;
    align-items: center;

    gap: 12px;
}

.iba-about-experience-list span {
    color: var(--gold);

    font-size: 9px;
}

.iba-about-experience-list b {
    font-size: 11px;

    font-weight: 500;
}



/* =========================================================
   CTA
========================================================= */

.iba-about-cta {
    min-height: 500px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    /* Background with radial gradient, dark overlay & image */
    background:
        radial-gradient(circle,
            rgba(201, 151, 46, .13),
            transparent 45%),
        linear-gradient(rgba(5, 5, 5, 0.75), rgba(5, 5, 5, 0.75)),
        url('') no-repeat center center / cover;
}

.iba-about-cta-content {
    position: relative;
    z-index: 2;
}

.iba-about-cta-content .iba-about-section-label::before {
    display: none;
}

.iba-about-cta-content h2 {
    margin: 18px 0 5px;

    font-family: var(--font-serif);

    font-size: clamp(50px, 6vw, 82px);

    font-weight: 400;

    line-height: .9;
}

.iba-about-cta-content h2 span {
    color: var(--gold);
}

.iba-about-cta-content p {
    margin: 0 0 28px;

    color: var(--muted);

    font-size: 17px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .iba-about-hero {
        min-height: 760px;
    }

    .iba-about-hero-content {
        width: 65%;

        padding-top: 100px;
    }

    .iba-about-hero-visual {
        width: 65%;

        right: -15%;

        opacity: .45;
    }

    .iba-about-story-grid,
    .iba-about-vision-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .iba-about-pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .iba-about-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

    .iba-about-number:nth-child(2) {
        border-right: 0;
    }

}


@media (max-width: 600px) {

    .iba-about-hero {
        min-height: 780px;
    }

    .iba-about-hero-content {
        width: 100%;

        padding-top: 70px;
    }

    .iba-about-hero h1 {
        font-size: 57px;

        letter-spacing: -2px;
    }

    .iba-about-hero p {
        font-size: 13px;
    }

    .iba-about-hero-visual {
        width: 100%;

        right: -30%;
        top: 52%;

        opacity: .22;
    }

    .iba-about-hero-actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }

    .iba-about-story,
    .iba-about-pillars,
    .iba-about-vision {
        padding: 85px 0;
    }

    .iba-about-story-image {
        height: 400px;
    }

    .iba-about-pillar-grid {
        grid-template-columns: 1fr;
    }

    .iba-about-numbers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .iba-about-number {
        border-right: 0;
    }

    .iba-about-number strong {
        font-size: 38px;
    }

    .iba-about-mission-card {
        padding: 30px;
    }

    .iba-about-mission-card h3 {
        font-size: 30px;
    }

    .iba-about-experience {
        min-height: 700px;
    }

    .iba-about-experience-list {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   ABOUT PAGE IMAGE HOVER EFFECT
========================================= */

.iba-about-story-image {
    overflow: hidden;
}

/* Main image */
.iba-about-story-image img {
    transition:
        transform 0.7s cubic-bezier(.2, .8, .2, 1),
        filter 0.7s ease;
}

/* Hover */
.iba-about-story-image:hover img {
    transform: scale(1.08);
    filter: brightness(1.08);
}


/* Golden frame animation */
.iba-about-image-border {
    transition:
        transform 0.7s ease,
        border-color 0.5s ease;
}

.iba-about-story-image:hover .iba-about-image-border {
    transform: translate(8px, 8px);
    border-color: var(--gold);
}


/* Image tag */
.iba-about-image-tag {
    transition:
        transform 0.5s ease,
        background 0.4s ease;
}

.iba-about-story-image:hover .iba-about-image-tag {
    transform: translateY(-8px);
}


/* =========================================
   EXPERIENCE IMAGE
========================================= */

.iba-about-experience-image {
    overflow: hidden;
}

.iba-about-experience-image img {
    transition:
        transform 1s cubic-bezier(.2, .8, .2, 1),
        filter 0.8s ease;
}

.iba-about-experience:hover .iba-about-experience-image img {
    transform: scale(1.06);
    filter: brightness(1.08);
}


/* =========================================================
   RFM IBA - PREMIUM GALLERY PAGE
   Main Section Only
========================================================= */

.gallery-page {
    --gallery-black: #070707;
    --gallery-dark: #0d0d0d;
    --gallery-card: #111111;
    --gallery-gold: #c9a227;
    --gallery-gold-light: #e8ca68;
    --gallery-white: #ffffff;
    --gallery-muted: #aaa;

    background: var(--gallery-black);
    color: var(--gallery-white);
    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.gallery-container {
    width: min(1180px, 90%);
    margin: auto;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading>span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gallery-gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
}

.section-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -1px;
}

.section-heading h2 em {
    color: var(--gallery-gold-light);
    font-style: italic;
}

.section-heading p {
    max-width: 600px;
    margin-top: 22px;
    color: #9d9d9d;
    font-size: 15px;
    line-height: 1.8;
}

/*gallery hero section start*/
.gallery-hero {
    position: relative;
    width: 100%;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(201, 162, 39, .25);
    overflow: hidden;
}

/* Background animation ke sath */
.gallery-hero::before {
    content: "";
    position: absolute;
    inset: -30px;
    /* Thoda zyada bada taaki move hone par edges na katein */
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .60),
            rgba(0, 0, 0, .20),
            rgba(0, 0, 0, .60)),
        url("images/gallery_bg_img.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;

    /* Strong aur daldar animation */
    animation: galleryHeroMotion 10s ease-in-out infinite alternate;
}

/* Powerful Animation: Zoom + Panning (Hilna aur Zoom hona) */
@keyframes galleryHeroMotion {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.15) translate(-15px, -10px);
    }

    100% {
        transform: scale(1.25) translate(15px, 10px);
    }
}

.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to bottom,
            transparent 70%,
            #070707 100%);
}

.gallery-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 100px 20px 70px;
}

.gallery-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--gallery-gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
}

.gallery-hero h1 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(65px, 10vw, 125px);
    line-height: .78;
    font-weight: 500;
    letter-spacing: -3px;
}

.gallery-hero h1 span {
    display: block;
    margin-top: 15px;
    color: var(--gallery-gold-light);
    font-style: italic;
}

.gallery-line {
    width: 90px;
    height: 1px;
    margin: 35px auto 25px;
    background: linear-gradient(90deg,
            transparent,
            var(--gallery-gold),
            transparent);
}

.gallery-hero-content p {
    margin: 0;
    color: #c7c7c7;
    font-size: 14px;
    letter-spacing: 2px;
}

/* =========================================================
   FEATURED EVENT
========================================================= */

.featured-gallery {
    padding: 120px 0;
    background: var(--gallery-black);
}

.featured-event {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    min-height: 530px;

    background: var(--gallery-card);

}

.featured-image {
    position: relative;
    min-height: 530px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition:
        transform .9s cubic-bezier(.2, .7, .2, 1),
        filter .6s ease;
}

.featured-event:hover .featured-image img {
    transform: scale(1.07);
    filter: brightness(.8);
}

.featured-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .90),
            transparent 65%);

    pointer-events: none;
}

.featured-overlay {
    position: absolute;
    z-index: 2;

    left: 40px;
    bottom: 35px;
}

.featured-overlay span {
    color: var(--gallery-gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.featured-overlay h3 {
    margin: 8px 0 0;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 40px;
    font-weight: 500;
}

.featured-overlay p {
    margin: 2px 0 0;

    color: var(--gallery-gold-light);
    font-size: 13px;
    letter-spacing: 4px;
}


/* Decorative corners */

.featured-corner {
    position: absolute;
    z-index: 3;

    width: 65px;
    height: 65px;

    border-color: var(--gallery-gold);
    border-style: solid;
}





/* Featured content */

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px;
}

.gold-label {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--gallery-gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.featured-content h3 {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 52px;
    line-height: .9;
    font-weight: 500;
}

.featured-content h3 strong {
    display: block;

    color: var(--gallery-gold-light);
    font-weight: 500;
}

.featured-year {
    margin: 18px 0;

    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 6px;
}

.featured-content p {
    margin: 10px 0 30px;

    color: #999;
    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   BUTTON
========================================================= */

.gallery-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    width: 190px;
    padding: 15px 18px;

    color: #fff;
    text-decoration: none;

    border: 1px solid var(--gallery-gold);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;

    overflow: hidden;

    transition: color .35s ease;
}

.gallery-btn::before {
    content: "";

    position: absolute;
    inset: 0;

    background: var(--gallery-gold);

    transform: translateX(-101%);

    transition: transform .35s ease;
}

.gallery-btn:hover {
    color: #000;
}

.gallery-btn:hover::before {
    transform: translateX(0);
}

.gallery-btn i {
    position: relative;
    z-index: 2;

    font-size: 20px;
    font-style: normal;
}

.gallery-btn {
    z-index: 1;
}

.gallery-btn {
    isolation: isolate;
}

.gallery-btn:not(i) {
    position: relative;
}

.gallery-btn::after {
    content: attr(data-text);
}

.gallery-btn {
    gap: 20px;
}

.gallery-btn {
    color: #fff;
}

.gallery-btn i,
.gallery-btn {
    position: relative;
}

.gallery-btn i {
    z-index: 3;
}

.gallery-btn {
    z-index: 1;
}

.gallery-btn::before {
    z-index: -1;
}


/* =========================================================
   GALLERY SECTION
========================================================= */

.gallery-section {
    padding: 120px 0;

    background:
        linear-gradient(180deg,
            #090909 0%,
            #050505 100%);
}


/* =========================================================
   FILTER BUTTONS
========================================================= */

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 55px;
}

.filter-btn {
    position: relative;

    padding: 12px 24px;

    background: transparent;

    color: #888;

    border: 1px solid #292929;

    cursor: pointer;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;

    transition:
        color .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: #000;

    background: var(--gallery-gold-light);

    border-color: var(--gallery-gold-light);
}

/* =========================================================
   GALLERY GRID — CLEAN 3 COLUMN
========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}


/* =========================================================
   GALLERY IMAGE
========================================================= */

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}


/* Remove Masonry Sizes */

.gallery-item.large {
    grid-column: span 1;
}

.gallery-item.tall {
    grid-row: span 1;
}


/* =========================================================
   IMAGE
========================================================= */

.gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2, .7, .2, 1),
        filter 0.5s ease;
}


/* =========================================================
   DARK HOVER OVERLAY
========================================================= */

.gallery-item::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.05) 70%);

    opacity: 0;

    transition: opacity 0.4s ease;
}


/* =========================================================
   HOVER IMAGE
========================================================= */

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.75);
}

.gallery-item:hover::after {
    opacity: 1;
}


/* =========================================================
   HOVER CONTENT
========================================================= */

.gallery-hover {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 25px;

    z-index: 2;

    opacity: 0;

    transform: translateY(15px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
    transform: translateY(0);
}


/* Category */

.gallery-hover span {
    display: block;

    margin-bottom: 5px;

    font-family: "Inter", sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;

    color: #d6b36a;
}


/* Title */

.gallery-hover h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 27px;
    font-weight: 500;

    color: #fff;
}


/* =========================================================
   PLUS ICON
========================================================= */

.view-icon {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.6);

    border-radius: 50%;

    color: #fff;

    font-size: 24px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.gallery-item:hover .view-icon {
    background: #d6b36a;
    color: #111;

    border-color: #d6b36a;

    transform: rotate(90deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-hover {
        padding: 20px;
    }

    .gallery-hover h3 {
        font-size: 23px;
    }

}


/* =========================================================
   GALLERY HOVER CONTENT
========================================================= */

.gallery-hover {
    position: absolute;
    z-index: 3;

    left: 25px;
    right: 25px;
    bottom: 22px;

    transform: translateY(12px);

    transition: transform .4s ease;
}

.gallery-item:hover .gallery-hover {
    transform: translateY(0);
}

.gallery-hover span {
    color: var(--gallery-gold-light);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.gallery-hover h3 {
    margin: 6px 0 0;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 25px;
    font-weight: 500;
}

.view-icon {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #000;

    background: var(--gallery-gold-light);

    font-size: 23px;
    font-weight: 300;

    transform: scale(.7);
    opacity: 0;

    transition:
        transform .35s ease,
        opacity .35s ease;
}

.gallery-item:hover .view-icon {
    transform: scale(1);
    opacity: 1;
}


/* =========================================================
   CTA
========================================================= */
.gallery-cta {
    position: relative;
    min-height: 500px;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid rgba(201, 162, 39, .18);
    overflow: hidden;
    /* Animation aur zoom ke liye zaroori hai */
}

/* Cinematic Background Animation + Hover Effect */
.gallery-cta::before {
    content: "";
    position: absolute;
    inset: -30px;
    /* Bada rakha hai taaki zoom/pan hone par edges na katein */
    background:
        radial-gradient(ellipse at center,
            rgba(201, 162, 39, .2),
            transparent 65%),
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .82)),
        url("images/gallery_footer_bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;

    /* Continuous background motion animation */
    animation: ctaBackgroundMotion 14s ease-in-out infinite alternate;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Mouse Hover par Zoom & Smooth Effect */
.gallery-cta:hover::before {
    transform: scale(1.12);
}

/* Animation Keyframes */
@keyframes ctaBackgroundMotion {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(10px, -8px);
    }

    100% {
        transform: scale(1.18) translate(-10px, 8px);
    }
}

/* Bottom fade */
.gallery-cta::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(transparent,
            #070707);
    z-index: 2;
    pointer-events: none;
}

.gallery-cta-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    width: 100%;
    transition: transform 0.5s ease;
}

/* Hover par text content halka sa upar lift hoga */
.gallery-cta:hover .gallery-cta-content {
    transform: translateY(-5px);
}

.gallery-cta-content>span {
    color: var(--gallery-gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    display: inline-block;
    transition: letter-spacing 0.3s ease;
}

/* Hover par eyebrow text ka letter-spacing expand hoga */
.gallery-cta:hover .gallery-cta-content>span {
    letter-spacing: 6px;
}

.gallery-cta h2 {
    margin: 18px 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(45px, 6vw, 75px);
    line-height: 1;
    font-weight: 500;
}

.gallery-cta h2 em {
    color: var(--gallery-gold-light);
    font-style: italic;
}

.gallery-cta p {
    margin-bottom: 30px;
    color: #ddd;
    font-size: 14px;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 600px) {
    .gallery-cta {
        min-height: 430px;
        padding: 80px 20px;
    }

    .gallery-cta h2 {
        font-size: 45px;
    }
}

/* =========================================================
   FILTER ANIMATION
========================================================= */

.gallery-item.hide {
    display: none;
}

.gallery-item.show {
    animation: galleryReveal .5s ease both;
}

@keyframes galleryReveal {

    from {
        opacity: 0;
        transform: scale(.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 900px) {

    .gallery-hero {
        min-height: 480px;
    }

    .featured-event {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 430px;
    }

    .featured-content {
        padding: 45px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 600px) {

    .gallery-container {
        width: 92%;
    }

    .gallery-hero {
        min-height: 430px;
    }

    .gallery-hero-content {
        padding: 80px 15px 50px;
    }

    .gallery-hero h1 {
        font-size: 68px;
        letter-spacing: -2px;
    }

    .gallery-eyebrow {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .gallery-hero-content p {
        font-size: 11px;
        letter-spacing: 1px;
    }


    .featured-gallery,
    .gallery-section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 45px;
    }


    .featured-image {
        min-height: 330px;
    }

    .featured-overlay {
        left: 22px;
        bottom: 22px;
    }

    .featured-overlay h3 {
        font-size: 30px;
    }

    .featured-content {
        padding: 35px 25px;
    }

    .featured-content h3 {
        font-size: 42px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 190px;
        gap: 8px;
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .gallery-item.tall {
        grid-row: span 2;
    }

    .gallery-hover {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .gallery-hover h3 {
        font-size: 18px;
    }

    .gallery-hover span {
        font-size: 7px;
    }

    .view-icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }


    .gallery-cta {
        padding: 90px 20px;
    }

}

/* =========================================================
   TEAM PAGE - PREMIUM ANIMATED CSS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600&display=swap');

:root {
    --team-black: #08080f;
    --team-dark: #0d0d16;
    --team-card: #12121b;
    --team-gold: #c9a45c;
    --team-gold-light: #e4c783;
    --team-white: #ffffff;
    --team-muted: #a5a5ad;
    --transition-smooth: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================================
   GLOBAL KEYFRAMES (ANIMATIONS)
========================================================= */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomOutFade {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glowEffect {
    0% {
        box-shadow: 0 0 10px rgba(201, 164, 92, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(201, 164, 92, 0.5);
    }

    100% {
        box-shadow: 0 0 10px rgba(201, 164, 92, 0.2);
    }
}

/* =========================================================
   CONTAINER
========================================================= */
.team-container {
    width: min(1000px, 90%);
    margin: auto;
}

/* =========================================================
   HERO SECTION
========================================================= */
.team-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(7, 7, 15, 0.6), rgba(7, 7, 15, 0.95)),
        url("images/team_bg_img.JPG") center/cover no-repeat;
    overflow: hidden;
    animation: zoomOutFade 1.5s ease-out forwards;
}

.team-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 164, 92, .15), transparent 60%);
    pointer-events: none;
}

.team-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 60px 20px;
}

.team-eyebrow {
    display: block;
    margin-bottom: 20px;
    color: var(--team-gold-light);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease forwards 0.2s;
    opacity: 0;
}

.team-hero h1 {
    margin: 0;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(55px, 8vw, 105px);
    font-weight: 400;
    line-height: 1.1;
    animation: fadeInUp 1s ease forwards 0.4s;
    opacity: 0;
}

.team-hero h1 em {
    color: var(--team-gold-light);
    font-style: italic;
    position: relative;
}

.team-hero p {
    max-width: 650px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, .75);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    animation: fadeInUp 1s ease forwards 0.6s;
    opacity: 0;
}

.team-hero-line {
    width: 0;
    height: 2px;
    margin: 40px auto 0;
    background: var(--team-gold);
    animation: expandLine 1s ease forwards 0.8s;
}

@keyframes expandLine {
    to {
        width: 100px;
    }
}

/* =========================================================
   INTRO SECTION
========================================================= */
.team-intro {
    padding: 120px 0;
    background: var(--team-black);
}

.team-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.team-intro-heading span,
.team-section-heading span {
    display: block;
    margin-bottom: 15px;
    color: var(--team-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.team-intro-heading h2,
.team-section-heading h2 {
    margin: 0;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 400;
    line-height: 1.1;
}

.team-intro-heading h2 em,
.team-section-heading h2 em {
    color: var(--team-gold-light);
    font-style: italic;
}

.team-intro-text p {
    margin: 0 0 20px;
    color: var(--team-muted);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.9;
}

/* =========================================================
   LEADERSHIP SECTION
========================================================= */
.team-leadership {
    padding: 100px 0;
    background: var(--team-dark);
}

.team-section-heading {
    margin-bottom: 60px;
}

.team-section-heading.center {
    text-align: center;
}

.team-section-heading.center p {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--team-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* LEADERSHIP CARD WITH HOVER */
.leader-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--team-card);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.leader-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 164, 92, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(201, 164, 92, 0.1);
}

.leader-image {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.08);
}

.leader-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 40%, var(--team-card) 100%);
}

.leader-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    position: relative;
    z-index: 2;
}

.leader-label {
    color: var(--team-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
}

.leader-content h3 {
    margin: 15px 0 20px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 55px;
    font-weight: 400;
}

.leader-content p {
    color: var(--team-muted);
    font-size: 15px;
    line-height: 1.9;
}

.leader-divider {
    width: 0;
    height: 1px;
    margin: 35px 0;
    background: var(--team-gold);
    transition: width 0.8s ease;
}

.leader-card:hover .leader-divider {
    width: 100%;
    /* Line animates on hover */
}

.leader-role {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.leader-role span {
    color: #888;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.leader-role strong {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* =========================================================
   TEAM MEMBERS GRID
========================================================= */
.team-members {
    padding: 120px 0;
    background: var(--team-black);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* TEAM CARD & HOVER EFFECTS */
.team-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

/* Gold bottom border effect */
.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--team-gold);
    transition: var(--transition-smooth);
    z-index: 10;
}

.team-card:hover::after {
    width: 100%;
}

.team-card-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(80%) brightness(0.8);
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

.team-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.team-card:hover .team-card-gradient {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
}

/* VIEW ICON (+) */
.team-card-view {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    backdrop-filter: blur(4px);
}

.team-card:hover .team-card-view {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    background: rgba(201, 164, 92, 0.2);
    border-color: var(--team-gold);
}

.team-card-view:hover {
    background: var(--team-gold) !important;
    color: #000 !important;
    transform: rotate(90deg) scale(1.1) !important;
}

/* CARD INFO */
.team-card-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px 30px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 3;
}

.team-card:hover .team-card-info {
    transform: translateY(0);
}

.team-card-info span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--team-gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.team-card-info h3 {
    margin: 0;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 500;
    transition: 0.3s ease;
}

.team-card-info p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
    /* Delay added for staggered effect */
}

.team-card:hover .team-card-info p {
    opacity: 1;
    color: var(--team-white);
    transform: translateY(0);
}

/* =========================================================
   STATS SECTION
========================================================= */
.team-stats {
    padding: 80px 0;
    background: #0b0b12;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.team-stat {
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.team-stat:hover {
    transform: scale(1.1);
}

.team-stat:last-child {
    border-right: none;
}

.team-stat strong {
    display: block;
    color: var(--team-gold-light);
    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    text-shadow: 0 0 15px rgba(201, 164, 92, 0.2);
}

.team-stat:hover strong {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.team-stat span {
    display: block;
    margin-top: 15px;
    color: #888;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* =========================================================
   CTA SECTION
========================================================= */
.team-cta {
    position: relative;
    padding: 150px 0;
    background: radial-gradient(circle at center, rgba(201, 164, 92, 0.1), transparent 60%), var(--team-black);
    text-align: center;
}

.team-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.team-cta-content>span {
    color: var(--team-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
}

.team-cta h2 {
    margin: 25px 0;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(45px, 6vw, 75px);
    font-weight: 400;
    line-height: 1;
}

.team-cta h2 em {
    color: var(--team-gold-light);
    font-style: italic;
}

.team-cta p {
    max-width: 550px;
    margin: 0 auto 40px;
    color: var(--team-muted);
    font-size: 16px;
    line-height: 1.8;
}

.team-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    color: #000;
    background: var(--team-gold);
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Button Hover Fill Animation */
.team-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-cta-btn:hover {
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(201, 164, 92, 0.3);
}

.team-cta-btn:hover::before {
    transform: scaleX(1);
}

.team-cta-btn span {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.team-cta-btn:hover span {
    transform: translateX(8px);
    /* Arrow moves forward on hover */
}

/* =========================================================
   RESPONSIVE (MOBILE & TABLET FIXES)
========================================================= */

@media (max-width: 992px) {
    .team-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .team-intro-heading h2,
    .team-section-heading h2 {
        font-size: 50px;
    }

    .leader-card {
        grid-template-columns: 1fr;
    }

    .leader-image {
        min-height: 450px;
    }

    .leader-image-overlay {
        background: linear-gradient(to top, var(--team-card) 5%, transparent 60%);
    }

    .leader-content {
        padding: 40px;
        text-align: center;
    }

    .leader-role {
        flex-direction: column;
        gap: 10px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    .team-stat:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .team-hero {
        min-height: 500px;
    }

    .team-intro,
    .team-leadership,
    .team-members {
        padding: 80px 0;
    }

    .leader-image {
        min-height: 350px;
    }

    .leader-content {
        padding: 30px 20px;
    }

    .leader-content h3 {
        font-size: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-card-image {
        height: 400px;
    }

    .team-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 0;
    }

    .team-stat strong {
        font-size: 45px;
    }

    .team-cta {
        padding: 100px 20px;
    }
}


/* =========================================================
   RFM SCOPED FAQ PAGE STYLES
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Inter:wght@400;500;600&display=swap');

.rfm-faq-main {
    background-color: #08080f;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

/* HERO SECTION */
.rfm-faq-hero {
    position: relative;
    padding: 110px 20px 70px;
    text-align: center;
    background: linear-gradient(rgba(8, 8, 15, 0.85), rgba(8, 8, 15, 0.98)),
        url("../images/team-bg.jpg") center/cover no-repeat;
}

.rfm-faq-eyebrow {
    display: block;
    color: #e4c783;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.rfm-faq-hero h1 {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 6vw, 70px);
    margin: 0;
    font-weight: 400;
    line-height: 1.1;
}

.rfm-faq-hero h1 em {
    color: #e4c783;
    font-style: italic;
}

.rfm-faq-hero p {
    color: #a5a5ad;
    font-size: 15px;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.rfm-faq-hero-line {
    width: 60px;
    height: 2px;
    background: #c9a45c;
    margin: 25px auto 0;
}

/* MAIN LAYOUT GRID */
.rfm-faq-section {
    padding: 80px 0 120px;
}

.rfm-faq-container {
    width: min(1100px, 90%);
    margin: auto;
}

.rfm-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

/* IMAGE WRAPPER & ANIMATIONS */
.rfm-faq-image-wrapper {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(201, 164, 92, 0.3);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.rfm-faq-image-wrapper:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 164, 92, 0.8);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 164, 92, 0.3);
}

.rfm-faq-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 550px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) brightness(0.85);
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.rfm-faq-image-wrapper:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1.05);
}

/* Shimmer Light Effect */
.rfm-faq-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.15) 50%, transparent 55%);
    transform: rotate(35deg) translateY(-100%);
    transition: transform 0.8s ease-in-out;
    pointer-events: none;
    z-index: 2;
}

.rfm-faq-image-wrapper:hover::after {
    transform: rotate(35deg) translateY(100%);
}

/* FLOATING BADGE */
.rfm-faq-floating-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: rgba(18, 18, 27, 0.95);
    backdrop-filter: blur(10px);
    border-left: 3px solid #c9a45c;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    border-radius: 0 8px 8px 0;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 3;
}

.rfm-faq-image-wrapper:hover .rfm-faq-floating-badge {
    transform: translateX(10px) translateY(-5px);
    border-color: #e4c783;
}

.rfm-badge-icon {
    color: #c9a45c;
    font-size: 20px;
    font-weight: 700;
}

.rfm-badge-text strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.rfm-badge-text span {
    color: #a5a5ad;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ACCORDION */
.rfm-faq-accordion-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rfm-faq-item {
    background: #12121b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rfm-faq-item.active {
    border-color: rgba(201, 164, 92, 0.5);
    box-shadow: 0 5px 20px rgba(201, 164, 92, 0.1);
}

.rfm-faq-question {
    width: 100%;
    padding: 22px 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.rfm-faq-question:hover {
    color: #e4c783;
}

.rfm-faq-icon {
    font-size: 22px;
    color: #c9a45c;
    transition: transform 0.3s ease;
}

.rfm-faq-item.active .rfm-faq-icon {
    transform: rotate(45deg);
    color: #e4c783;
}

.rfm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.rfm-faq-answer p {
    margin: 0;
    padding: 0 25px 22px;
    color: #a5a5ad;
    font-size: 14px;
    line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .rfm-faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .rfm-faq-image-wrapper img {
        min-height: 350px;
    }
}

/* upcoming event*/
/* =========================================================
   RFM ELITE UPCOMING EVENT CARD - ADVANCED ANIMATIONS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Inter:wght@400;500;600&display=swap');

.rfm-elite-main {
    background-color: #08080f;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    padding-bottom: 100px;
    overflow-x: hidden;
}

/* HEADER SECTION WITH FADE-IN */
.rfm-elite-header {
    text-align: center;
    padding: 80px 20px 40px;
    animation: rfmFadeDown 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.rfm-elite-eyebrow {
    display: block;
    color: #e4c783;
    font-size: 13px;
    font-style: italic;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.rfm-elite-main-title {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    margin: 30px;
    line-height: 1.1;
}

.rfm-elite-main-title em {
    color: #e4c783;
    font-style: italic;
}

.rfm-elite-divider {
    width: 50px;
    height: 2px;
    background: #c9a45c;
    margin: 20px auto 0;
    transition: width 0.4s ease;
}

.rfm-elite-header:hover .rfm-elite-divider {
    width: 90px;
}

/* SECTION & CARD ENTRANCE ANIMATION */
.rfm-elite-section {
    padding: 30px 0;
}

.rfm-elite-container {
    width: min(1000px, 100%);
    margin: auto;
}

.rfm-elite-card {
    background: #11111a;
    border: 1px solid rgba(201, 164, 92, 0.25);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), 0 0 45px rgba(201, 164, 92, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    animation: rfmScaleUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.rfm-elite-card:hover {
    border-color: rgba(201, 164, 92, 0.8);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.95), 0 0 70px rgba(201, 164, 92, 0.22);
    transform: translateY(-8px);
}

/* POSTER SIDE WITH CINEMATIC ZOOM & LIGHT SWEEP */
.rfm-elite-poster {
    position: relative;
    min-height: 480px;
    background: #000;
    overflow: hidden;
}

.rfm-elite-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.rfm-elite-card:hover .rfm-elite-poster img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.1);
}

/* Glare / Shimmer Light Sweep on Hover */
.rfm-elite-poster::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.18) 50%,
            transparent 55%);
    transform: rotate(35deg) translateY(-100%);
    transition: transform 0.9s ease-in-out;
    pointer-events: none;
    z-index: 3;
}

.rfm-elite-card:hover .rfm-elite-poster::after {
    transform: rotate(35deg) translateY(100%);
}

.rfm-elite-poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 26, 0.95) 0%, transparent 50%);
    z-index: 2;
}

.rfm-elite-poster-text {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 4;
}

.rfm-elite-poster-text span {
    color: #e4c783;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: letter-spacing 0.4s ease;
}

.rfm-elite-card:hover .rfm-elite-poster-text span {
    letter-spacing: 4px;
}

/* CONTENT SIDE */
.rfm-elite-content {
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* PULSING BADGE */
.rfm-elite-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c9a45c, #e4c783);
    color: #08080f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(201, 164, 92, 0.3);
    animation: rfmPulseBadge 2.5s infinite;
}

/* HEADINGS */
.rfm-elite-title {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4vw, 44px);
    font-weight: 600;
    margin: 0 0 5px;
    line-height: 1.1;
}

.rfm-elite-title em {
    color: #e4c783;
    font-style: italic;
}

.rfm-elite-subtitle {
    color: #c9a45c;
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 16px;
    line-height: 1.4;
}

.rfm-elite-desc {
    color: #a5a5ad;
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 25px;
}

/* METADATA WITH HOVER SHIFT */
.rfm-elite-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rfm-elite-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c0c0cb;
    font-size: 13.5px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.rfm-elite-meta-row:hover {
    transform: translateX(5px);
    color: #ffffff;
}

.rfm-elite-icon {
    font-size: 15px;
}

.rfm-gold-text {
    color: #e4c783;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* LUXURY INTERACTIVE BUTTON */
.rfm-elite-action {
    display: flex;
}

.rfm-elite-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #c9a45c, #dfbc72);
    color: #08080f;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(201, 164, 92, 0.35);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Button Shimmer Sweep Effect */
.rfm-elite-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease;
}

.rfm-elite-btn:hover::before {
    left: 100%;
}

.rfm-elite-btn:hover {
    background: linear-gradient(135deg, #dfbc72, #f5d796);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 164, 92, 0.5);
}

.rfm-btn-arrow {
    transition: transform 0.3s ease;
}

.rfm-elite-btn:hover .rfm-btn-arrow {
    transform: translateX(5px);
}

/* KEYFRAME ANIMATIONS */
@keyframes rfmFadeDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rfmScaleUp {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes rfmPulseBadge {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 164, 92, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(201, 164, 92, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 164, 92, 0);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .rfm-elite-card {
        grid-template-columns: 1fr;
    }

    .rfm-elite-poster {
        min-height: 320px;
    }

    .rfm-elite-content {
        padding: 35px 25px;
    }
}

/* =========================================================
   RFM COMPLETED EVENTS
   PREMIUM CINEMATIC IMAGE CAROUSEL
========================================================= */

.rfm-completed {
    position: relative;
    min-height: 900px;
    padding: 100px 20px 90px;
    overflow: hidden;
    text-align: center;

    background:
        radial-gradient(circle at 50% 42%,
            rgba(49, 37, 105, .42),
            transparent 38%),
        #07070c;
}


/* =========================================================
   BACKGROUND CIRCLE
========================================================= */

.rfm-completed-bg {
    position: absolute;

    width: 780px;
    height: 780px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(255, 255, 255, .045);

    border-radius: 50%;

    box-shadow:
        0 0 120px rgba(65, 45, 150, .12),
        inset 0 0 100px rgba(65, 45, 150, .08);

    animation: rfmRotate 35s linear infinite;

    pointer-events: none;
}


.rfm-completed-bg::before {
    content: "";

    position: absolute;

    inset: 90px;

    border: 1px solid rgba(212, 173, 98, .08);

    border-radius: 50%;
}


.rfm-completed-bg::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    top: 8%;
    left: 50%;

    border-radius: 50%;

    background: #d4ad62;

    box-shadow:
        0 0 20px #d4ad62;
}


@keyframes rfmRotate {

    from {
        transform:
            translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%) rotate(360deg);
    }

}


/* =========================================================
   HEADER
========================================================= */

.rfm-completed-header {
    position: relative;

    z-index: 5;

    max-width: 760px;

    margin: auto;
}


.rfm-completed-header>span {
    display: block;

    margin-bottom: 20px;

    color: #d4ad62;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 5px;
}


.rfm-completed-header h2 {
    margin: 0;

    color: #fff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(55px, 7vw, 92px);

    font-weight: 400;

    line-height: .85;
}


.rfm-completed-header h2 em {
    color: #d4ad62;

    font-style: italic;
}


.rfm-completed-header p {
    max-width: 590px;

    margin: 30px auto 0;

    color: rgba(255, 255, 255, .48);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   CAROUSEL
========================================================= */

.rfm-carousel {
    position: relative;

    z-index: 5;

    width: min(1200px, 100%);

    margin: 75px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;
}


/* =========================================================
   GALLERY
========================================================= */

.rfm-gallery {
    position: relative;

    width: 920px;

    height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   MAIN IMAGE CARD
========================================================= */

.rfm-main-card {
    position: relative;

    z-index: 5;

    width: 500px;

    height: 500px;

    overflow: hidden;

    border-radius: 6px;

    background: #111;

    border: 1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, .65),
        0 0 60px rgba(60, 40, 130, .16);

    transition:
        transform .7s cubic-bezier(.2, .7, .2, 1),
        box-shadow .7s ease;
}


.rfm-main-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 45px 110px rgba(0, 0, 0, .75),
        0 0 80px rgba(75, 50, 150, .22);
}


/* =========================================================
   MAIN IMAGE

   CONTAIN = PURI IMAGE DIKHEGI
   CROP NAHI HOGI
========================================================= */

.rfm-main-card>img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center;

    background: #0b0b10;

    transition:
        transform 1s cubic-bezier(.2, .7, .2, 1),
        filter .7s ease;
}


.rfm-main-card:hover>img {

    transform: scale(1.04);

    filter: brightness(.82);
}


/* =========================================================
   IMAGE SHADE
========================================================= */

.rfm-image-shade {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .9),
            rgba(0, 0, 0, .08) 55%,
            transparent);
}


/* =========================================================
   YEAR
========================================================= */

.rfm-image-top {

    position: absolute;

    top: 20px;

    left: 20px;
}


.rfm-image-top span {

    display: inline-block;

    padding: 10px 16px;

    color: #fff;

    border: 1px solid rgba(255, 255, 255, .4);

    background: rgba(0, 0, 0, .25);

    backdrop-filter: blur(10px);

    font-size: 9px;

    letter-spacing: 3px;
}


/* =========================================================
   MAIN IMAGE TEXT
========================================================= */

.rfm-image-bottom {

    position: absolute;

    left: 30px;

    right: 30px;

    bottom: 25px;

    text-align: left;
}


.rfm-image-bottom small {

    display: block;

    margin-bottom: 8px;

    color: #d4ad62;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 3px;
}


.rfm-image-bottom h3 {

    margin: 0;

    color: #fff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 31px;

    font-weight: 400;

    line-height: 1;
}


/* =========================================================
   SIDE PREVIEWS
========================================================= */

.rfm-preview {

    position: absolute;

    top: 50%;

    width: 245px;

    height: 350px;

    overflow: hidden;

    border-radius: 5px;

    background: #101016;

    border: 1px solid rgba(255, 255, 255, .07);

    opacity: .35;

    filter: brightness(.45);

    transition:
        transform .7s cubic-bezier(.2, .7, .2, 1),
        opacity .5s ease,
        filter .5s ease;
}


.rfm-preview img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    background: #0b0b10;

}


/* LEFT */

.rfm-preview-left {

    left: 0;

    transform:
        translate(-20px, -50%) scale(.86);
}


/* RIGHT */

.rfm-preview-right {

    right: 0;

    transform:
        translate(20px, -50%) scale(.86);
}


/* SIDE HOVER */

.rfm-preview:hover {

    opacity: .75;

    filter: brightness(.7);

}


.rfm-preview-left:hover {

    transform:
        translate(5px, -50%) scale(.9);
}


.rfm-preview-right:hover {

    transform:
        translate(-5px, -50%) scale(.9);
}


/* =========================================================
   ARROWS
========================================================= */

.rfm-arrow {

    position: relative;

    z-index: 20;

    flex-shrink: 0;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .2);

    background:
        rgba(255, 255, 255, .025);

    color: #fff;

    font-size: 20px;

    cursor: pointer;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}


.rfm-arrow:hover {

    color: #111;

    background: #d4ad62;

    border-color: #d4ad62;

    transform: scale(1.12);
}


.rfm-arrow:active {

    transform: scale(.95);
}



/* =========================================================
   EVENT INFO
========================================================= */

.rfm-event-info {

    position: relative;

    z-index: 5;

    max-width: 750px;

    margin: 32px auto 0;
}


#rfmEventNumber {

    display: block;

    margin-bottom: 12px;

    color: #d4ad62;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;
}


.rfm-event-info h3 {

    margin: 0;

    color: #fff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(34px, 4vw, 52px);

    font-weight: 400;

    line-height: 1;
}


.rfm-line {

    width: 55px;

    height: 1px;

    margin: 17px auto;

    background: #d4ad62;
}


#rfmEventLocation {

    color: #777;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;
}


/* =========================================================
   HIDDEN IMAGE LIBRARY
========================================================= */

.rfm-image-library {

    display: none;
}


/* =========================================================
   IMAGE CHANGE ANIMATION
========================================================= */

.rfm-main-card.rfm-changing {

    animation:
        rfmImageChange .55s ease;
}


@keyframes rfmImageChange {

    0% {

        opacity: .35;

        transform: scale(.97);
    }

    100% {

        opacity: 1;

        transform: scale(1);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 900px) {

    .rfm-completed {

        padding:
            80px 15px 70px;
    }


    .rfm-carousel {

        gap: 0;
    }


    .rfm-gallery {

        width: 100%;

        height: 430px;
    }


    .rfm-main-card {

        width: min(390px, 78vw);

        height: 430px;
    }


    .rfm-preview {

        width: 130px;

        height: 270px;

        opacity: .25;
    }


    .rfm-preview-left {

        left: -25px;
    }


    .rfm-preview-right {

        right: -25px;
    }


    .rfm-arrow {

        position: absolute;

        width: 44px;

        height: 44px;
    }


    .rfm-prev {

        left: 5px;
    }


    .rfm-next {

        right: 5px;
    }

}


@media(max-width: 600px) {

    .rfm-completed-header h2 {

        font-size: 58px;
    }


    .rfm-completed-header p {

        font-size: 12px;

        padding: 0 15px;
    }


    .rfm-carousel {

        margin-top: 55px;
    }


    .rfm-gallery {

        height: 390px;
    }


    .rfm-main-card {

        width: 82vw;

        max-width: 350px;

        height: 390px;
    }


    .rfm-preview {

        width: 90px;

        height: 220px;
    }


    .rfm-preview-left {

        left: -35px;
    }


    .rfm-preview-right {

        right: -35px;
    }


    .rfm-image-bottom {

        left: 20px;

        right: 20px;

        bottom: 20px;
    }


    .rfm-image-bottom h3 {

        font-size: 26px;
    }


    .rfm-event-info h3 {

        font-size: 35px;
    }

}

/* =========================================================
   RFM / IBA PREMIUM 3D CONTACT PAGE
========================================================= */

.iba-contact {
    position: relative;
    overflow: hidden;
    background: #050505;
    color: #fff;
    min-height: 100vh;
    font-family: inherit;
}


/* =========================================================
   BACKGROUND
========================================================= */

.contact-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .18;

    background-image:
        linear-gradient(rgba(212, 175, 55, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, .08) 1px, transparent 1px);

    background-size: 80px 80px;

    mask-image: linear-gradient(to bottom,
            black,
            transparent 80%);
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.orb-one {
    width: 350px;
    height: 350px;
    background: rgba(212, 175, 55, .12);
    top: 5%;
    right: -120px;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-two {
    width: 300px;
    height: 300px;
    background: rgba(180, 120, 20, .08);
    top: 50%;
    left: -150px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(30px, -40px, 0);
    }

}


/* =========================================================
   HERO
========================================================= */

.contact-3d-hero {
    min-height: 720px;
    max-width: 1400px;
    margin: auto;
    padding: 130px 7% 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    perspective: 1400px;
}

.hero-3d-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
}

.mini-label {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #d4af37;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;
}

.mini-label span {
    width: 35px;
    height: 1px;
    background: #d4af37;
}

.contact-3d-hero h1 {
    font-size: clamp(65px, 10vw, 145px);
    line-height: .82;

    margin: 35px 0;

    letter-spacing: -8px;

    font-weight: 800;

    transform: translateZ(50px);
}

.contact-3d-hero h1 strong {
    display: block;

    color: transparent;

    -webkit-text-stroke: 1px #d4af37;

    font-style: italic;

    text-shadow:
        0 0 30px rgba(212, 175, 55, .15);
}

.contact-3d-hero p {
    max-width: 570px;

    color: #858585;

    font-size: 16px;
    line-height: 1.9;
}

.contact-main-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;

    min-width: 220px;

    margin-top: 35px;

    padding: 17px 20px;

    text-decoration: none;

    background: #d4af37;
    color: #050505;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.5px;

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.contact-main-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(100deg,
            transparent,
            rgba(255, 255, 255, .7),
            transparent);

    transform: skewX(-20deg);

    transition: .7s;
}

.contact-main-btn:hover::before {
    left: 140%;
}

.contact-main-btn:hover {
    transform: translateY(-7px) translateZ(30px);

    box-shadow:
        0 20px 45px rgba(212, 175, 55, .25);
}

.contact-main-btn b {
    font-size: 20px;
}


/* =========================================================
   3D HERO OBJECT
========================================================= */

.hero-3d-object {
    width: 450px;
    height: 450px;

    position: relative;

    transform-style: preserve-3d;

    animation:
        heroObjectFloat 6s ease-in-out infinite;

    margin-right: 4%;
}

@keyframes heroObjectFloat {

    0%,
    100% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(10deg) rotateX(-5deg) translateY(-18px);
    }

}

.gold-ring {
    position: absolute;

    border: 1px solid rgba(212, 175, 55, .55);

    border-radius: 50%;

    left: 50%;
    top: 50%;

    transform-style: preserve-3d;

    box-shadow:
        0 0 30px rgba(212, 175, 55, .08);
}

.ring-1 {
    width: 380px;
    height: 380px;

    transform:
        translate(-50%, -50%) rotateX(70deg) rotateY(20deg);

    animation: ringOne 12s linear infinite;
}

.ring-2 {
    width: 310px;
    height: 310px;

    transform:
        translate(-50%, -50%) rotateY(70deg) rotateX(20deg);

    animation: ringTwo 9s linear infinite reverse;
}

.ring-3 {
    width: 230px;
    height: 230px;

    transform:
        translate(-50%, -50%) rotateX(45deg) rotateY(45deg);

    animation: ringThree 7s linear infinite;
}

@keyframes ringOne {
    to {
        transform:
            translate(-50%, -50%) rotateX(70deg) rotateY(380deg);
    }
}

@keyframes ringTwo {
    to {
        transform:
            translate(-50%, -50%) rotateY(430deg) rotateX(20deg);
    }
}

@keyframes ringThree {
    to {
        transform:
            translate(-50%, -50%) rotateX(405deg) rotateY(45deg);
    }
}


/* FLOATING CENTER CARD */

.floating-card {
    position: absolute;

    width: 180px;
    height: 210px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%) translateZ(80px) rotateY(-12deg);

    background:
        linear-gradient(145deg,
            rgba(40, 40, 40, .95),
            rgba(10, 10, 10, .92));

    border: 1px solid rgba(212, 175, 55, .45);

    box-shadow:
        -20px 25px 50px rgba(0, 0, 0, .7),
        inset 0 0 35px rgba(212, 175, 55, .04);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform-style: preserve-3d;

    animation: cardRotate 6s ease-in-out infinite;
}

@keyframes cardRotate {

    0%,
    100% {
        transform:
            translate(-50%, -50%) translateZ(80px) rotateY(-12deg) rotateX(4deg);
    }

    50% {
        transform:
            translate(-50%, -50%) translateZ(110px) rotateY(12deg) rotateX(-4deg);
    }

}

.floating-card::before {
    content: "";

    position: absolute;
    inset: 8px;

    border: 1px solid rgba(212, 175, 55, .12);
}

.floating-card small {
    color: #aaa;
    letter-spacing: 5px;
    font-size: 9px;
}

.floating-card strong {
    color: #d4af37;
    font-size: 13px;
}

.floating-card span {
    color: #666;
    font-size: 7px;
    letter-spacing: 2px;
    margin-top: 15px;
}


/* =========================================================
   CONTACT CARDS
========================================================= */

.contact-cards {
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px 30px 120px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    perspective: 1200px;
}

.contact-card {
    position: relative;

    min-height: 270px;

    padding: 35px;

    background:
        linear-gradient(145deg,
            rgba(30, 30, 30, .9),
            rgba(8, 8, 8, .95));

    border: 1px solid rgba(255, 255, 255, .08);

    overflow: hidden;

    transform-style: preserve-3d;

    transition:
        transform .15s ease,
        border .3s ease,
        box-shadow .3s ease;
}

.contact-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    border: 1px solid rgba(212, 175, 55, .15);

    transition: .5s;
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, .45);

    box-shadow:
        0 35px 70px rgba(0, 0, 0, .6),
        0 0 35px rgba(212, 175, 55, .06);
}

.contact-card:hover::before {
    transform: scale(1.8);
}

.card-number {
    position: absolute;

    right: 25px;
    top: 22px;

    color: #333;

    font-size: 11px;
}

.card-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    color: #d4af37;

    border: 1px solid rgba(212, 175, 55, .35);

    font-size: 20px;

    transform: translateZ(40px);

    transition: .4s;
}

.contact-card:hover .card-icon {
    transform:
        translateZ(65px) rotateY(20deg) rotateX(-10deg);

    box-shadow:
        0 10px 30px rgba(212, 175, 55, .15);
}

.contact-card>span {
    display: block;

    color: #777;

    font-size: 9px;

    letter-spacing: 3px;

    margin-top: 30px;
}

.contact-card h3 {
    font-size: 22px;

    margin: 10px 0;

    transform: translateZ(30px);
}

.contact-card p {
    color: #666;

    font-size: 12px;

    line-height: 1.7;

    max-width: 270px;
}

.contact-card a {
    position: absolute;

    bottom: 30px;

    color: #d4af37;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-decoration: none;

    transition: .3s;
}

.contact-card a b {
    margin-left: 12px;
}

.contact-card a:hover {
    letter-spacing: 3px;
}


/* =========================================================
   ENQUIRY SECTION
========================================================= */

.enquiry-section {
    max-width: 1250px;

    margin: 0 auto;

    padding: 120px 30px;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 90px;

    align-items: center;

    perspective: 1500px;
}

.enquiry-left {
    position: relative;

    min-height: 500px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-label {
    color: #d4af37;
}

.enquiry-left h2 {
    font-size: clamp(50px, 6vw, 85px);

    line-height: .9;

    letter-spacing: -5px;

    margin: 25px 0;
}

.enquiry-left h2 strong {
    display: block;

    color: transparent;

    -webkit-text-stroke: 1px #d4af37;

    font-style: italic;
}

.enquiry-left p {
    color: #777;

    max-width: 420px;

    line-height: 1.8;

    font-size: 14px;
}

.big-vertical-text {
    position: absolute;

    right: 0;
    bottom: -20px;

    font-size: 160px;

    line-height: 1;

    font-weight: 900;

    color: rgba(255, 255, 255, .025);

    writing-mode: vertical-rl;

    user-select: none;
}


/* FORM */

.form-3d-wrap {
    position: relative;

    transform-style: preserve-3d;
}

.form-glow {
    position: absolute;

    width: 250px;
    height: 250px;

    background: rgba(212, 175, 55, .1);

    filter: blur(100px);

    right: 0;
    top: 20%;

    pointer-events: none;
}

.form-3d {
    position: relative;

    padding: 45px;

    background:
        linear-gradient(145deg,
            rgba(25, 25, 25, .96),
            rgba(8, 8, 8, .98));

    border: 1px solid rgba(212, 175, 55, .15);

    box-shadow:
        30px 40px 90px rgba(0, 0, 0, .65);

    transform:
        rotateY(-4deg) rotateX(2deg);

    transform-style: preserve-3d;

    transition: .5s;
}

.form-3d:hover {
    transform:
        rotateY(0deg) rotateX(0deg) translateZ(20px);

    border-color: rgba(212, 175, 55, .35);
}

.form-title span {
    color: #d4af37;

    font-size: 9px;

    letter-spacing: 3px;
}

.form-title h3 {
    margin: 10px 0 35px;

    font-size: 26px;
}

.input-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.input-box {
    margin-bottom: 20px;
}

.input-box label {
    display: block;

    color: #777;

    font-size: 8px;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.input-box input,
.input-box textarea,
.input-box select {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #252525;

    background: #0b0b0b;

    color: #fff;

    padding: 15px;

    outline: none;

    font-family: inherit;

    transition: .35s;

    transform: translateZ(0);
}

.input-box input,
.input-box select {
    height: 50px;
}

.input-box textarea {
    resize: vertical;
}

.input-box input:focus,
.input-box textarea:focus,
.input-box select:focus {
    border-color: #d4af37;

    box-shadow:
        0 0 0 1px rgba(212, 175, 55, .12),
        0 0 25px rgba(212, 175, 55, .06);

    transform: translateZ(8px);
}

.input-box input::placeholder,
.input-box textarea::placeholder {
    color: #444;
}

.input-box select {
    color: #777;
}

.input-box select option {
    background: #111;
    color: #fff;
}


/* SEND BUTTON */

.send-3d-btn {
    width: 100%;

    height: 62px;

    margin-top: 5px;

    border: 0;

    background: #d4af37;

    color: #050505;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 20px;

    cursor: pointer;

    font-weight: 900;

    font-size: 10px;

    letter-spacing: 2px;

    overflow: hidden;

    transition: .4s;

    transform-style: preserve-3d;
}

.send-3d-btn div {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: #050505;

    color: #d4af37;

    font-size: 18px;

    transition: .4s;
}

.send-3d-btn:hover {
    transform:
        translateY(-6px) translateZ(30px);

    box-shadow:
        0 20px 40px rgba(212, 175, 55, .2);
}

.send-3d-btn:hover div {
    transform: rotate(45deg);
}


/* =========================================================
   LOCATIONS
========================================================= */

.locations-section {
    padding: 130px 30px;

    max-width: 1250px;

    margin: auto;
}

.location-heading {
    text-align: center;

    margin-bottom: 70px;
}

.location-heading span {
    color: #d4af37;

    font-size: 9px;

    letter-spacing: 4px;
}

.location-heading h2 {
    font-size: clamp(45px, 6vw, 75px);

    line-height: .9;

    margin: 20px 0;

    letter-spacing: -4px;
}

.location-heading h2 strong {
    color: transparent;

    -webkit-text-stroke: 1px #d4af37;

    font-style: italic;
}

.location-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    perspective: 1200px;
}

.location-card {
    min-height: 280px;

    padding: 32px;

    background: #0c0c0c;

    border: 1px solid #202020;

    transform-style: preserve-3d;

    transition:
        transform .15s ease,
        border .3s,
        box-shadow .3s;
}

.location-card:hover {
    border-color: rgba(212, 175, 55, .4);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .5);
}

.location-top {
    color: #777;

    font-size: 9px;

    letter-spacing: 2px;

    display: flex;

    justify-content: space-between;
}

.location-top span {
    color: #d4af37;
}

.location-card h3 {
    font-size: 45px;

    margin: 70px 0 5px;

    letter-spacing: -2px;

    transform: translateZ(35px);
}

.location-card p {
    color: #666;

    font-size: 12px;
}

.location-line {
    height: 1px;

    background: #252525;

    margin: 28px 0;
}

.location-card a {
    color: #d4af37;

    text-decoration: none;

    font-size: 9px;

    letter-spacing: 2px;

    transition: .3s;
}

.location-card a:hover {
    letter-spacing: 4px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-final {
    min-height: 650px;

    position: relative;

    display: grid;

    place-items: center;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(circle at center,
            rgba(212, 175, 55, .1),
            transparent 35%);
}

.final-circle {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(212, 175, 55, .13);

    animation: finalRotate 20s linear infinite;
}

.final-circle::before,
.final-circle::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(212, 175, 55, .08);
}

.final-circle::before {
    inset: 45px;
}

.final-circle::after {
    inset: 100px;
}

@keyframes finalRotate {
    to {
        transform: rotate(360deg);
    }
}

.final-content {
    position: relative;
    z-index: 2;
}

.final-content>span {
    color: #d4af37;

    font-size: 9px;

    letter-spacing: 4px;
}

.final-content h2 {
    font-size: clamp(55px, 8vw, 110px);

    line-height: .85;

    letter-spacing: -6px;

    margin: 25px 0;
}

.final-content h2 strong {
    display: block;

    color: transparent;

    -webkit-text-stroke: 1px #d4af37;

    font-style: italic;
}

.final-content p {
    color: #777;

    max-width: 500px;

    margin: 0 auto;

    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1000px) {

    .contact-3d-hero {
        flex-direction: column;

        text-align: center;

        padding-top: 120px;
    }

    .mini-label {
        justify-content: center;
    }

    .contact-3d-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-3d-object {
        margin: 80px 0 0;

        transform: scale(.8);
    }

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .enquiry-section {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: auto;
    }

}


@media(max-width:600px) {

    .contact-3d-hero {
        min-height: auto;

        padding:
            110px 20px 60px;
    }

    .contact-3d-hero h1 {
        font-size: 62px;

        letter-spacing: -4px;
    }

    .contact-3d-hero p {
        font-size: 13px;
    }

    .hero-3d-object {
        width: 330px;
        height: 330px;

        transform: scale(.75);
    }

    .contact-cards {
        padding:
            20px 20px 80px;
    }

    .contact-card {
        min-height: 250px;
    }

    .enquiry-section {
        padding:
            80px 20px;
        gap: 40px;
    }

    .enquiry-left {
        min-height: 350px;
    }

    .enquiry-left h2 {
        font-size: 55px;
    }

    .big-vertical-text {
        font-size: 100px;
    }

    .form-3d {
        padding: 25px 20px;

        transform: none;
    }

    .input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .locations-section {
        padding:
            80px 20px;
    }

    .location-card h3 {
        margin-top: 50px;
    }

    .final-circle {
        width: 350px;
        height: 350px;
    }

    .contact-final {
        min-height: 520px;
        padding: 20px;
    }

}

/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal-item {
    opacity: 0;
    transform:
        translateY(60px) rotateX(8deg);

    transition:
        opacity .8s ease,
        transform .9s cubic-bezier(.2, .8, .2, 1);
}

.reveal-item.show {
    opacity: 1;

    transform:
        translateY(0) rotateX(0);
}

/* ================================
   FORM CLICK / INPUT FIX
================================ */

.form-3d-wrap {
    position: relative;
    z-index: 10;
    isolation: isolate;
    pointer-events: auto;
}

.form-glow {
    position: absolute;
    z-index: -1;
    pointer-events: none !important;
}

.form-3d {
    position: relative;
    z-index: 20;
    pointer-events: auto !important;
}

.form-3d .input-row,
.form-3d .input-box {
    position: relative;
    z-index: 25;
    pointer-events: auto !important;
}

.form-3d input,
.form-3d textarea,
.form-3d select {
    position: relative;
    z-index: 30;
    display: block;
    width: 100%;
    box-sizing: border-box;

    pointer-events: auto !important;
    user-select: text !important;
    cursor: text;
}

.form-3d select {
    cursor: pointer;
}

.form-3d textarea {
    cursor: text;
}

.form-3d input:focus,
.form-3d textarea:focus,
.form-3d select:focus {
    outline: none;
    position: relative;
    z-index: 50;
}

.form-3d label {
    position: relative;
    z-index: 35;
    pointer-events: none !important;
}

.form-3d .send-3d-btn {
    position: relative;
    z-index: 40;
    pointer-events: auto !important;
    cursor: pointer;
}

/* =========================================
   RFM BUSINESS PARTNER
   CLEAN PROFESSIONAL DESIGN
========================================= */

.partner-page {
    background: #080808;
    color: #fff;
    min-height: 100vh;
    overflow: hidden;
}


/* =========================================
   HERO
========================================= */

.partner-hero {
    max-width: 1280px;
    margin: auto;
    min-height: calc(100vh - 90px);

    padding: 90px 40px;

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.partner-hero-left {
    max-width: 550px;
}

.partner-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #d5aa3c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;

    margin-bottom: 28px;
}

.partner-label::before {
    content: "";
    width: 30px;
    height: 1px;
    background: #d5aa3c;
}


.partner-hero h1 {
    font-size: clamp(52px, 5vw, 78px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 700;

    margin: 0;
}

.partner-hero h1 span {
    display: block;
    color: #d9ae43;
}


.partner-hero-left>p {
    color: #999;
    font-size: 15px;
    line-height: 1.8;

    max-width: 500px;

    margin: 30px 0 45px;
}


/* =========================================
   POINTS
========================================= */

.partner-points {
    border-top: 1px solid #242424;
}

.partner-points>div {
    display: flex;
    gap: 20px;

    padding: 20px 0;

    border-bottom: 1px solid #242424;
}

.partner-points>div>span {
    color: #c99d32;
    font-size: 11px;
    letter-spacing: 2px;
    padding-top: 3px;
}

.partner-points strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.partner-points small {
    color: #707070;
    font-size: 12px;
}


/* =========================================
   FORM CARD
========================================= */

.partner-form-card {
    background: #101010;

    border: 1px solid #292929;

    padding: 40px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .4);

    position: relative;
}


/* GOLD TOP LINE */

.partner-form-card::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 2px;

    background: #d7aa3b;
}


/* =========================================
   FORM HEADER
========================================= */

.form-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding-bottom: 25px;
    margin-bottom: 28px;

    border-bottom: 1px solid #292929;
}

.form-header span {
    color: #9a7b30;

    font-size: 9px;
    letter-spacing: 3px;
}

.form-header h2 {
    margin: 8px 0 0;

    font-size: 28px;
    font-weight: 600;
}

.form-number {
    color: #555;
    font-size: 13px;
}


/* =========================================
   FORM
========================================= */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;

    color: #999;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}

.field label b {
    color: #d7aa3b;
}


/* =========================================
   INPUTS
========================================= */

.field input,
.field select,
.field textarea {

    width: 100%;
    box-sizing: border-box;

    background: #0b0b0b;

    border: 1px solid #292929;

    color: #eee;

    padding: 15px 16px;

    font-family: inherit;
    font-size: 13px;

    outline: none;

    transition: all .25s ease;
}


.field input {
    height: 50px;
}

.field select {
    height: 50px;
    cursor: pointer;
}

.field textarea {
    min-height: 110px;
    resize: vertical;
}


/* PLACEHOLDER */

.field input::placeholder,
.field textarea::placeholder {
    color: #555;
}


/* HOVER */

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: #555;
}


/* FOCUS */

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #cda33b;

    box-shadow:
        0 0 0 2px rgba(205, 163, 59, .08);
}


/* =========================================
   REGISTER BUTTON
========================================= */

.register-btn {

    width: 100%;

    height: 58px;

    border: none;

    background: #d6aa3b;

    color: #050505;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px 0 22px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;

    cursor: pointer;

    transition: all .3s ease;
}

.register-btn i {

    width: 36px;
    height: 36px;

    background: #080808;

    color: #d6aa3b;

    display: grid;
    place-items: center;

    font-style: normal;

    font-size: 18px;

    transition: .3s;
}

.register-btn:hover {
    background: #e4bb55;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(214, 170, 59, .15);
}

.register-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   EXISTING PARTNER
========================================= */

.existing-partner {

    margin-top: 25px;
    padding-top: 20px;

    border-top: 1px solid #292929;

    text-align: center;

    font-size: 12px;
    color: #666;
}

.existing-partner a {

    color: #d5aa3c;

    text-decoration: none;

    margin-left: 8px;

    font-weight: 600;

    transition: .25s;
}

.existing-partner a:hover {
    color: #fff;
}


/* =========================================
   BOTTOM STRIP
========================================= */

.partner-bottom {

    max-width: 1280px;

    margin: 40px auto 0;

    padding: 35px 40px;

    border-top: 1px solid #242424;

    display: grid;

    grid-template-columns: 1fr 1fr auto;

    align-items: center;

    gap: 40px;
}

.partner-bottom span {
    color: #d5aa3c;
    font-size: 12px;
    letter-spacing: 3px;
}

.partner-bottom strong {
    display: block;
    font-size: 18px;
    margin-top: 4px;
}

.partner-bottom p {
    color: #666;
    font-size: 12px;
    line-height: 1.6;
}

.partner-bottom a {
    color: #d5aa3c;
    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    white-space: nowrap;
}

.partner-bottom a:hover {
    color: #fff;
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 1000px) {

    .partner-hero {

        grid-template-columns: 1fr;

        gap: 60px;

        padding-top: 80px;
        padding-bottom: 70px;
    }

    .partner-hero-left {
        max-width: 700px;
    }

    .partner-bottom {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}


@media(max-width: 600px) {

    .partner-hero {
        padding: 60px 20px;
    }

    .partner-hero h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .partner-form-card {
        padding: 25px 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .partner-bottom {
        padding: 30px 20px;
    }

}

/*     */
/* =========================================
   AWARDS PAGE
/* =========================================================
   RFM AWARDS PAGE
   PREMIUM BLACK + GOLD
========================================================= */

.rfm-awards-page {
    width: 100%;
    background:
        radial-gradient(circle at 50% 0%,
            rgba(212, 170, 72, 0.08),
            transparent 35%),
        #080808;

    color: #fff;
    overflow: hidden;
}


/* =========================================================
   1. INTRO HEADING FIRST
========================================================= */

.rfm-awards-intro {
    text-align: center;
    padding: 100px 20px 45px;
    position: relative;
}

.rfm-intro-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #d7ad52;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
}

.rfm-intro-line span {
    width: 55px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            #d7ad52);
}

.rfm-intro-line span:last-child {
    background: linear-gradient(90deg,
            #d7ad52,
            transparent);
}

.rfm-awards-intro h1 {
    margin: 18px 0 10px;

    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;

    font-weight: 800;
    letter-spacing: -2px;

    color: #fff;
}

.rfm-awards-intro h1 em {
    color: #d7ad52;
    font-style: normal;
}

.rfm-awards-intro p {
    max-width: 720px;
    margin: 20px auto 0;

    color: #aaa;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   2. TOP BANNER
========================================================= */

.rfm-award-banner {
    padding: 10px 25px 65px;
}

.rfm-banner-slider {
    max-width: 1320px;
    height: 550px;

    margin: auto;

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(215, 173, 82, 0.35);

    border-radius: 4px;

    background: #111;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.55),
        0 0 50px rgba(215, 173, 82, 0.06);
}

.rfm-banner-slide {
    position: absolute;
    inset: 0;

    opacity: 0;

    transition:
        opacity 0.8s ease,
        transform 1s ease;

    transform: scale(1.03);
}

.rfm-banner-slide.active {
    opacity: 1;
    transform: scale(1);
}

.rfm-banner-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* BANNER DARK OVERLAY */

.rfm-banner-slider::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.22),
            transparent 40%,
            transparent 60%,
            rgba(0, 0, 0, 0.22));

    pointer-events: none;
}


/* ARROWS */

.rfm-banner-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 10;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    border: 1px solid rgba(215, 173, 82, 0.5);

    background: rgba(0, 0, 0, 0.7);

    color: #d7ad52;

    font-size: 20px;

    cursor: pointer;

    transition: 0.3s ease;
}

.rfm-banner-arrow:hover {
    background: #d7ad52;
    color: #080808;

    transform:
        translateY(-50%) scale(1.08);
}

.rfm-banner-prev {
    left: 18px;
}

.rfm-banner-next {
    right: 18px;
}


/* DOTS */

.rfm-banner-dots {
    position: absolute;

    bottom: 17px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;

    z-index: 20;
}

.rfm-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition: 0.3s;
}

.rfm-dot.active {
    width: 25px;
    border-radius: 10px;

    background: #d7ad52;
}


/* =========================================================
   3. FEATURED AWARD
========================================================= */

/* =========================================================
   3. FEATURED AWARD
========================================================= */

.rfm-featured-award {
    width: calc(100% - 50px);
    max-width: 1320px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 42% 58%;
    background: #101010;
    border: 1px solid rgba(215, 173, 82, 0.22);
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

/* GOLD TOP LINE */
.rfm-featured-award::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            #d7ad52,
            #f4d98b,
            #d7ad52,
            transparent);
}

/* =========================================================
   IMAGE SIDE (PREMIUM GOLDEN GLOW EFFECT)
========================================================= */

.rfm-featured-image {
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: radial-gradient(circle at center,
            rgba(215, 173, 82, 0.13),
            transparent 65%), #0c0c0c;
}

.rfm-image-frame {
    width: 100%;
    height: 100%;
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.rfm-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;

    /* Normal shadow */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));

    position: relative;
    z-index: 2;

    /* Smooth and elegant transition */
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 🔥 PREMIUM HOVER EFFECT 🔥 */
.rfm-image-frame:hover img {
    /* Halka sa upar uthna aur thoda sa zoom */
    transform: translateY(-8px) scale(1.04);

    /* Black shadow ki jagah Golden Premium Glow */
    filter: drop-shadow(0 15px 40px rgba(215, 173, 82, 0.45));
}

/* GOLD CORNERS */
.rfm-frame-corner {
    position: absolute;
    width: 35px;
    height: 35px;
    border-color: #d7ad52;
    border-style: solid;
    opacity: 0.7;
    z-index: 1;

    /* Corner animation ke liye transition */
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover par corners thode bade honge aur bright golden ho jayenge */
.rfm-image-frame:hover .rfm-frame-corner {
    width: 55px;
    height: 55px;
    opacity: 1;
    border-color: #f4d98b;
    /* Thoda bright gold */
}

.rfm-frame-corner.top-left {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
}

.rfm-frame-corner.top-right {
    top: 0;
    right: 0;
    border-width: 2px 2px 0 0;
}

.rfm-frame-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-width: 0 0 2px 2px;
}

.rfm-frame-corner.bottom-right {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
}

/* =========================================================
   CONTENT SIDE
========================================================= */

.rfm-featured-content {
    padding: 58px 55px;
}

.rfm-award-label {
    display: inline-block;
    color: #d7ad52;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.rfm-stars {
    color: #d7ad52;
    letter-spacing: 4px;
    font-size: 18px;
    margin-bottom: 14px;
}

.rfm-featured-content h2 {
    margin: 0 0 17px;
    font-size: clamp(32px, 3.4vw, 49px);
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.rfm-featured-content h2 span {
    display: block;
    color: #d7ad52;
}

.rfm-category {
    display: inline-block;
    padding: 9px 17px;
    border: 1px solid rgba(215, 173, 82, 0.5);
    color: #d7ad52;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.rfm-featured-content h3 {
    margin: 0 0 24px;
    max-width: 700px;
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.12;
}

.rfm-featured-content h3 strong {
    color: #d7ad52;
}

.rfm-featured-content p {
    color: #a9a9a9;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 17px;
    max-width: 720px;
}

/* PERSON */
.rfm-award-person {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
}

.rfm-person-line {
    width: 35px;
    height: 1px;
    background: #d7ad52;
}

.rfm-award-person strong {
    display: block;
    color: #fff;
    font-size: 15px;
}

.rfm-award-person span {
    display: block;
    color: #777;
    font-size: 12px;
    margin-top: 4px;
}

/* QUOTE */
.rfm-award-quote {
    display: flex;
    gap: 15px;
    margin-top: 32px;
    padding: 18px 20px;
    border-left: 2px solid #d7ad52;
    background: linear-gradient(90deg,
            rgba(215, 173, 82, 0.08),
            transparent);
}

.rfm-award-quote .quote-mark {
    color: #d7ad52;
    font-size: 38px;
    line-height: 0.8;
}

.rfm-award-quote p {
    margin: 0;
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   4. MOMENTS OF RECOGNITION
========================================================= */

.rfm-moments {
    width: calc(100% - 50px);
    max-width: 1320px;

    margin: 0 auto 85px;

    padding: 55px 35px 40px;

    background:
        linear-gradient(145deg,
            #111,
            #090909);

    border: 1px solid rgba(215, 173, 82, 0.18);

    position: relative;
}

.rfm-section-heading {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    text-align: center;
}

.rfm-section-heading small {
    display: block;

    color: #d7ad52;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 6px;
}

.rfm-section-heading h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(27px, 3vw, 38px);

    text-transform: uppercase;

    letter-spacing: 1px;
}

.rfm-heading-decoration {
    display: flex;
    align-items: center;

    gap: 7px;
}

.rfm-heading-decoration span {
    width: 65px;
    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            #d7ad52);
}

.rfm-heading-decoration i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #d7ad52;
}

.rfm-heading-decoration.reverse span {
    background:
        linear-gradient(90deg,
            #d7ad52,
            transparent);
}

.rfm-moments-subtitle {
    max-width: 650px;

    margin: 15px auto 35px;

    text-align: center;

    color: #777;

    font-size: 14px;

    line-height: 1.7;
}


/* GALLERY */

.rfm-moments-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.rfm-moment-card {
    height: 220px;

    position: relative;

    overflow: hidden;

    background: #111;

    border: 1px solid rgba(215, 173, 82, 0.35);

    cursor: pointer;
}

.rfm-moment-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}

.rfm-moment-card:hover img {
    transform: scale(1.08);

    filter: brightness(0.65);
}


/* IMAGE OVERLAY */

.rfm-moment-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 28px 15px 13px;

    background:
        linear-gradient(transparent,
            rgba(0, 0, 0, 0.85));

    opacity: 0;

    transform: translateY(10px);

    transition: 0.4s ease;
}

.rfm-moment-card:hover .rfm-moment-overlay {
    opacity: 1;
    transform: translateY(0);
}

.rfm-moment-overlay span {
    color: #d7ad52;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .rfm-banner-slider {
        height: 290px;
    }

    .rfm-featured-award {
        grid-template-columns: 1fr;
    }

    .rfm-featured-image {
        min-height: 450px;
    }

    .rfm-moments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .rfm-awards-intro {
        padding: 45px 15px 30px;
    }

    .rfm-intro-line {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .rfm-intro-line span {
        width: 30px;
    }

    .rfm-awards-intro h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .rfm-awards-intro p {
        font-size: 14px;
    }

    .rfm-award-banner {
        padding: 10px 12px 45px;
    }

    .rfm-banner-slider {
        height: 205px;
    }

    .rfm-banner-arrow {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }

    .rfm-featured-award {
        width: calc(100% - 24px);
    }

    .rfm-featured-image {
        min-height: 350px;
        padding: 25px;
    }

    .rfm-featured-content {
        padding: 35px 22px;
    }

    .rfm-featured-content h2 {
        font-size: 30px;
    }

    .rfm-featured-content h3 {
        font-size: 27px;
    }

    .rfm-moments {
        width: calc(100% - 24px);
        padding: 35px 12px 25px;
    }

    .rfm-heading-decoration {
        display: none;
    }

    .rfm-moments-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .rfm-moment-card {
        height: 145px;
    }

}

/* =========================================
   SUPPORTING PARTNERS
========================================= */
/* =========================================
   SUPPORTING PARTNERS
========================================= */

.partner-logos-section {
    padding: 85px 0 95px;

    background:
        radial-gradient(circle at 50% 0%, rgba(198, 160, 76, 0.10), transparent 40%),
        linear-gradient(180deg, #090909 0%, #111111 55%, #080808 100%);

    overflow: hidden;

    border-top: 1px solid rgba(198, 160, 76, 0.18);
    border-bottom: 1px solid rgba(198, 160, 76, 0.18);
}


/* =========================================
   HEADING
========================================= */

.partner-section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.partner-section-heading span {
    display: block;

    color: #c6a04c;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 10px;

    text-transform: uppercase;
}

.partner-section-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 40px;
    font-weight: 800;

    letter-spacing: -0.5px;
}

.partner-section-heading p {
    margin: 12px 0 0;

    color: #aaa;

    font-size: 15px;
}


/* GOLD LINE */

.partner-section-heading::after {
    content: "";

    display: block;

    width: 65px;
    height: 2px;

    margin: 20px auto 0;

    background: linear-gradient(90deg,
            transparent,
            #c6a04c,
            transparent);
}


/* =========================================
   MARQUEE
========================================= */

.logo-marquee {
    width: 100%;
    overflow: hidden;

    position: relative;
}


/* SIDE FADE */

.logo-marquee::before,
.logo-marquee::after {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    width: 130px;

    z-index: 2;

    pointer-events: none;
}

.logo-marquee::before {
    left: 0;

    background: linear-gradient(90deg,
            #090909,
            transparent);
}

.logo-marquee::after {
    right: 0;

    background: linear-gradient(270deg,
            #090909,
            transparent);
}


/* =========================================
   TRACK
========================================= */
.logo-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    align-items: center;

    width: max-content;
    gap: 25px;

    animation: logoScroll 50s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}


/* =========================================
   LOGO CARD
========================================= */

.logo-box {
    width: 190px;
    height: 115px;

    min-width: 190px;
    flex-shrink: 0;

    background: #ffffff;

    border: 1px solid rgba(198, 160, 76, 0.35);
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px;
}


.logo-box:hover {
    transform: translateY(-6px);

    border-color: rgba(198, 160, 76, 0.9);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(198, 160, 76, 0.18);
}


/* =========================================
   LOGO
========================================= */

.logo-box img {
    max-width: 110%;
    max-height: 82px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-box:hover img {
    transform: scale(1.06);
}


/* =========================================
   INFINITE SCROLL
========================================= */

@keyframes logoScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .award-banner {
        padding: 20px 15px 0;
    }

    .award-banner-slider {
        height: 280px;
    }

    .featured-award {
        grid-template-columns: 1fr;
    }

    .featured-award-image {
        min-height: 430px;
    }

    .recognition-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .award-banner-slider {
        height: 210px;

        border-radius:
            0 0 12px 12px;
    }

    .award-prev,
    .award-next {
        width: 36px;
        height: 36px;

        font-size: 27px;
    }

    .heading-script {
        font-size: 29px;
    }

    .awards-heading {
        padding: 30px 15px;
    }

    .awards-heading h1 {
        font-size: 38px;
    }

    .featured-award {
        width: calc(100% - 25px);
        margin-bottom: 45px;
    }

    .featured-award-image {
        min-height: 350px;
    }

    .featured-award-image img {
        padding: 20px;
    }

    .featured-award-content {
        padding: 30px 22px;
    }

    .featured-award-content h3 {
        font-size: 29px;
    }

    .recognition-section {
        width: calc(100% - 25px);
        padding: 28px 15px;
    }

    .recognition-heading {
        gap: 7px;
    }

    .recognition-heading h2 {
        font-size: 15px;
    }

    .recognition-line {
        width: 35px;
    }

    .recognition-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .recognition-item {
        height: 150px;
    }


    /* =========================================
       PARTNERS - MOBILE
    ========================================= */

    .partner-logos-section {
        padding: 65px 0 70px;
    }

    .partner-section-heading h2 {
        font-size: 29px;
    }

    .partner-section-heading p {
        font-size: 13px;
        padding: 0 20px;
    }

    .logo-box {
        width: 150px;
        height: 95px;

        padding: 10px;
    }

    .logo-box img {
        max-width: 110%;
        max-height: 82px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .logo-marquee::before,
    .logo-marquee::after {
        width: 55px;
    }

}

/* =========================================
   RFM TERMS & CONDITIONS
========================================= */

.terms-page {
    background: #080808;
    color: #fff;
    overflow: hidden;
}


/* =========================================
   HERO
========================================= */

.terms-hero {
    min-height: 440px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 110px 20px 80px;

    position: relative;

    background:
        radial-gradient(circle at 50% 25%,
            rgba(198, 160, 76, 0.14),
            transparent 42%),
        linear-gradient(180deg,
            #050505 0%,
            #101010 100%);

    border-bottom: 1px solid rgba(198, 160, 76, 0.18);
}

.terms-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(198, 160, 76, 0.05);

    border-radius: 50%;

    top: -300px;
}

.terms-hero-content {
    position: relative;

    z-index: 2;

    max-width: 850px;
}

.terms-eyebrow {
    display: block;

    margin-bottom: 18px;

    color: #c6a04c;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 4px;
}

.terms-hero h1 {
    margin: 0;

    font-size: clamp(48px, 7vw, 82px);

    line-height: 1.05;

    font-weight: 800;

    color: #fff;
}

.terms-hero h1 strong {
    color: #c6a04c;
}

.terms-hero p {
    max-width: 650px;

    margin: 25px auto 0;

    color: #999;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   CONTENT
========================================= */

.terms-content {
    padding: 95px 20px 110px;

    background:
        radial-gradient(circle at 10% 10%,
            rgba(198, 160, 76, 0.045),
            transparent 30%),
        #0b0b0b;
}

.terms-container {
    width: min(1050px, 100%);

    margin: auto;
}


/* =========================================
   INTRO
========================================= */

.terms-intro {
    text-align: center;

    max-width: 780px;

    margin: 0 auto 60px;
}

.terms-intro>span {
    display: inline-block;

    margin-bottom: 14px;

    color: #c6a04c;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}

.terms-intro h2 {
    margin: 0 0 18px;

    color: #fff;

    font-size: 42px;

    font-weight: 800;
}

.terms-intro p {
    margin: 0;

    color: #929292;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   TERMS CARD
========================================= */

.terms-card {
    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 30px;

    padding: 38px 40px;

    margin-bottom: 18px;

    position: relative;

    background:
        linear-gradient(145deg,
            #171717,
            #0d0d0d);

    border: 1px solid rgba(198, 160, 76, 0.15);

    border-radius: 14px;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.terms-card:hover {
    transform: translateY(-4px);

    border-color: rgba(198, 160, 76, 0.45);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .45);
}


/* NUMBER */

.terms-number {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(198, 160, 76, .4);

    color: #c6a04c;

    font-size: 13px;

    font-weight: 800;
}


/* BODY */

.terms-card-body h3 {
    margin: 0 0 15px;

    color: #fff;

    font-size: 23px;

    font-weight: 700;
}

.terms-card-body p {
    margin: 0 0 12px;

    color: #999;

    font-size: 15px;

    line-height: 1.8;
}

.terms-card-body p:last-child {
    margin-bottom: 0;
}


/* =========================================
   CTA
========================================= */

.terms-cta {
    margin-top: 60px;

    padding: 42px 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    background:
        radial-gradient(circle at 85% 50%,
            rgba(198, 160, 76, .12),
            transparent 45%),
        #151515;

    border: 1px solid rgba(198, 160, 76, .25);

    border-radius: 16px;
}

.terms-cta-text>span {
    color: #c6a04c;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}

.terms-cta h2 {
    margin: 10px 0;

    color: #fff;

    font-size: 31px;
}

.terms-cta p {
    margin: 0;

    max-width: 650px;

    color: #999;

    font-size: 14px;

    line-height: 1.7;
}

.terms-cta a {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 15px 25px;

    text-decoration: none;

    color: #080808;

    background: #c6a04c;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 800;

    transition: .3s ease;
}

.terms-cta a:hover {
    background: #fff;

    transform: translateY(-3px);
}

.terms-cta a b {
    font-size: 20px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .terms-hero {
        min-height: 380px;

        padding: 95px 20px 65px;
    }

    .terms-hero h1 {
        font-size: 48px;
    }

    .terms-hero p {
        font-size: 14px;
    }

    .terms-content {
        padding: 65px 15px 80px;
    }

    .terms-intro {
        margin-bottom: 40px;
    }

    .terms-intro h2 {
        font-size: 31px;
    }

    .terms-card {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 28px 22px;
    }

    .terms-number {
        width: 48px;
        height: 48px;
    }

    .terms-card-body h3 {
        font-size: 20px;
    }

    .terms-card-body p {
        font-size: 14px;
    }

    .terms-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px 24px;
    }

    .terms-cta h2 {
        font-size: 26px;
    }

    .terms-cta a {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================
   RFM PRIVACY POLICY
========================================= */

.privacy-page {
    background: #080808;
    color: #ffffff;
    overflow: hidden;
}


/* =========================================
   HERO
========================================= */

.privacy-hero {
    min-height: 440px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 110px 20px 80px;

    position: relative;

    background:
        radial-gradient(circle at 50% 25%,
            rgba(198, 160, 76, 0.14),
            transparent 42%),
        linear-gradient(180deg,
            #050505 0%,
            #101010 100%);

    border-bottom: 1px solid rgba(198, 160, 76, 0.18);
}

.privacy-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(198, 160, 76, 0.05);

    border-radius: 50%;

    top: -300px;
}

.privacy-hero-content {
    position: relative;

    z-index: 2;

    max-width: 850px;
}

.privacy-eyebrow {
    display: block;

    margin-bottom: 18px;

    color: #c6a04c;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 4px;
}

.privacy-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(48px, 7vw, 82px);

    line-height: 1.05;

    font-weight: 800;
}

.privacy-hero h1 strong {
    color: #c6a04c;
}

.privacy-hero p {
    max-width: 650px;

    margin: 25px auto 0;

    color: #999999;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   CONTENT
========================================= */

.privacy-content {
    padding: 95px 20px 110px;

    background:
        radial-gradient(circle at 10% 10%,
            rgba(198, 160, 76, 0.045),
            transparent 30%),
        #0b0b0b;
}

.privacy-container {
    width: min(1050px, 100%);

    margin: auto;
}


/* =========================================
   INTRO
========================================= */

.privacy-intro {
    max-width: 780px;

    margin: 0 auto 60px;

    text-align: center;
}

.privacy-intro>span {
    display: inline-block;

    margin-bottom: 14px;

    color: #c6a04c;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}

.privacy-intro h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 42px;

    font-weight: 800;
}

.privacy-intro p {
    margin: 0;

    color: #929292;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   PRIVACY CARD
========================================= */

.privacy-card {
    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 30px;

    padding: 38px 40px;

    margin-bottom: 18px;

    background:
        linear-gradient(145deg,
            #171717,
            #0d0d0d);

    border: 1px solid rgba(198, 160, 76, 0.15);

    border-radius: 14px;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.privacy-card:hover {
    transform: translateY(-4px);

    border-color: rgba(198, 160, 76, 0.45);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .45);
}


/* NUMBER */

.privacy-number {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(198, 160, 76, .4);

    color: #c6a04c;

    font-size: 13px;

    font-weight: 800;
}


/* BODY */

.privacy-card-body h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 23px;

    font-weight: 700;
}

.privacy-card-body p {
    margin: 0 0 12px;

    color: #999999;

    font-size: 15px;

    line-height: 1.8;
}

.privacy-card-body p:last-child {
    margin-bottom: 0;
}


/* =========================================
   CTA
========================================= */

.privacy-cta {
    margin-top: 60px;

    padding: 42px 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    background:
        radial-gradient(circle at 85% 50%,
            rgba(198, 160, 76, .12),
            transparent 45%),
        #151515;

    border: 1px solid rgba(198, 160, 76, .25);

    border-radius: 16px;
}

.privacy-cta-text>span {
    color: #c6a04c;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}

.privacy-cta h2 {
    margin: 10px 0;

    color: #ffffff;

    font-size: 31px;
}

.privacy-cta p {
    max-width: 650px;

    margin: 0;

    color: #999999;

    font-size: 14px;

    line-height: 1.7;
}

.privacy-cta a {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 15px 25px;

    color: #080808;

    background: #c6a04c;

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition: .3s ease;
}

.privacy-cta a:hover {
    background: #ffffff;

    transform: translateY(-3px);
}

.privacy-cta a b {
    font-size: 20px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .privacy-hero {
        min-height: 380px;

        padding: 95px 20px 65px;
    }

    .privacy-hero h1 {
        font-size: 48px;
    }

    .privacy-hero p {
        font-size: 14px;
    }

    .privacy-content {
        padding: 65px 15px 80px;
    }

    .privacy-intro {
        margin-bottom: 40px;
    }

    .privacy-intro h2 {
        font-size: 31px;
    }

    .privacy-card {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 28px 22px;
    }

    .privacy-number {
        width: 48px;
        height: 48px;
    }

    .privacy-card-body h3 {
        font-size: 20px;
    }

    .privacy-card-body p {
        font-size: 14px;
    }

    .privacy-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px 24px;
    }

    .privacy-cta h2 {
        font-size: 26px;
    }

    .privacy-cta a {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================
   RFM MEDIA COVERAGE - BASE
========================================= */

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    /* Add your custom font here */
}

.rfm-media-page {
    width: 100%;
    background: #080808;
    color: #ffffff;
    overflow: hidden;
}

.rfm-media-container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.rfm-media-header {
    width: 100%;
    padding: 110px 0 80px;
    background: radial-gradient(circle at 85% 20%, rgba(207, 174, 84, 0.10), transparent 30%), #080808;
}

.rfm-media-top {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #cda957;
    font-size: 9px;
    letter-spacing: 3px;
}

.rfm-media-top i {
    width: 45px;
    height: 1px;
    display: block;
    background: #cda957;
}

.rfm-media-header-content {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: end;
    margin-top: 35px;
}

.rfm-media-title h1 {
    margin: 0;
    font-size: clamp(65px, 9vw, 125px);
    line-height: .82;
    font-weight: 300;
    letter-spacing: -7px;
}

.rfm-media-title h1 span {
    display: block;
    color: #cda957;
    padding-left: 90px;
    font-weight: 600;
}

.rfm-media-description {
    padding-bottom: 5px;
}

.rfm-media-description p {
    max-width: 450px;
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.9;
}

.rfm-media-line {
    width: 100%;
    height: 1px;
    margin: 28px 0 16px;
    background: rgba(255, 255, 255, .10);
}

.rfm-media-description>span {
    color: #555;
    font-size: 8px;
    letter-spacing: 2px;
}

/* =========================================
   CONTENT
========================================= */

.rfm-media-content {
    width: 100%;
    padding: 80px 0 120px;
    background: #0d0d0d;
}

.rfm-media-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 55px;
}

.rfm-media-section-heading>div>span {
    color: #cda957;
    font-size: 8px;
    letter-spacing: 3px;
}

.rfm-media-section-heading h2 {
    margin: 15px 0 0;
    font-size: clamp(42px, 5vw, 70px);
    line-height: .95;
    font-weight: 300;
    letter-spacing: -4px;
}

.rfm-media-section-heading h2 strong {
    color: #cda957;
    font-weight: 600;
}

.rfm-media-section-heading>p {
    width: 330px;
    margin: 0;
    color: #6e6e6e;
    font-size: 12px;
    line-height: 1.9;
}

/* =========================================
   MEDIA MASONRY GRID (FIXED FOR GAPS)
========================================= */

.rfm-media-grid {
    width: 100%;
    /* Grid की जगह Masonry column layout का इस्तेमाल */
    column-count: 3;
    column-gap: 22px;
}

/* =========================================
   MEDIA BOX & IMAGE
========================================= */

.rfm-media-box {
    width: 100%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 5px;
    overflow: hidden;

    /* Masonry layout के लिए जरुरी कोड */
    display: inline-block;
    margin-bottom: 22px;
    break-inside: avoid;
    /* बॉक्स को बीच से कटने से रोकता है */

    transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.rfm-media-box:hover {
    transform: translateY(-7px);
    border-color: rgba(205, 169, 87, .45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.rfm-media-image {
    position: relative;
    width: 100%;
    background: #151515;
    overflow: hidden;
    /* ज़ूम को बॉक्स के अंदर रखने के लिए */
}

.rfm-media-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    vertical-align: middle;
    transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.rfm-media-box:hover .rfm-media-image img {
    transform: scale(1.035);
    filter: brightness(.72);
}

/* =========================================
   BOTTOM
========================================= */

.rfm-media-bottom {
    width: 100%;
    padding: 100px 0;
    background: radial-gradient(circle at 50% 100%, rgba(205, 169, 87, .09), transparent 35%), #080808;
}

.rfm-media-bottom-content {
    padding: 70px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.rfm-media-bottom-content>span {
    color: #cda957;
    font-size: 8px;
    letter-spacing: 3px;
}

.rfm-media-bottom-content h2 {
    margin: 20px 0 15px;
    font-size: clamp(45px, 6vw, 80px);
    line-height: .9;
    font-weight: 300;
    letter-spacing: -5px;
}

.rfm-media-bottom-content h2 strong {
    color: #cda957;
    font-weight: 600;
}

.rfm-media-bottom-content p {
    margin: 0;
    color: #666;
    font-size: 12px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
    .rfm-media-header-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .rfm-media-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .rfm-media-section-heading>p {
        width: 100%;
    }

    /* Tablet पर 2 कॉलम */
    .rfm-media-grid {
        column-count: 2;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
    .rfm-media-container {
        width: 90%;
    }

    .rfm-media-header {
        padding: 80px 0 60px;
    }

    .rfm-media-title h1 {
        font-size: 65px;
        letter-spacing: -4px;
    }

    .rfm-media-title h1 span {
        padding-left: 30px;
    }

    .rfm-media-content {
        padding: 60px 0 80px;
    }

    /* Mobile पर 1 कॉलम */
    .rfm-media-grid {
        column-count: 1;
    }

    .rfm-media-section-heading h2 {
        font-size: 48px;
    }

    .rfm-media-bottom {
        padding: 80px 0;
    }

    .rfm-media-bottom-content {
        padding: 55px 0;
    }

    .rfm-media-bottom-content h2 {
        font-size: 48px;
        letter-spacing: -3px;
    }
}

.nomination-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    visibility: hidden;
    opacity: 0;

    transition: .3s ease;
}

.nomination-modal.active {
    visibility: visible;
    opacity: 1;
}

.nomination-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .9);
}

.nomination-popup {
    position: relative;
    z-index: 2;

    width: min(900px, 92%);
    max-height: 90vh;

    overflow-y: auto;

    background: #111;
}

body.nomination-open {
    overflow: hidden;
}

.nomination-btn,
.mobile-nomination {
    cursor: pointer;
}

/* =========================================================
   FINAL NOMINATION POPUP
========================================================= */

.nomination-btn {
    border: 1px solid #d4af5a;
    outline: none;
    cursor: pointer;

    background: #d4af5a;
    color: #080808;

    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;

    padding: 12px 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: all .3s ease;
}

.nomination-btn:hover {
    background: transparent;
    color: #d4af5a;
}


/* =========================================================
   POPUP MAIN
========================================================= */

.nomination-modal {

    position: fixed !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    z-index: 999999 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 20px !important;

    box-sizing: border-box;

    visibility: hidden;
    opacity: 0;

    pointer-events: none;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


/* OPEN */

.nomination-modal.active {

    visibility: visible;

    opacity: 1;

    pointer-events: auto;
}


/* =========================================================
   DARK BACKGROUND
========================================================= */

.nomination-overlay {

    position: absolute !important;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        radial-gradient(circle at 50% 20%,
            rgba(212, 175, 90, .10),
            transparent 35%),
        rgba(0, 0, 0, .90);

    backdrop-filter: blur(12px);

    z-index: 1;
}


/* =========================================================
   POPUP BOX
========================================================= */

.nomination-popup {

    position: relative !important;

    z-index: 2 !important;

    width: 920px !important;

    max-width: 100% !important;

    max-height: 92vh !important;

    overflow-y: auto !important;

    box-sizing: border-box;

    background:
        linear-gradient(145deg,
            #151515,
            #0b0b0b) !important;

    border: 1px solid rgba(212, 175, 90, .30) !important;

    border-radius: 2px;

    box-shadow:
        0 40px 120px rgba(0, 0, 0, .85),
        0 0 60px rgba(212, 175, 90, .05);

    transform:
        translateY(30px) scale(.97);

    transition:
        transform .4s cubic-bezier(.22, 1, .36, 1);

    color: #fff;

    scrollbar-width: thin;
    scrollbar-color: #d4af5a #111;
}


.nomination-modal.active .nomination-popup {

    transform:
        translateY(0) scale(1);
}


/* Chrome scrollbar */

.nomination-popup::-webkit-scrollbar {
    width: 5px;
}

.nomination-popup::-webkit-scrollbar-track {
    background: #090909;
}

.nomination-popup::-webkit-scrollbar-thumb {
    background: #d4af5a;
}


/* =========================================================
   POPUP HEADER
========================================================= */

.popup-header {

    position: sticky !important;

    top: 0;

    z-index: 10;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 30px;

    padding: 32px 40px;

    background: rgba(16, 16, 16, .97);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(15px);
}


/* small brand */

.popup-header span {

    display: block;

    color: #d4af5a;

    font-family: 'Inter', sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 8px;
}


/* title */

.popup-header h2 {

    margin: 0;

    color: #f5f2eb;

    font-family: 'Cormorant Garamond', serif;

    font-size: 42px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: -1px;
}


.popup-header h2 strong {

    color: #d4af5a;

    font-weight: 600;
}


.popup-header p {

    margin: 10px 0 0;

    color: #777;

    font-family: 'Inter', sans-serif;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.close-nomination {

    width: 42px !important;
    height: 42px !important;

    min-width: 42px !important;

    padding: 0 !important;

    border: 1px solid rgba(255, 255, 255, .14) !important;

    border-radius: 50% !important;

    background: transparent !important;

    color: #aaa !important;

    font-family: Arial, sans-serif !important;

    font-size: 25px !important;

    font-weight: 300 !important;

    line-height: 40px !important;

    text-align: center;

    cursor: pointer;

    transition: all .3s ease;
}


.close-nomination:hover {

    background: #d4af5a !important;

    border-color: #d4af5a !important;

    color: #080808 !important;

    transform: rotate(90deg);
}


/* =========================================================
   FORM
========================================================= */

.nomination-form {

    padding: 10px 40px 40px;

    font-family: 'Inter', sans-serif;
}


/* =========================================================
   SECTION
========================================================= */

.popup-section-title {

    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    margin: 32px 0 20px;

    padding-bottom: 16px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}


.popup-section-title::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -1px;

    width: 55px;

    height: 1px;

    background: #d4af5a;
}


.popup-section-title>span {

    width: 30px;

    height: 30px;

    min-width: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(212, 175, 90, .5);

    color: #d4af5a;

    font-family: 'Cormorant Garamond', serif;

    font-size: 15px;

    font-weight: 600;
}


.popup-section-title h3 {

    margin: 0;

    color: #eee;

    font-family: 'Cormorant Garamond', serif;

    font-size: 21px;

    font-weight: 600;
}


.popup-section-title p {

    margin: 2px 0 0;

    color: #666;

    font-size: 9px;

    line-height: 1.4;
}


/* =========================================================
   GRID
========================================================= */

.popup-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 17px;
}


.popup-field.full {

    grid-column: 1 / -1;
}


/* =========================================================
   LABEL
========================================================= */

.popup-field label {

    display: block;

    margin-bottom: 8px;

    color: #aaa;

    font-family: 'Inter', sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.popup-field label b {

    color: #d4af5a;
}


/* =========================================================
   INPUT / SELECT / TEXTAREA
========================================================= */

.popup-field input,
.popup-field select,
.popup-field textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, .09);

    border-radius: 2px;

    outline: none;

    background: #090909;

    color: #eee;

    font-family: 'Inter', sans-serif;

    font-size: 11px;

    transition: all .25s ease;
}


.popup-field input,
.popup-field select {

    height: 49px;

    padding: 0 14px;
}


.popup-field textarea {

    min-height: 105px;

    padding: 13px 14px;

    resize: vertical;

    line-height: 1.6;
}


.popup-field input::placeholder,
.popup-field textarea::placeholder {

    color: #4d4d4d;
}


.popup-field input:focus,
.popup-field select:focus,
.popup-field textarea:focus {

    border-color: rgba(212, 175, 90, .7);

    box-shadow:
        0 0 0 3px rgba(212, 175, 90, .06);

    background: #0d0d0d;
}


/* =========================================================
   GST
========================================================= */

.gst-field {
    display: none;
}

.gst-field.show {
    display: block;
}


/* =========================================================
   FILE UPLOAD
========================================================= */

.popup-file {

    position: relative;

    min-height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px dashed rgba(212, 175, 90, .30);

    background: #090909;

    text-align: center;

    transition: .3s ease;
}


.popup-file:hover {

    border-color: #d4af5a;

    background: rgba(212, 175, 90, .03);
}


.popup-file input {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    cursor: pointer;
}


.popup-file strong {

    display: block;

    color: #d4af5a;

    font-family: 'Cormorant Garamond', serif;

    font-size: 17px;

    font-weight: 600;
}


.popup-file small {

    display: block;

    margin-top: 5px;

    color: #555;

    font-size: 8px;

    letter-spacing: .5px;
}


/* =========================================================
   DECLARATION
========================================================= */

.popup-declaration {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 25px;

    padding: 15px;

    border: 1px solid rgba(255, 255, 255, .07);

    background: #0a0a0a;

    cursor: pointer;
}


.popup-declaration input {

    width: 15px;

    height: 15px;

    margin: 1px 0 0;

    accent-color: #d4af5a;
}


.popup-declaration span {

    color: #777;

    font-size: 9px;

    line-height: 1.7;
}


/* =========================================================
   SUBMIT
========================================================= */

.popup-submit {

    width: 100%;

    height: 56px;

    margin-top: 16px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 1px solid #d4af5a !important;

    border-radius: 2px;

    background: #d4af5a !important;

    color: #080808 !important;

    font-family: 'Inter', sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    cursor: pointer;

    transition: .3s ease;
}


.popup-submit:hover {

    background: transparent !important;

    color: #d4af5a !important;
}


.popup-submit b {

    font-size: 18px;

    font-weight: 400;
}


/* =========================================================
   BODY LOCK
========================================================= */

body.nomination-open {
    overflow: hidden !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .nomination-modal {

        padding: 10px !important;
    }


    .nomination-popup {

        width: 100% !important;

        max-height: 95vh !important;
    }


    .popup-header {

        padding: 24px 20px;
    }


    .popup-header h2 {

        font-size: 34px;
    }


    .nomination-form {

        padding: 5px 20px 25px;
    }


    .popup-grid {

        grid-template-columns: 1fr;
    }


    .popup-field.full {

        grid-column: auto;
    }


    .popup-section-title {

        margin-top: 28px;
    }

}


@media (max-width: 400px) {

    .popup-header h2 {

        font-size: 30px;
    }

    .popup-header {

        padding: 20px 16px;
    }

    .nomination-form {

        padding-left: 16px;
        padding-right: 16px;
    }

}


/* =====================================================
   FINAL MOBILE RESPONSIVE FIXES (Copy & Paste)
===================================================== */

/* Website ko horizontal scroll hone se rokne ke liye */
html,
body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

@media (max-width: 900px) {

    /* Hero Section Fix */
    .hero {
        height: auto !important;
        min-height: 100vh;
        padding: 50px 0;
    }

    .hero-container {
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .hero h1 {
        font-size: 36px !important;
        line-height: 1.2;
    }

    .hero-values,
    .presented-by,
    .coming-soon {
        justify-content: center !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px;
    }

    .hero-buttons a {
        width: 100% !important;
        box-sizing: border-box;
        text-align: center;
    }

    /* 3D Rotating Trophy Fix (Jo screen tod rahi thi) */
    .rotating-trophy {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        transform: none !important;
        width: 220px !important;
        height: 220px !important;
        margin: 30px auto 0 !important;
    }

    .rotating-trophy img {
        width: 100% !important;
        height: auto !important;
    }
}

/* =====================================================
   FINAL MOBILE NAVBAR & TOGGLE FIX (Paste at the bottom)
===================================================== */

@media (max-width: 900px) {

    /* Navbar Toggle Button Box/Border Fix */
    .menu-toggle,
    .navbar-toggle,
    .hamburger,
    .nav-toggle {
        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        padding: 5px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer;
    }

    /* Agar button ke andar koi border ya box-sizing issue ho */
    .menu-toggle *,
    .navbar-toggle *,
    .hamburger * {
        border: none !important;
        box-shadow: none !important;
    }

    /* Navbar container alignment */
    .navbar {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 10px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Nominate button ko mobile par fit karne ke liye */
    .navbar .btn-nominate,
    .navbar a[href*="nominate"],
    .navbar .nominate-btn {
        padding: 6px 10px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
    }
}


/*movies section start here*/
/* =========================================
   MOVIES PAGE
========================================= */

.movies-page {
    width: 100%;
    background: #080808;
    color: #ffffff;
}


/* =========================================
   TOP HEADING
========================================= */

.movies-top-heading {
    width: 100%;
    text-align: center;
    padding: 150px 25px 55px;
    background: #080808;
}

.movies-top-heading span,
.movies-section-heading span {
    display: block;
    margin-bottom: 12px;
    color: #c9a227;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.movies-top-heading h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: uppercase;
}


/* =========================================
   COMING SOON BANNER
========================================= */

.coming-soon-banner {
    width: 100%;
    padding: 0 25px 110px;
    background: #080808;
    overflow: hidden;
}

.banner-frame {
    position: relative;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 7px;
    background: #0b0b0b;
    overflow: hidden;
}


/* IMAGE WRAPPER */

.banner-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #050505;
    z-index: 2;
}


/* IMAGE */

.banner-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    transition:
        transform 0.8s cubic-bezier(.2, .8, .2, 1),
        filter 0.8s ease;
}


/* =========================================
   ANIMATED BORDER
========================================= */

.border-line {
    position: absolute;
    display: block;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;

    background: linear-gradient(90deg,
            transparent,
            #9b7416,
            #f8dc75,
            #c9a227,
            transparent);
}


/* TOP */

.border-top {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
}


/* RIGHT */

.border-right {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;

    background: linear-gradient(180deg,
            transparent,
            #9b7416,
            #f8dc75,
            #c9a227,
            transparent);
}


/* BOTTOM */

.border-bottom {
    right: -100%;
    bottom: 0;
    width: 100%;
    height: 2px;
}


/* LEFT */

.border-left {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;

    background: linear-gradient(180deg,
            transparent,
            #9b7416,
            #f8dc75,
            #c9a227,
            transparent);
}


/* =========================================
   HOVER BORDER ANIMATION
========================================= */

.banner-frame:hover .border-line {
    opacity: 1;
}

.banner-frame:hover .border-top {
    animation: moveTop 1.4s linear infinite;
}

.banner-frame:hover .border-right {
    animation: moveRight 1.4s linear infinite;
    animation-delay: .35s;
}

.banner-frame:hover .border-bottom {
    animation: moveBottom 1.4s linear infinite;
    animation-delay: .7s;
}

.banner-frame:hover .border-left {
    animation: moveLeft 1.4s linear infinite;
    animation-delay: 1.05s;
}


/* =========================================
   BORDER KEYFRAMES
========================================= */

@keyframes moveTop {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes moveRight {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

@keyframes moveBottom {
    0% {
        right: -100%;
    }

    100% {
        right: 100%;
    }
}

@keyframes moveLeft {
    0% {
        bottom: -100%;
    }

    100% {
        bottom: 100%;
    }
}


/* =========================================
   BANNER GLOW
========================================= */

.banner-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;

    border: 1px solid rgba(201, 162, 39, 0.18);

    box-shadow:
        0 0 0 rgba(201, 162, 39, 0);

    transition:
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

.banner-frame:hover::after {
    border-color: rgba(248, 220, 117, 0.75);

    box-shadow:
        0 0 18px rgba(201, 162, 39, 0.30),
        0 0 45px rgba(201, 162, 39, 0.14);
}


/* =========================================
   IMAGE HOVER
========================================= */

.banner-frame:hover .banner-image-wrap img {
    transform: scale(1.025);
    filter: brightness(1.08);
}


/* =========================================
   COMPLETED MOVIES
========================================= */

.completed-movies-section {
    width: 100%;
    padding: 110px 25px 130px;
    background: #0d0d0d;
}

.movies-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* SECTION HEADING */

.movies-section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.movies-section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}


/* =========================================
   MOVIE GRID
========================================= */

.completed-movies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* =========================================
   MOVIE CARD
========================================= */

.completed-movie-card {
    position: relative;
    background: #111111;
    border: 1px solid rgba(201, 162, 39, 0.20);
    overflow: hidden;

    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

.completed-movie-card:hover {
    transform: translateY(-8px);

    border-color: rgba(201, 162, 39, 0.75);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.55),
        0 0 25px rgba(201, 162, 39, 0.10);
}


/* MOVIE IMAGE */

.completed-movie-image {
    width: 100%;
    overflow: hidden;
}

.completed-movie-image img {
    display: block;
    width: 100%;
    height: auto;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.completed-movie-card:hover .completed-movie-image img {
    transform: scale(1.045);
    filter: brightness(1.06);
}


/* MOVIE CONTENT */

.completed-movie-content {
    padding: 25px 25px 28px;
}

.completed-movie-content span {
    display: block;
    margin-bottom: 9px;

    color: #c9a227;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.completed-movie-content h3 {
    margin: 0 0 10px;

    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
}

.completed-movie-content p {
    margin: 0;

    color: #999999;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .movies-top-heading {
        padding: 110px 20px 40px;
    }

    .coming-soon-banner {
        padding: 0 15px 75px;
    }

    .banner-frame {
        padding: 5px;
    }

    .banner-frame:hover .banner-image-wrap img {
        transform: scale(1.015);
    }

    .completed-movies-section {
        padding: 80px 15px 90px;
    }

    .completed-movies-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .movies-section-heading {
        margin-bottom: 40px;
    }

    .completed-movie-content {
        padding: 22px;
    }

}

/* =========================================================
   DANDIYA NIGHT DARBHANGA
   PREMIUM CLEAN EVENT PAGE
========================================================= */

.dandiya-page {

    --gold: #d4af37;
    --gold-light: #f2d675;
    --gold-dark: #8d6b16;

    --black: #070707;
    --dark: #0b0b0b;
    --card: #111111;

    --white: #ffffff;
    --muted: #999999;

    width: 100%;
    background: var(--black);
    color: var(--white);

    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.dandiya-container {

    width: 100%;
    max-width: 1220px;

    margin: 0 auto;

    padding-left: 25px;
    padding-right: 25px;
}


.section-label {

    display: inline-block;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   HERO
========================================================= */

.dandiya-hero {

    position: relative;

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    background:

        url("images/dandiya_bg.png") center / cover no-repeat;

    isolation: isolate;
}


/* GOLD RADIAL LIGHT */

.dandiya-hero::before {

    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(212, 175, 55, .13),
            transparent 42%);

    pointer-events: none;
}


/* BOTTOM FADE */

.dandiya-hero::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 180px;

    background:
        linear-gradient(transparent,
            var(--black));

    pointer-events: none;
}


/* HERO FRAME 

.dandiya-hero-overlay {

    position: absolute;

    inset: 20px;

    border: 1px solid rgba(212,175,55,.20);

    transition: .6s ease;

    pointer-events: none;
}
*/

.dandiya-hero:hover .dandiya-hero-overlay {

    border-color:
        rgba(242, 214, 117, .48);

    box-shadow:
        inset 0 0 45px rgba(212, 175, 55, .04),
        0 0 45px rgba(212, 175, 55, .05);
}


/* HERO CONTENT */

.dandiya-hero-content {

    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1000px;

    padding: 120px 25px;

    text-align: center;

    animation:
        heroReveal 1.1s ease forwards;
}


@keyframes heroReveal {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.dandiya-eyebrow {

    display: block;

    margin-bottom: 25px;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;
}


.dandiya-hero h1 {

    margin: 0;

    font-size: clamp(55px, 9vw, 125px);

    line-height: .88;

    font-weight: 800;

    letter-spacing: -4px;

    text-transform: uppercase;
}


.dandiya-hero h1 strong {

    display: block;

    color: transparent;

    background:
        linear-gradient(90deg,
            #9b7416,
            #f7dc78,
            #b88d20,
            #f7dc78);

    background-size: 250% auto;

    -webkit-background-clip: text;
    background-clip: text;

    animation:
        goldShine 5s linear infinite;
}


@keyframes goldShine {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 250% center;
    }

}


.dandiya-hero p {

    max-width: 650px;

    margin: 30px auto 38px;

    color: #d0d0d0;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   BUTTONS
========================================================= */

.dandiya-hero-actions {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


.dandiya-btn {

    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    min-width: 190px;

    padding: 16px 25px;

    border: 1px solid var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    text-decoration: none;
    text-transform: uppercase;

    overflow: hidden;

    transition: .45s ease;
}


.dandiya-btn span {

    font-size: 18px;

    transition: .35s ease;
}


.dandiya-btn-primary {

    color: #080808;

    background: var(--gold);
}


.dandiya-btn-primary::before {

    content: "";

    position: absolute;

    inset: 0;

    background: #ffffff;

    transform: translateX(-105%);

    transition: .45s ease;
}


.dandiya-btn-primary:hover::before {

    transform: translateX(0);
}


.dandiya-btn-primary:hover span {

    transform: translateX(5px);
}


.dandiya-btn-outline {

    color: #ffffff;

    background: transparent;
}


.dandiya-btn-outline:hover {

    color: #080808;

    background: var(--gold);

    box-shadow:
        0 0 25px rgba(212, 175, 55, .18);
}


/* =========================================================
   SCROLL
========================================================= */

.dandiya-scroll {

    position: absolute;

    z-index: 4;

    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 12px;

    color: #777;

    font-size: 9px;

    letter-spacing: 3px;
}


.dandiya-scroll span {

    display: block;

    width: 30px;
    height: 1px;

    background: var(--gold);

    animation:
        scrollLine 1.8s ease-in-out infinite;
}


@keyframes scrollLine {

    0%,
    100% {
        transform: scaleX(.4);
        opacity: .4;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

}


/* =========================================================
   DANDIYA VIBES GALLERY
========================================================= */

.dandiya-gallery {
    width: 100%;
    padding: 105px 0 115px;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(212, 175, 55, .10),
            transparent 45%),
        linear-gradient(180deg,
            #080808 0%,
            #101010 50%,
            #080808 100%);

    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.dandiya-gallery .dandiya-section-head {
    text-align: center;
    margin-bottom: 55px;
}

.dandiya-gallery .section-label {
    display: block;

    color: #d4af37;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 12px;
}

.dandiya-gallery .dandiya-section-head h2 {
    margin: 0;

    color: #ffffff;

    font-size: 48px;
    font-weight: 800;

    letter-spacing: -1px;
}

.dandiya-gallery .dandiya-section-head h2 span {
    color: #d4af37;
}

.dandiya-gallery .dandiya-section-head p {
    margin: 14px auto 0;

    max-width: 600px;

    color: #999;

    font-size: 15px;
}


/* GOLD LINE */

.dandiya-gallery .dandiya-section-head::after {
    content: "";

    display: block;

    width: 75px;
    height: 2px;

    margin: 22px auto 0;

    background:
        linear-gradient(90deg,
            transparent,
            #d4af37,
            transparent);
}

/* =========================================================
   STATIC GALLERY GRID WRAPPER
========================================================= */

.dandiya-gallery-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

    position: relative;
}


/* =========================================================
   IMAGE CARD
========================================================= */

.dandiya-gallery-card {
    position: relative;

    width: 100%;
    height: 245px;

    overflow: hidden;

    border-radius: 28px;

    background: #111;

    border: 1px solid rgba(212, 175, 55, .28);

    box-shadow: 0 15px 40px rgba(0, 0, 0, .45);

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}


/* IMAGE */

.dandiya-gallery-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2, .8, .2, 1),
        filter .5s ease;
}


/* DARK OVERLAY */

.dandiya-gallery-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0) 45%,
            rgba(0, 0, 0, .25));

    pointer-events: none;

    transition: .45s ease;
}


/* GOLD BORDER GLOW */

.dandiya-gallery-card::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 28px;

    border: 1px solid transparent;

    background:
        linear-gradient(135deg,
            rgba(212, 175, 55, .8),
            transparent 35%,
            transparent 65%,
            rgba(212, 175, 55, .5)) border-box;

    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    opacity: 0;

    transition: .45s ease;

    z-index: 2;

    pointer-events: none;
}


/* HOVER EFFECTS */

.dandiya-gallery-card:hover {
    transform: translateY(-8px) scale(1.025);

    border-color: rgba(212, 175, 55, .8);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, .65),
        0 0 30px rgba(212, 175, 55, .12);
}

.dandiya-gallery-card:hover::before {
    opacity: 1;
}

.dandiya-gallery-card:hover img {
    transform: scale(1.08);

    filter: brightness(1.08);
}

.dandiya-gallery-card:hover::after {
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, .08));
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .dandiya-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .dandiya-gallery-card {
        height: 220px;
    }

}


@media (max-width: 768px) {

    .dandiya-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .dandiya-gallery-card {
        height: 180px;

        border-radius: 23px;
    }

    .dandiya-gallery-card::before {
        border-radius: 23px;
    }

}


@media (max-width: 480px) {

    .dandiya-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dandiya-gallery-card {
        height: 200px;

        border-radius: 20px;
    }

    .dandiya-gallery-card::before {
        border-radius: 20px;
    }

}

/* =========================================================
   INTRO
========================================================= */

.dandiya-intro {

    padding: 130px 0;

    background: var(--black);
}


.dandiya-intro-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}


.dandiya-intro-heading {

    padding-right: 40px;
}


.dandiya-intro-heading h2 {

    margin: 18px 0 0;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1;

    letter-spacing: -2px;
}


.dandiya-intro-heading em {

    display: block;

    color: var(--gold);

    font-style: normal;
}


.dandiya-intro-text {

    padding-left: 50px;

    border-left:
        1px solid rgba(212, 175, 55, .25);
}


.dandiya-intro-text p {

    margin: 0 0 20px;

    color: #a8a8a8;

    font-size: 15px;

    line-height: 1.9;
}


.text-link {

    display: inline-flex;

    gap: 12px;

    margin-top: 15px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    text-decoration: none;

    transition: .3s ease;
}


.text-link span {

    transition: .3s ease;
}


.text-link:hover {

    color: var(--gold-light);
}


.text-link:hover span {

    transform:
        translate(4px, -4px);
}


/* =========================================================
   EXPERIENCE
========================================================= */

.dandiya-experience {

    padding: 130px 0;

    background: #0b0b0b;
}


.dandiya-section-head {

    max-width: 700px;

    margin-bottom: 65px;
}


.dandiya-section-head h2 {

    margin: 18px 0 0;

    font-size: clamp(38px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -2px;
}


.dandiya-section-head h2 span {

    color: var(--gold);
}


.dandiya-feature-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.dandiya-feature-card {

    position: relative;

    min-height: 300px;

    padding: 32px 28px;

    background: var(--card);

    border:
        1px solid rgba(255, 255, 255, .07);

    overflow: hidden;

    transition:
        transform .5s ease,
        border-color .5s ease,
        box-shadow .5s ease;
}


/* CARD GOLD LINE */

.dandiya-feature-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            var(--gold-light),
            transparent);

    transition: .7s ease;
}


.dandiya-feature-card:hover::before {

    left: 100%;
}


.dandiya-feature-card::after {

    content: "";

    position: absolute;

    bottom: -80px;
    right: -80px;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    background:
        rgba(212, 175, 55, .05);

    transition: .6s ease;
}


.dandiya-feature-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(212, 175, 55, .5);

    box-shadow:

        0 20px 50px rgba(0, 0, 0, .45),

        0 0 25px rgba(212, 175, 55, .05);
}


.dandiya-feature-card:hover::after {

    transform: scale(1.4);
}



.feature-icon {

    margin: 45px 0 25px;

    color: var(--gold);

    font-size: 25px;

    transition: .5s ease;
}


.dandiya-feature-card:hover .feature-icon {

    transform:
        rotate(90deg) scale(1.15);
}


.dandiya-feature-card h3 {

    position: relative;

    z-index: 2;

    margin: 0 0 14px;

    font-size: 21px;
}


.dandiya-feature-card p {

    position: relative;

    z-index: 2;

    margin: 0;

    color: #888;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   EVENT DETAILS
========================================================= */

.dandiya-details {

    padding: 130px 0;

    background: var(--black);
}


.dandiya-details-box {

    position: relative;

    padding: 65px;

    border:
        1px solid rgba(212, 175, 55, .25);

    background:
        linear-gradient(135deg,
            rgba(212, 175, 55, .04),
            transparent 45%);

    overflow: hidden;

    transition: .5s ease;
}


/* GOLD SWEEP */

.dandiya-details-box::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            var(--gold-light),
            transparent);

    transition: .9s ease;
}


.dandiya-details-box:hover::before {

    left: 100%;
}


.dandiya-details-box:hover {

    border-color:
        rgba(212, 175, 55, .55);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .35);
}


.details-heading {

    margin-bottom: 60px;
}


.details-heading h2 {

    margin: 15px 0 0;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1;
}


.details-heading h2 span {

    color: var(--gold);
}


.details-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);
}


.detail-item {

    display: flex;

    align-items: center;

    gap: 22px;

    padding: 30px 25px;

    border-top:
        1px solid rgba(255, 255, 255, .08);

    transition: .35s ease;
}


.detail-item:nth-child(odd) {

    border-right:
        1px solid rgba(255, 255, 255, .08);
}


.detail-item:hover {

    background:
        rgba(212, 175, 55, .04);
}





.detail-item small {

    display: block;

    margin-bottom: 7px;

    color: #777;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


.detail-item h3 {

    margin: 0;

    color: #ffffff;

    font-size: 18px;

    font-weight: 600;
}


/* =========================================================
   REGISTER
========================================================= */

.dandiya-register {

    padding: 120px 0;

    background: #0b0b0b;
}


.register-box {

    position: relative;

    min-height: 420px;

    display: flex;

    align-items: center;

    padding: 75px;

    border:
        1px solid rgba(212, 175, 55, .3);

    background:
        linear-gradient(120deg,
            #15120b,
            #0d0d0d 55%,
            #111111);

    overflow: hidden;

    transition: .5s ease;
}


.register-box:hover {

    border-color:
        rgba(212, 175, 55, .65);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .4);
}


.register-content {

    position: relative;

    z-index: 3;

    max-width: 650px;
}


.register-content h2 {

    margin: 18px 0;

    font-size: clamp(42px, 6vw, 72px);

    line-height: .95;

    letter-spacing: -2px;
}


.register-content h2 span {

    color: var(--gold);
}


.register-content p {

    max-width: 570px;

    margin: 0 0 30px;

    color: #999;

    font-size: 14px;

    line-height: 1.8;
}


/* DECORATION */

.register-decoration {

    position: absolute;

    right: -100px;
    top: 50%;

    width: 500px;
    height: 500px;

    transform:
        translateY(-50%);

    pointer-events: none;
}


.decoration-circle {

    position: absolute;

    border:
        1px solid rgba(212, 175, 55, .15);

    border-radius: 50%;

    animation:
        circleRotate 18s linear infinite;
}


.circle-one {

    inset: 20px;
}


.circle-two {

    inset: 90px;

    border-style: dashed;

    animation-duration: 12s;

    animation-direction: reverse;
}


.decoration-star {

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    color: var(--gold);

    font-size: 65px;

    animation:
        starPulse 3s ease-in-out infinite;
}


@keyframes circleRotate {

    to {
        transform: rotate(360deg);
    }

}


@keyframes starPulse {

    0%,
    100% {

        opacity: .35;

        transform:
            translate(-50%, -50%) scale(.9);
    }

    50% {

        opacity: 1;

        transform:
            translate(-50%, -50%) scale(1.1);
    }

}


/* =========================================================
   FINAL
========================================================= */

.dandiya-final {
    position: relative;
    padding: 160px 25px;
    text-align: center;

    background:
        linear-gradient(rgba(7, 7, 7, .72), rgba(7, 7, 7, .82)),
        url("images/banner_dandiya.png") center / cover no-repeat;
}


.dandiya-final-content {

    position: relative;

    z-index: 2;
}


.dandiya-final span {

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 4px;
}


.dandiya-final h2 {

    margin: 25px auto;

    max-width: 900px;

    font-size: clamp(48px, 8vw, 105px);

    line-height: .9;

    letter-spacing: -4px;
}


.dandiya-final h2 strong {

    display: block;

    color: transparent;

    background:
        linear-gradient(90deg,
            #9b7416,
            #f5d774,
            #b98c20,
            #f5d774);

    -webkit-background-clip: text;
    background-clip: text;

    background-size: 250% auto;

    animation:
        goldShine 5s linear infinite;
}


.dandiya-final p {

    margin: 0;

    color: #777;

    font-size: 13px;

    letter-spacing: 1px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .dandiya-feature-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .dandiya-intro-grid {

        gap: 50px;
    }

}


@media (max-width: 768px) {

    .dandiya-hero {

        min-height: 700px;
    }


    .dandiya-hero-overlay {

        inset: 12px;
    }


    .dandiya-hero h1 {

        letter-spacing: -2px;
    }


    .dandiya-hero p {

        font-size: 14px;
    }


    .dandiya-gallery,
    .dandiya-intro,
    .dandiya-experience,
    .dandiya-details,
    .dandiya-register {

        padding: 90px 0;
    }


    .dandiya-gallery-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .dandiya-intro-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .dandiya-intro-heading {

        padding-right: 0;
    }


    .dandiya-intro-text {

        padding-left: 25px;
    }


    .dandiya-feature-grid {

        grid-template-columns: 1fr;
    }


    .dandiya-feature-card {

        min-height: 250px;
    }


    .dandiya-details-box {

        padding: 40px 25px;
    }


    .details-grid {

        grid-template-columns: 1fr;
    }


    .detail-item:nth-child(odd) {

        border-right: none;
    }


    .register-box {

        min-height: 450px;

        padding: 45px 30px;
    }


    .register-decoration {

        right: -200px;

        opacity: .5;
    }


    .dandiya-final {

        padding: 110px 20px;
    }


    .dandiya-final h2 {

        letter-spacing: -2px;
    }

}


@media (max-width: 480px) {

    .dandiya-hero-actions {

        flex-direction: column;

        align-items: stretch;
    }


    .dandiya-btn {

        width: 100%;
    }


    .dandiya-scroll {

        display: none;
    }


    .dandiya-details-box {

        padding: 35px 20px;
    }


    .detail-item {

        padding: 25px 10px;
    }

}

/* ========================================
   MITHILA DANDIYA - PASS PAGE
======================================== */

.pass-page {
    background: #080504;
    color: #fff;
    overflow: hidden;
}

.pass-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* ========================================
   HERO
======================================== */

.pass-hero {
    min-height: 560px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(rgba(25, 5, 2, .68),
            rgba(7, 4, 2, .92)),
        url("images/dandiya_night.png") center / cover no-repeat;
}

.pass-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(212, 175, 55, .16),
            transparent 50%);

    pointer-events: none;
}

.pass-hero-content {
    position: relative;
    z-index: 2;

    padding: 100px 20px;
}

.pass-mini-title {
    color: #d4af37;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
}

.pass-hero h1 {
    margin: 22px 0 15px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(55px, 8vw, 95px);
    line-height: .85;

    letter-spacing: -2px;
}

.pass-hero h1 span {
    color: #d4af37;
}

.pass-subtitle {
    color: #f2d77b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 5px;
}

.event-info {
    margin-top: 32px;

    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.event-info div {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 30px;

    background: rgba(0, 0, 0, .35);

    color: #bbb;
    font-size: 11px;
}

.event-info i {
    color: #d4af37;
}


/* ========================================
   SECTION HEADING
======================================== */

.section-heading,
.pass-heading {
    text-align: center;
}

.section-heading span,
.pass-heading span {
    color: #d4af37;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
}

.section-heading h2,
.pass-heading h2 {
    margin: 12px 0 10px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
}

.section-heading h2 b,
.pass-heading h2 b {
    color: #d4af37;
}

.section-heading p,
.pass-heading p {
    max-width: 600px;
    margin: 15px auto 0;

    color: #888;

    font-size: 13px;
    line-height: 1.8;
}


/* ========================================
   EXPERIENCE
======================================== */

.experience-section {
    padding: 105px 0;

    background:
        radial-gradient(circle at top,
            rgba(212, 175, 55, .07),
            transparent 40%),
        #080504;
}

.experience-grid {
    margin-top: 50px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.experience-box {
    padding: 38px 28px;

    text-align: center;

    background: linear-gradient(145deg,
            #17100c,
            #0d0907);

    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 18px;

    transition: .35s ease;
}

.experience-box:hover {
    transform: translateY(-7px);

    border-color: rgba(212, 175, 55, .65);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .45);
}

.experience-icon {
    width: 62px;
    height: 62px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #d4af37;

    border: 1px solid rgba(212, 175, 55, .3);
    background: rgba(212, 175, 55, .07);

    font-size: 22px;
}

.experience-box h3 {
    margin: 20px 0 10px;

    font-size: 18px;
}

.experience-box p {
    margin: 0;

    color: #888;

    font-size: 12px;
    line-height: 1.8;
}


/* ========================================
   PASS SECTION
======================================== */

.passes-section {
    padding: 110px 0;

    background: #0d0805;
}

.pass-heading {
    margin-bottom: 55px;
}

.pass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pass-card {
    position: relative;

    padding: 35px 30px 30px;

    text-align: center;

    background:
        linear-gradient(145deg,
            #1b100a,
            #0e0805);

    border: 1px solid rgba(212, 175, 55, .22);

    border-radius: 22px;

    transition: .4s ease;
}

.pass-card:hover {
    transform: translateY(-8px);

    border-color: #d4af37;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .5),
        0 0 35px rgba(212, 175, 55, .08);
}

.pass-card.featured {
    border-color: rgba(212, 175, 55, .7);

    background:
        linear-gradient(145deg,
            #241506,
            #0f0804);
}

.popular-badge {
    position: absolute;

    top: -13px;
    left: 50%;

    transform: translateX(-50%);

    padding: 6px 16px;

    border-radius: 30px;

    background: #d4af37;

    color: #170b03;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}

.pass-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #8c806c;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.pass-card-top i {
    color: #d4af37;
    font-size: 18px;
}

.pass-card h3 {
    margin: 25px 0 5px;

    font-family: "Cormorant Garamond", serif;

    font-size: 34px;
}

.pass-price {
    color: #e8c75c;

    font-family: "Cormorant Garamond", serif;

    font-size: 64px;
    font-weight: 800;

    line-height: 1;
}

.pass-price small {
    font-size: 25px;
}

.pass-description {
    min-height: 42px;

    margin: 18px 0 25px;

    color: #888;

    font-size: 11px;
    line-height: 1.7;
}

.book-pass-btn,
.sponsor-btn {
    width: 100%;

    padding: 14px 18px;

    border: 1px solid #d4af37;
    border-radius: 8px;

    background: transparent;

    color: #d4af37;

    cursor: pointer;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    transition: .3s ease;
}

.book-pass-btn i,
.sponsor-btn i {
    margin-left: 7px;
}

.book-pass-btn:hover,
.sponsor-btn:hover {
    background: #d4af37;
    color: #160a02;
}


/* ========================================
   SPONSOR
======================================== */

.sponsor-section {
    padding: 110px 0;

    background:
        radial-gradient(circle at center,
            rgba(212, 175, 55, .06),
            transparent 45%),
        #080504;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.sponsor-card {
    padding: 35px 28px;

    background: #100a06;

    border: 1px solid rgba(212, 175, 55, .2);

    border-radius: 20px;

    transition: .35s ease;
}

.sponsor-card:hover {
    transform: translateY(-7px);
    border-color: rgba(212, 175, 55, .65);
}

.title-sponsor {
    border-color: rgba(212, 175, 55, .65);
}

.sponsor-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    color: #d4af37;

    background: rgba(212, 175, 55, .08);
    border: 1px solid rgba(212, 175, 55, .25);
}

.sponsor-label {
    color: #d4af37;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.sponsor-card h3 {
    margin: 12px 0;

    font-family: "Cormorant Garamond", serif;

    color: #f0d26c;

    font-size: 42px;
}

.sponsor-line {
    width: 45px;
    height: 2px;

    margin: 15px 0;

    background: #d4af37;
}

.sponsor-card ul {
    padding: 0;
    margin: 0 0 25px;

    list-style: none;
}

.sponsor-card li {
    position: relative;

    padding: 8px 0 8px 18px;

    border-bottom: 1px solid rgba(255, 255, 255, .05);

    color: #888;

    font-size: 10px;
}

.sponsor-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #d4af37;
}


/* ========================================
   FINAL CTA
======================================== */

.pass-final {
    padding: 130px 20px;

    text-align: center;

    background:
        linear-gradient(rgba(20, 5, 2, .65),
            rgba(5, 3, 2, .9)),
        url("images/dandiya_dance.png") center / cover no-repeat;
}

.pass-final-content span {
    color: #d4af37;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
}

.pass-final h2 {
    max-width: 700px;

    margin: 18px auto;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(42px, 6vw, 70px);

    line-height: .95;
}

.pass-final h2 b {
    display: block;
    color: #d4af37;
}

.pass-final p {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 25px;
}

.final-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 15px 27px;

    border-radius: 50px;

    color: #160b02;

    background: linear-gradient(135deg,
            #f3d873,
            #c79a2d);

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    transition: .3s ease;
}

.final-btn:hover {
    transform: translateY(-4px);
}


/* ========================================
   BOOKING MODAL
======================================== */

.booking-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, .82);

    backdrop-filter: blur(8px);
}

.booking-modal.active {
    display: flex;
}

.modal-box {
    position: relative;

    width: min(450px, 100%);

    padding: 35px;

    background:
        linear-gradient(145deg,
            #1b1009,
            #0b0704);

    border: 1px solid rgba(212, 175, 55, .5);

    border-radius: 20px;

    box-shadow: 0 30px 100px rgba(0, 0, 0, .7);
}

.modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 32px;
    height: 32px;

    border: 1px solid #333;
    border-radius: 50%;

    background: transparent;

    color: #aaa;

    cursor: pointer;
}

.modal-label {
    color: #d4af37;

    font-size: 9px;
    letter-spacing: 3px;
    font-weight: 800;
}

.modal-box h3 {
    margin: 10px 0 25px;

    font-family: "Cormorant Garamond", serif;

    font-size: 35px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #aaa;

    font-size: 10px;
}

.form-group input {
    width: 100%;

    box-sizing: border-box;

    padding: 13px;

    background: #080604;

    border: 1px solid #2d241c;

    border-radius: 8px;

    color: #fff;

    outline: none;

    font-size: 12px;
}

.form-group input:focus {
    border-color: #d4af37;
}

.selected-pass {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 20px 0;

    padding: 14px;

    border: 1px solid rgba(212, 175, 55, .25);

    border-radius: 9px;

    background: rgba(212, 175, 55, .06);
}

.selected-pass span {
    color: #bbb;
    font-size: 11px;
}

.selected-pass strong {
    color: #e5c75e;
    font-size: 20px;
}

.confirm-btn {
    width: 100%;

    padding: 14px;

    border: 0;
    border-radius: 8px;

    background: #d4af37;

    color: #150a02;

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;
}

#bookingMessage {
    display: none;

    margin: 12px 0 0;

    color: #d4af37;

    font-size: 11px;

    text-align: center;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 850px) {

    .experience-grid,
    .pass-grid,
    .sponsor-grid {
        grid-template-columns: 1fr 1fr;
    }

    .experience-box:last-child,
    .pass-card:last-child,
    .sponsor-card:last-child {
        grid-column: 1 / -1;
    }

}


@media (max-width: 600px) {

    .pass-container {
        width: calc(100% - 28px);
    }

    .pass-hero {
        min-height: 500px;
    }

    .pass-hero-content {
        padding: 80px 10px;
    }

    .pass-mini-title {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .pass-hero h1 {
        font-size: 55px;
    }

    .pass-subtitle {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .event-info {
        flex-direction: column;
    }

    .event-info div {
        justify-content: center;
        font-size: 10px;
    }

    .experience-section,
    .passes-section,
    .sponsor-section {
        padding: 75px 0;
    }

    .experience-grid,
    .pass-grid,
    .sponsor-grid {
        grid-template-columns: 1fr;
    }

    .experience-box:last-child,
    .pass-card:last-child,
    .sponsor-card:last-child {
        grid-column: auto;
    }

    .pass-card {
        padding: 30px 25px;
    }

    .pass-final {
        padding: 100px 20px;
    }

    .modal-box {
        padding: 28px 20px;
    }

}

/* buy ticket  */