/* =========================
   PREMIUM HERO SECTION
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #0b1d16;
    overflow-x: hidden;
}

/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */

.hero-section{
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #04140d;
    padding: 24px;
}

/* =========================
   VIDEO WRAPPER
========================= */

.hero-video-wrap{
    position: relative;
    width: 100%;
    height: calc(100vh - 48px);

    border-radius: 34px;
    overflow: hidden;

    background: #000;

    box-shadow:
        0 25px 80px rgba(0,0,0,0.45),
        0 10px 30px rgba(0,0,0,0.25);
}

/* VIDEO */

.hero-video{
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    display: block;

    opacity: 0.72;
}

/* DARK OVERLAY */

.hero-video-overlay{
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(1,42,26,0.82) 0%,
            rgba(1,74,46,0.45) 50%,
            rgba(1,42,26,0.75) 100%
        );

    z-index: 1;
}

/* LIGHT OVERLAY */

.hero-gradient-overlay{
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            ellipse 60% 80% at 15% 60%,
            rgba(80,159,61,0.12) 0%,
            transparent 50%
        ),

        radial-gradient(
            ellipse 40% 40% at 85% 20%,
            rgba(214,73,123,0.12) 0%,
            transparent 40%
        ),

        linear-gradient(
            to bottom,
            rgba(0,0,0,0.05),
            rgba(0,0,0,0.35)
        );

    z-index: 2;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content-wrap{
    position: absolute;
    inset: 0;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.hero-inner{
    position: relative;

    width: 100%;
    max-width: 1450px;

    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-left{
    width: 100%;
    max-width: 950px;

    margin: 0 auto;

    text-align: center;
}

/* =========================
   EYEBROW
========================= */

.hero-eyebrow{
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 26px;
}

.eyebrow-line{
    width: 42px;
    height: 1px;

    background: #D6497B;
}

.eyebrow-text{
    font-size: 12px;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.82);
}

/* =========================
   MINI LOGO
========================= */

.hero-mini-logo{
    display: flex;
    justify-content: center;
}

.hero-mini-logo img{
    width: 200px;
    height: auto;
}

/* =========================
   MAIN LOGO
========================= */

.hero-title img{
    width: min(100%, 720px);

    margin-bottom: 24px;
}

/* =========================
   TEXTS
========================= */

.hero-texts{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-hindi{
    font-size: clamp(1rem, 2vw, 1.5rem);

    color: #f7d9a0;

    margin-bottom: 16px;

    letter-spacing: 0.08em;
}

.hero-sub{
    max-width: 700px;

    margin: 0 auto 34px;

    color: rgba(255,255,255,0.82);

    font-size: 1rem;
    line-height: 1.9;
}

/* =========================
   COMING SOON
========================= */

.hero-coming-soon{
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-label{
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    border-radius: 100px;

    border: 1px solid rgba(255,255,255,0.12);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.03)
        );

    backdrop-filter: blur(14px);

    color: #fff;

    font-size: clamp(1rem, 2vw, 1.2rem);

    font-weight: 500;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.08);

    overflow: hidden;
}

/* Glow Animation */

.coming-soon-label::before{
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.18),
            transparent
        );

    transform: skewX(-25deg);

    animation: shineMove 4s linear infinite;
}

@keyframes shineMove{

    100%{
        left: 160%;
    }

}

/* =========================
   RIGHT SIDE LOGOS
========================= */

.hero-right-logos{
    position: absolute;

    top: 42px;
    right: 42px;

    display: flex;
    flex-direction: column;

    align-items: flex-end;

    gap: 16px;

    z-index: 10;
}

.partner-logo-card{
    text-align: right;
}

.partner-label{
    display: block;

    margin-bottom: 6px;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.68);
}

.partner-logo-card img{
    width: auto;
    max-width: 105px;

    height: auto;

    object-fit: contain;

    opacity: 0.92;

    transition: all 0.35s ease;
}

.partner-logo-card img:hover{
    opacity: 1;

    transform: translateY(-2px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px){

    .hero-right-logos{
        top: 24px;
        right: 24px;

        gap: 12px;
    }

    .partner-logo-card img{
        max-width: 82px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px){

    .hero-right-logos{
        position: relative;

        top: auto;
        right: auto;

        flex-direction: row;

        justify-content: center;
        align-items: center;

        gap: 20px;

        margin-top: 10px;
    }

    .partner-logo-card{
        text-align: center;
    }

    .partner-label{
        font-size: 7px;

        margin-bottom: 5px;

        letter-spacing: 0.16em;
    }

    .partner-logo-card img{
        max-width: 65px;
    }

}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 767px){

    .hero-section{
        padding: 12px;
        min-height: auto;
    }

    .hero-video-wrap{
        min-height: 100vh;

        border-radius: 22px;
    }

    .hero-video{
        object-position: center center;
    }

    .hero-content-wrap{
        padding: 18px;
    }

    .hero-inner{
        width: 100%;
        min-height: calc(100vh - 24px);

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-left{
        width: 100%;
        max-width: 100%;
    }

    /* =========================
       TOP RIGHT LOGOS
    ========================= */

    .hero-right-logos{
       position: absolute;
        top: 18px;
        /* right: 18px; */
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin: 0;
        z-index: 20;
    }

    .partner-logo-card{
        text-align: right;
    }

    .partner-label{
        font-size: 6px;

        letter-spacing: 0.14em;

        margin-bottom: 4px;

        line-height: 1.2;
    }

    .partner-logo-card img{
        max-width: 58px;
    }

    /* =========================
       HERO CONTENT
    ========================= */

    .hero-eyebrow{
        flex-direction: column;

        gap: 8px;

        margin-bottom: 16px;
    }

    .eyebrow-line{
        width: 26px;
    }

    .eyebrow-text{
        font-size: 9px;

        letter-spacing: 0.14em;

        text-align: center;

        line-height: 1.5;
    }

    /* MINI LOGO */

    .hero-mini-logo{
        margin-bottom: 14px;
    }

    .hero-mini-logo img{
        width: 120px;
    }

    /* MAIN LOGO */

    .hero-title img{
        width: 100%;
        max-width: 300px;

        margin-bottom: 18px;
    }

    /* TEXT */

    .hero-hindi{
        font-size: 0.9rem;

        line-height: 1.7;

        margin-bottom: 12px;
    }

    .hero-sub{
        font-size: 0.88rem;

        line-height: 1.75;

        margin-bottom: 24px;

        max-width: 100%;
    }

    /* COMING SOON */

    .coming-soon-label{
        padding: 13px 18px;

        font-size: 0.72rem;

        letter-spacing: 0.08em;

        line-height: 1.5;

        text-align: center;
    }

}