﻿/* Import the font from an online source */
@font-face {
    font-family: 'Academy Engraved LET';
    src: url('https://db.onlinewebfonts.com/t/c39d9e8f702f0b198bbc46c9483924eb.eot'); /* IE9 Compat Modes */
    src: url('https://db.onlinewebfonts.com/t/c39d9e8f702f0b198bbc46c9483924eb.eot?#iefix') format('embedded-opentype'), url('https://db.onlinewebfonts.com/t/c39d9e8f702f0b198bbc46c9483924eb.woff2') format('woff2'), url('https://db.onlinewebfonts.com/t/c39d9e8f702f0b198bbc46c9483924eb.woff') format('woff'), url('https://db.onlinewebfonts.com/t/c39d9e8f702f0b198bbc46c9483924eb.ttf') format('truetype'), url('https://db.onlinewebfonts.com/t/c39d9e8f702f0b198bbc46c9483924eb.svg#AcademyEngravedLET') format('svg');
    font-weight: normal;
    font-style: normal;
}

:root {
    --gold: #C9A84C;
    --gold-light: #F0D080;
    --gold-dark: #7A5C1E;
    --ember: #D44A1A;
    --deep-red: #8B1A1A;
    --blood: #5C0A0A;
    --ink: #0A0608;
    --dark-surface: #110C0E;
    --mid-surface: #1A1014;
    --lotus-pink: #E05A7A;
    --lotus-light: #F2A0B5;
    --cyan-glow: #40C4B8;
    --scripture: #D4C4A0;
    --parchment: #F5E8C8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── RESPONSIVE: Global fluid media ── */
img,
video,
svg,
iframe {
    max-width: 100%;
    height: auto;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    background: #470101;
    color: var(--scripture);
    font-family: 'Baloo Tamma';
    overflow-x: hidden;
    cursor: default;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--blood);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

/* ── PAGES ── */
.page {
    display: none;
    min-height: 100vh;
}

    .page.active {
        display: block;
    }

/* ══════════════════════════════
             NAV
          ══════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    height: 72px;
    background: linear-gradient(180deg, rgba(5,2,4,0.97) 0%, rgba(5,2,4,0.8) 100%);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    backdrop-filter: blur(12px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-decoration: none;
}

.nav-logo-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(201,168,76,0.5));
}

.nav-logo-text {
    font-family: 'Academy Engraved LET', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.nav-logo-sub {
    font-family: 'Academy Engraved LET', serif;
    font-size: 0.6rem;
    color: #ffffff;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

    .nav-links a {
        font-family: 'Cinzel', serif;
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(212,196,160,0.7);
        text-decoration: none;
        transition: color 0.3s;
        cursor: pointer;
    }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a.active {
            color: var(--gold);
        }

.nav-cta {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink) !important;
    background: var(--gold);
    padding: 8px 20px;
    border-radius: 2px;
    transition: background 0.3s, transform 0.2s !important;
}

    .nav-cta:hover {
        background: var(--gold-light) !important;
        transform: translateY(-1px);
        color: var(--ink) !important;
    }

/* ── RESPONSIVE: Mobile nav toggle (hidden on desktop) ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 2px;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1002;
    transition: border-color 0.3s, background 0.3s;
}

    .nav-toggle:hover {
        border-color: rgba(201, 168, 76, 0.55);
        background: rgba(201, 168, 76, 0.06);
    }

.nav-toggle-bar {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

nav.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

nav.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

nav.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.nav-menu-open {
    overflow: hidden;
}

/* ══════════════════════════════
             HOME — HERO
          ══════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(4.5rem, 8vh, 6rem) clamp(1rem, 3vw, 2rem) clamp(2rem, 5vh, 3.5rem);
}

/* Battlefield watermark layer */
.hero-watermark {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

    .hero-watermark svg {
        width: 100%;
        height: 100%;
        opacity: 0.07;
    }

/* Gradient overlays */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(139,26,26,0.35) 0%, transparent 70%), radial-gradient(ellipse 80% 40% at 50% 100%, rgba(5,2,4,0.95) 0%, transparent 60%), radial-gradient(ellipse 100% 30% at 50% 0%, rgba(5,2,4,0.8) 0%, transparent 50%);
}

/* Animated ember particles */
.embers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ember {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    animation: float-up linear infinite;
    opacity: 0;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-20vh) translateX(var(--drift));
        opacity: 0;
    }
}

/* Hero content — multilingual-safe flex stack */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: min(54rem, 94vw);
    gap: clamp(0.65rem, 1.6vh, 1.25rem);
    padding: 0;
}

.hero-eyebrow {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(0.8rem, 1.35vw, 1.2rem);
    letter-spacing: 0.1em;
    color: var(--gold);
    margin: 0;
    width: 100%;
    max-width: min(52rem, 100%);
    line-height: 1.55;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-wrap: balance;
    opacity: 0;
    animation: fade-up 1s 0.3s forwards;
}

.hero-logo-large {
    width: clamp(4.5rem, 8vw, 6.875rem);
    height: auto;
    object-fit: contain;
    margin: 0;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 0 24px rgba(201,168,76,0.6)) drop-shadow(0 0 48px rgba(212,74,26,0.3));
    opacity: 0;
    animation: fade-up 1s 0.5s forwards, pulse-glow 4s 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 24px rgba(201,168,76,0.6)) drop-shadow(0 0 48px rgba(212,74,26,0.3));
    }

    50% {
        filter: drop-shadow(0 0 36px rgba(201,168,76,0.9)) drop-shadow(0 0 70px rgba(212,74,26,0.5));
    }
}

.hero-title {
    font-family: 'Baloo Tamma 2', cursive;
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0;
    width: 100%;
    max-width: min(48rem, 100%);
    opacity: 0;
    animation: fade-up 1s 0.7s forwards;
}

    .hero-title .line1 {
        display: block;
        color: var(--gold);
        text-shadow: 0 0 60px rgba(201,168,76,0.4), 0 0 120px rgba(201,168,76,0.2);
        font-family: 'Bodoni Moda', serif !important;
        line-height: 1.15;
        overflow-wrap: break-word;
        text-wrap: balance;
    }

    .hero-title .line2 {
        display: block;
        font-size: clamp(0.85rem, 1.5vw, 1.1rem);
        color: var(--lotus-light);
        letter-spacing: clamp(0.06em, 0.15vw, 0.18em);
        font-weight: 400;
        margin-top: clamp(0.35em, 1vh, 0.6em);
        line-height: 1.5;
        overflow-wrap: break-word;
        text-wrap: balance;
    }

.hero-coming-soon {
    font-family: 'Silk Serif', serif;
    font-size: clamp(1.35rem, 3.2vw, 2.75rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: var(--scripture);
    margin: 0;
    width: 100%;
    max-width: min(50rem, 100%);
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-wrap: balance;
    opacity: 0;
    animation: fade-up 1s 1.05s forwards;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: clamp(0.25rem, 0.8vh, 0.75rem) auto;
    max-width: min(25rem, 80vw);
    flex-shrink: 0;
    opacity: 0;
    animation: fade-up 1s 0.9s forwards;
}

    .hero-divider::before, .hero-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold-dark));
    }

    .hero-divider::after {
        background: linear-gradient(90deg, var(--gold-dark), transparent);
    }

.hero-divider-gem {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

.hero-subtitle {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(212,196,160,0.75);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fade-up 1s 1.1s forwards;
}

.hero-countdown-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: rgba(201,168,76,0.5);
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fade-up 1s 1.3s forwards;
}

.hero-countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fade-up 1s 1.4s forwards;
}

.countdown-unit {
    text-align: center;
}

.countdown-num {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.countdown-label {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    color: rgba(201,168,76,0.45);
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.countdown-sep {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    color: rgba(201,168,76,0.3);
    align-self: center;
    margin-top: -8px;
}

.hero-actions {
    display: flex;
    gap: clamp(0.75rem, 1.5vw, 1.2rem);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: clamp(0.35rem, 1.2vh, 1rem);
    width: 100%;
    max-width: min(36rem, 100%);
    flex-shrink: 0;
    opacity: 0;
    animation: fade-up 1s 1.35s forwards;
}

.btn-primary {
    font-family: 'Baloo Tamma 2', cursive;
    font-size: clamp(0.62rem, 0.85vw, 0.7rem);
    letter-spacing: clamp(0.1em, 0.15vw, 0.2em);
    text-transform: uppercase;
    color: var(--ink);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: none;
    padding: clamp(0.75rem, 1.2vw, 0.875rem) clamp(1.25rem, 2vw, 2.25rem);
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    text-decoration: none;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #fff5d0, var(--gold-light));
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(201,168,76,0.4);
    }

.btn-outline {
    font-family: 'Baloo Tamma 2', cursive;
    font-size: clamp(0.62rem, 0.85vw, 0.7rem);
    letter-spacing: clamp(0.1em, 0.15vw, 0.2em);
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(201,168,76,0.4);
    padding: clamp(0.75rem, 1.2vw, 0.875rem) clamp(1.25rem, 2vw, 2.25rem);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
}

    .btn-outline:hover {
        border-color: var(--gold);
        background: rgba(201,168,76,0.08);
        transform: translateY(-2px);
    }

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fade-in 1s 2.2s forwards;
}

    .hero-scroll span {
        font-family: 'Cinzel', serif;
        font-size: 0.5rem;
        letter-spacing: 0.4em;
        color: rgba(201,168,76,0.35);
        text-transform: uppercase;
    }

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(201,168,76,0.4), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% {
        opacity: 0.3;
        height: 40px;
    }

    50% {
        opacity: 0.8;
        height: 55px;
    }
}

/* ══════════════════════════════
             HERO WARRIORS / FOUR PROTAGONISTS
          ══════════════════════════════ */
.heroes-section {
    padding: 8rem 4rem 6rem;
    position: relative;
    background: linear-gradient(180deg, var(--ink) 0%, var(--dark-surface) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-family: 'Baloo Tamma 2';
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Baloo Tamma 2';
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.2;
}

    .section-title .accent {
        color: var(--lotus-pink);
    }

.section-desc {
    font-family: 'Baloo Tamma 2';
    font-style: italic;
    font-size: 1rem;
    color: #d0b3b3;
    margin-top: 1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.heroes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-card {
    position: relative;
    border: 1px solid rgba(201,168,76,0.15);
    background: linear-gradient(160deg, rgba(26,16,20,0.9), rgba(10,6,8,0.95));
    padding: 2rem 1.5rem 1.5rem;
    transition: all 0.4s;
    cursor: default;
    overflow: hidden;
}

    .hero-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--card-accent, var(--gold));
        transform: scaleX(0);
        transition: transform 0.4s;
        transform-origin: left;
    }

    .hero-card:hover::before {
        transform: scaleX(1);
    }

    .hero-card:hover {
        border-color: rgba(201,168,76,0.35);
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }

.hero-card-yuga {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--card-accent, var(--gold));
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

.hero-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-card-name {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
}

.hero-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    color: rgba(212,196,160,0.5);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.hero-card-desc {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(212,196,160,0.65);
}

.hero-card-power {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201,168,76,0.1);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    color: var(--card-accent, var(--gold));
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ══════════════════════════════
             YUGAS SECTION
          ══════════════════════════════ */
.yugas-section {
    padding: 6rem 4rem;
    background: var(--mid-surface);
    position: relative;
    overflow: hidden;
}

    .yugas-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient( 90deg, transparent, transparent 200px, rgba(201,168,76,0.02) 200px, rgba(201,168,76,0.02) 201px );
    }

.yugas-timeline {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.yugas-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold-dark), var(--gold-dark), transparent);
    transform: translateX(-50%);
}

.yuga-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: 4rem;
    align-items: center;
}

    .yuga-item:nth-child(even) .yuga-content {
        order: 3;
        text-align: left;
    }

    .yuga-item:nth-child(even) .yuga-empty {
        order: 1;
    }

    .yuga-item:nth-child(odd) .yuga-content {
        text-align: right;
    }

.yuga-content {
    padding: 0 2.5rem;
}

.yuga-era {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.yuga-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.6rem;
}

.yuga-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    color: var(--lotus-pink);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
}

.yuga-desc {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(212,196,160,0.6);
}

.yuga-node {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.yuga-dot {
    width: 20px;
    height: 20px;
    background: var(--gold-dark);
    border: 2px solid var(--gold);
    transform: rotate(45deg);
    transition: all 0.3s;
}

.yuga-item:hover .yuga-dot {
    background: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.6);
}

/* ══════════════════════════════
             GEETA AI SECTION
          ══════════════════════════════ */
.geeta-section {
    padding: 7rem 4rem;
    background: linear-gradient(135deg, var(--blood) 0%, var(--dark-surface) 50%, rgba(0,60,50,0.3) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .geeta-section::before {
        content: '॥ श्रीमद्भगवद्गीता ॥';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 12rem;
        color: rgba(201,168,76,0.03);
        font-family: serif;
        white-space: nowrap;
        pointer-events: none;
    }

.geeta-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.geeta-shloka {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 3.5rem);
    line-height: 2;
    color: var(--parchment);
    margin-bottom: 2rem;
    padding: 2rem;
    /* border: 1px solid rgba(201,168,76,0.2);
            background: rgba(0,0,0,0.3);*/
    position: relative;
    /* ADDED */
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    top: -123px;
}

    .geeta-shloka::before {
        content: '॥';
        font-size: 2.5rem;
        color: var(--gold);
        opacity: 0.4;
        position: absolute;
        top: -1rem;
        left: 2rem;
    }
    /* ADDED */
    .geeta-shloka.visible {
        opacity: 1;
        transform: translateY(0);
    }

.geeta-translation {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    color: rgba(201,168,76,0.5);
    letter-spacing: 0.08em;
    margin-top: -0.5rem;
    margin-bottom: 2.5rem;
    font-style: normal;
}

.ai-feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 2rem;
}

.ai-chip {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan-glow);
    border: 1px solid rgba(64,196,184,0.25);
    padding: 8px 16px;
    background: rgba(64,196,184,0.05);
}

/* ══════════════════════════════
             STUDIO SECTION
          ══════════════════════════════ */
.studio-section {
    display: block;
    padding: 6rem 4rem;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.studio-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.studio-stat {
    border: 1px solid rgba(201,168,76,0.15);
    padding: 1.5rem;
    background: rgba(26,16,20,0.5);
}

.studio-stat-num {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.2rem;
    color: var(--gold);
    display: block;
}

.studio-stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(212,196,160,0.45);
    margin-top: 4px;
}

.studio-text h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.studio-text p {
    font-family: 'Baloo Tamma 2', cursive;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(212,196,160,0.65);
    margin-bottom: 1.2rem;
}

.studio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Baloo Tamma 2', cursive;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 8px 16px;
    margin-top: 1rem;
}

    .studio-badge::before {
        content: '◆';
        font-size: 0.5rem;
    }

/* ══════════════════════════════
             COMING SOON BANNER
          ══════════════════════════════ */
.coming-soon-banner {
    background: linear-gradient(90deg, var(--blood), var(--deep-red), var(--blood));
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.silk-serfin-title {
    font-family: 'Silk Serif', serif !important;
}

.coming-soon-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        left: 200%;
    }
}

.coming-soon-banner p {
    font-family: 'Baloo Tamma 2', cursive;
    font-size: 0.75rem;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.coming-soon-banner strong {
    color: white;
    font-weight: 600;
}

/* ══════════════════════════════
             FOOTER
          ══════════════════════════════ */
footer {
    background: var(--dark-surface);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 4rem 4rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-family: 'Baloo Tamma 2', cursive;
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(212,196,160,0.5);
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-col h4 {
    font-family: 'Baloo Tamma 2', cursive;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: rgba(212,196,160,0.45);
    cursor: pointer;
    transition: color 0.2s;
}

    .footer-col li:hover {
        color: var(--gold);
    }

.footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-bottom p {
        font-family: 'Baloo Tamma 2';
        font-size: 0.75rem;
        color: rgba(212, 196, 160, 0.25);
        letter-spacing: 0.05em;
    }

.footer-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.35);
}

/* ══════════════════════════════
             CAREERS PAGE
          ══════════════════════════════ */
.careers-hero {
    position: relative;
    padding: 12rem 4rem 6rem;
    text-align: center;
    background: linear-gradient(160deg, var(--blood) 0%, var(--ink) 60%);
    overflow: hidden;
}

    .careers-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient( -45deg, transparent, transparent 40px, rgba(201,168,76,0.02) 40px, rgba(201,168,76,0.02) 41px );
    }

    .careers-hero h1 {
        font-family: 'Bodoni Moda';
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 700;
        color: var(--gold);
        margin-bottom: 1rem;
        position: relative;
    }

    .careers-hero p {
        font-family: 'Baloo Tamma 2';
        font-style: italic;
        font-size: 1.1rem;
        /* color: rgba(212, 196, 160, 0.65); */
        /* max-width: 600px; */
        margin: 0 auto 2rem;
        line-height: 1.8;
        position: relative;
        color: #d0b3b3;
    }

.careers-perks {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    position: relative;
}

.perk {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lotus-light);
    padding: 8px 16px;
    border: 1px solid rgba(224,90,122,0.3);
    background: rgba(224,90,122,0.05);
}

/* Jobs section */
.jobs-section {
    padding: 5rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.jobs-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(212,196,160,0.5);
    border: 1px solid rgba(201,168,76,0.15);
    background: transparent;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.25s;
}

    .filter-btn:hover, .filter-btn.active {
        color: var(--gold);
        border-color: rgba(201,168,76,0.5);
        background: rgba(201,168,76,0.05);
    }

.jobs-grid {
    display: grid;
    gap: 1.5rem;
}

.job-card {
    border: 1px solid rgba(201,168,76,0.12);
    background: linear-gradient(135deg, rgba(26,16,20,0.8), rgba(10,6,8,0.9));
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .job-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--job-accent, var(--gold));
        transform: scaleY(0);
        transition: transform 0.3s;
        transform-origin: bottom;
    }

    .job-card:hover::before {
        transform: scaleY(1);
    }

    .job-card:hover {
        border-color: rgba(201,168,76,0.3);
        transform: translateX(4px);
        box-shadow: -4px 0 20px rgba(201,168,76,0.1);
    }

.job-dept {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--job-accent, var(--gold));
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.job-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.job-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.72rem;
    color: rgba(212,196,160,0.45);
    letter-spacing: 0.08em;
}

    .job-tag::before {
        content: '◆ ';
        font-size: 0.45rem;
    }

.apply-btn {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold);
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

    .apply-btn:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
    }

/* ══════════════════════════════
             APPLICATION MODAL
          ══════════════════════════════ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,2,4,0.93);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(8px);
}

    .modal-overlay.open {
        display: flex;
    }

.modal {
    background: var(--dark-surface);
    border: 1px solid rgba(201,168,76,0.25);
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, var(--blood), var(--dark-surface));
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

    .modal-header h3 {
        font-family: 'Cinzel Decorative', serif;
        font-size: 1.3rem;
        color: var(--gold);
        margin-bottom: 0.3rem;
    }

    .modal-header p {
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.8rem;
        color: rgba(212,196,160,0.5);
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 1px solid rgba(201,168,76,0.2);
    color: rgba(201,168,76,0.5);
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .modal-close:hover {
        color: var(--gold);
        border-color: var(--gold);
    }

.modal-body {
    padding: 2rem 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.6);
    display: block;
    margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(10,6,8,0.8);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--scripture);
    padding: 12px 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    outline: none;
    appearance: none;
}

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        border-color: rgba(201,168,76,0.5);
    }

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.file-upload {
    border: 1px dashed rgba(201,168,76,0.25);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

    .file-upload:hover {
        border-color: rgba(201,168,76,0.5);
        background: rgba(201,168,76,0.03);
    }

    .file-upload input {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
    }

    .file-upload p {
        font-family: 'Cinzel', serif;
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(201,168,76,0.5);
    }

    .file-upload span {
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.75rem;
        color: rgba(212,196,160,0.35);
        display: block;
        margin-top: 4px;
    }

.file-selected-list {
    display: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    color: rgba(201, 168, 76, 0.85);
    margin-top: 0.65rem;
    line-height: 1.5;
    word-break: break-word;
}

    .file-selected-list.has-files {
        display: block;
    }

.form-submit {
    width: 100%;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: none;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

    .form-submit:hover {
        filter: brightness(1.1);
        transform: translateY(-1px);
    }

.success-msg {
    display: none;
    text-align: center;
    padding: 3rem;
}

    .success-msg.show {
        display: block;
    }

    .success-msg h4 {
        font-family: 'Cinzel Decorative', serif;
        font-size: 1.4rem;
        color: var(--gold);
        margin-bottom: 1rem;
    }

    .success-msg p {
        font-family: 'IM Fell English', serif;
        font-style: italic;
        color: rgba(212,196,160,0.6);
        line-height: 1.8;
    }

.form-submit-loader {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(5, 2, 4, 0.88);
    backdrop-filter: blur(6px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

    .form-submit-loader.show {
        display: flex;
    }

.form-submit-loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(201, 168, 76, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: form-loader-spin 0.85s linear infinite;
}

.form-submit-loader-text {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.75);
    margin: 0;
}

@keyframes form-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animations */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 900px) {
    nav {
        padding: 0 2rem;
    }

    .heroes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .studio-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .yuga-item {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .yugas-spine {
        display: none;
    }

    .yuga-node {
        display: none;
    }

    .job-card {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .heroes-grid {
        grid-template-columns: 1fr;
    }

    .hero-countdown {
        gap: 1rem;
    }
}

/* Watermark-style battle art */
.battle-watermark-text {
    position: absolute;
    font-family: 'Cinzel Decorative', serif;
    font-size: 20vw;
    color: rgba(139,26,26,0.04);
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}



/* FAQ */
.faq {
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
    background: #2c0a0ad1;
    border-block: 1px solid rgba(196, 40, 40, 0.2);
}

.faq-bg {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23ffc107' stroke-width='0.8'%3E%3Ccircle cx='100' cy='100' r='40'/%3E%3Cpath d='M100 20 L100 180 M20 100 L180 100'/%3E%3Cpath d='M40 40 L160 160 M160 40 L40 160'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.faq-group-title {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lotus-pink);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: linear-gradient(145deg, rgba(26, 18, 24, 0.95), rgba(13, 10, 15, 0.98));
    border: 1px solid rgba(196, 40, 40, 0.25);
    transition: border-color 0.25s, box-shadow 0.25s;
}

    .faq-item:hover {
        border-color: rgba(255, 193, 7, 0.35);
    }

    .faq-item[open] {
        border-color: var(--chakra-gold);
        box-shadow: 0 4px 24px rgba(198, 40, 40, 0.2);
    }

    .faq-item summary {
        font-family: var(--font-display);
        font-size: 0.95rem;
        color: var(--parchment);
        padding: 1.1rem 1.25rem;
        padding-right: 2.5rem;
        cursor: pointer;
        list-style: none;
        position: relative;
        line-height: 1.4;
    }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "+";
            position: absolute;
            right: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            font-family: var(--font-display);
            font-size: 1.25rem;
            color: var(--chakra-gold);
            transition: transform 0.25s;
        }

    .faq-item[open] summary::after {
        content: "−";
        color: var(--lotus-pink);
    }

    .faq-item summary:hover {
        color: var(--chakra-gold);
    }

    .faq-item p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.95rem;
        color: var(--text-muted);
        line-height: 1.65;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 0;
        padding-top: 1rem;
    }

        .faq-item p a {
            color: var(--lotus-pink);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

            .faq-item p a:hover {
                color: var(--chakra-gold);
            }

.faq-cta {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
}

    .faq-cta a {
        color: var(--chakra-gold);
        font-weight: 600;
    }
/* ══════════════════════════════
           YOUR EXISTING KRISHNA CSS
        ══════════════════════════════ */

.krishna-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(circle at center, rgba(255,140,0,0.08) 0%, rgba(120,0,0,0.15) 35%, rgba(0,0,0,1) 100%);
    min-height: 1000px;
}

.krishna-visual-stack {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.krishna-title {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 14px));
    margin-top: 0;
    text-align: center;
    font-family: 'Baloo Tamma 2';
    font-size: 29px;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 230, 150, 1);
    text-shadow: 0 2px 10px rgba(0,0,0,0.92), 0 0 14px rgba(255,160,0,0.85), 0 0 35px rgba(255,100,0,0.55), 0 0 75px rgba(255,60,0,0.25);
    opacity: 0;
    pointer-events: auto;
    z-index: 6;
    will-change: opacity, transform;
    transition: opacity 1.15s ease, transform 1.15s ease;
    line-height: 1.65;
    max-width: min(720px, 92vw);
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
    .krishna-title {
        background: linear-gradient(180deg, rgba(255,245,210,1) 0%, rgba(255,210,120,1) 40%, rgba(201,168,76,1) 100%);
        -webkit-background-clip: text;
        background-clip: text;
         
    }
}

.krishna-title.revealed {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.krishna-title .krishna-quote-line {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.9s ease, transform 0.9s ease, text-shadow 0.25s ease;
}

.krishna-title.revealed .krishna-quote-line {
    opacity: 1;
    transform: translateY(0);
}

.krishna-title.revealed .krishna-quote-line:nth-of-type(1) { transition-delay: 0.10s; }
.krishna-title.revealed .krishna-quote-line:nth-of-type(2) { transition-delay: 0.45s; }
.krishna-title.revealed .krishna-quote-line:nth-of-type(3) { transition-delay: 0.85s; }
.krishna-title.revealed .krishna-quote-line:nth-of-type(4) { transition-delay: 1.20s; }

.krishna-title .krishna-quote-line:hover {
    transform: translateY(-2px);
    text-shadow:
        0 2px 10px rgba(0,0,0,0.95),
        0 0 16px rgba(255,200,80,0.95),
        0 0 45px rgba(255,140,0,0.75),
        0 0 95px rgba(255,80,0,0.45);
}

    .krishna-image-wrapper::before {
        content: '';
        position: absolute;
        width: 1200px;
        height: 1200px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,160,0,0.45) 0%, rgba(255,80,0,0.18) 25%, rgba(255,0,0,0.08) 40%, transparent 70%);
        filter: blur(120px);
        z-index: 0;
        animation: fireAura 5s ease-in-out infinite alternate;
    }

    .krishna-image-wrapper::after {
        content: ' कुरुक्षेत्र ';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: clamp(4rem, 12vw, 14rem);
        font-weight: 900;
        letter-spacing: 0.35em;
        white-space: nowrap;
        color: rgba(255, 255, 255, 0.025);
        z-index: 1;
        pointer-events: none;
        text-shadow: 0 0 60px rgba(255,140,0,0.08);
        animation: watermarkMove 12s ease-in-out infinite alternate;
    }
.krishna-image-geeta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../Image/abhimanyu.jpg'); /* ← your image */
    background-size: cover;
    background-position: center top;
    z-index: 0;
    transform: scale(1.06);
    transition: transform 16s ease-out;
}

    .krishna-image-geeta-bg.revealed {
        transform: scale(1.0);
    }
.krishna-centered-image {
    width: 100%;
    max-width: 980px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 28px;
    position: relative;
    z-index: 10;
    border: 2px solid rgba(255,180,0,0.25);
    box-shadow: 0 0 30px rgba(255,160,0,0.35), 0 0 90px rgba(255,80,0,0.2), 0 35px 120px rgba(0,0,0,0.8);
    animation: krishnaFloat 6s ease-in-out infinite, imageGlow 4s ease-in-out infinite alternate;
}

.krishna-fire-ring {
    position: absolute;
    width: 1100px;
    height: 1100px;
    border-radius: 50%;
    border: 2px solid rgba(255,180,0,0.08);
    z-index: 1;
    animation: rotateRing 20s linear infinite;
}

.krishna-fire-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

    .krishna-fire-particles::before,
    .krishna-fire-particles::after {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background-image: radial-gradient(circle, rgba(255,220,120,0.9) 1px, transparent 2px);
        background-size: 70px 70px;
        opacity: 0.3;
        animation: emberRise 18s linear infinite;
    }

    .krishna-fire-particles::after {
        opacity: 0.12;
        animation-duration: 28s;
    }

.krishna-energy-flash {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.18), rgba(255,180,0,0.08), transparent 70%);
    filter: blur(70px);
    z-index: 2;
    animation: energyMove 7s ease-in-out infinite;
}

.krishna-smoke {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.06), transparent 35%), radial-gradient(circle at 70% 60%, rgba(255,255,255,0.04), transparent 40%);
    filter: blur(110px);
    animation: smokeMove 14s ease-in-out infinite alternate;
}

.krishna-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient( to bottom, rgba(255,140,0,0.05), transparent 30%, transparent 70%, rgba(0,0,0,0.5) );
    pointer-events: none;
}

.video-inner {
    position: relative;
    z-index: 10;
}

    .video-inner video {
        display: block;
        max-width: 100%;
        border-radius: 18px;
        border: 2px solid rgba(255,180,0,0.25);
        box-shadow: 0 0 30px rgba(255,160,0,0.35), 0 0 90px rgba(255,80,0,0.2), 0 35px 120px rgba(0,0,0,0.8);
        animation: krishnaFloat 6s ease-in-out infinite, imageGlow 4s ease-in-out infinite alternate;
    }

/* ── PLAY OVERLAY ── */
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 18px;
    background: rgba(0,0,0,0.38);
    transition: background 0.4s ease;
    z-index: 20;
}

    .video-play-overlay:hover {
        background: rgba(0,0,0,0.22);
    }

    .video-play-overlay.hidden {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
    }

/* Rotating outer ring */
.play-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255,180,0,0.35);
}

.play-ring-outer {
    width: 130px;
    height: 130px;
    animation: rotateRing 10s linear infinite;
    border-style: dashed;
}

.play-ring-inner {
    width: 100px;
    height: 100px;
    animation: rotateRing 6s linear infinite reverse;
    border-color: rgba(255,120,0,0.3);
}

/* Play icon circle */
.play-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(180,60,0,0.55);
    border: 2px solid rgba(255,200,80,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 24px rgba(255,140,0,0.55), 0 0 60px rgba(255,80,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: playPulse 3s ease-in-out infinite;
}

.video-play-overlay:hover .play-icon-wrap {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255,160,0,0.8), 0 0 90px rgba(255,80,0,0.45);
}

.play-triangle {
    width: 30px;
    height: 30px;
    margin-left: 4px; /* optical center for triangle */
    filter: drop-shadow(0 0 6px rgba(255,180,0,0.9));
}

/* Label below icon */
.play-label {
    margin-top: 18px;
    font-family: serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: rgba(255,200,80,0.7);
    position: relative;
    z-index: 2;
    text-shadow: 0 0 12px rgba(255,120,0,0.6);
}

/* ── UNMUTE NUDGE ── */
.unmute-nudge {
    display: none;
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,180,0,0.45);
    color: rgba(255,200,80,1);
    font-size: 12px;
    letter-spacing: 0.12em;
    padding: 7px 20px;
    border-radius: 40px;
    cursor: pointer;
    z-index: 25;
    backdrop-filter: blur(6px);
    white-space: nowrap;
    transition: background 0.3s;
    display: flex;
    align-items: center;
}

    .unmute-nudge.hidden {
        display: none !important;
    }

    .unmute-nudge:hover {
        background: rgba(255,100,0,0.2);
    }

/* ── PLAY PULSE ANIMATION ── */
@keyframes playPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255,140,0,0.5), 0 0 50px rgba(255,80,0,0.25);
    }

    50% {
        box-shadow: 0 0 35px rgba(255,160,0,0.8), 0 0 80px rgba(255,80,0,0.4);
    }
}

/* ══════════════════════════════
           SHLOKA SECTION — BATTLEFIELD BG
        ══════════════════════════════ */

.geeta-shloka-section {
    width: 100%;
    min-height: 1000px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

/* Battlefield image background */
.geeta-bg {
    position: absolute;
    inset: 0; 
    background-image: url('../Image/battlefield.jpg'); /* ← your image */
    background-size: cover;
    background-position: center top;
    z-index: 0;
    transform: scale(1.06);
    transition: transform 16s ease-out;
}

    .geeta-bg.revealed {
        transform: scale(1.0);
    }

/* Dark cinematic overlay — keeps text readable */
.geeta-dark-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.75) 100%), linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.1) 35%, rgba(0,0,0,0.1) 65%, rgba(0,0,0,0.65));
}

.geeta-overlay-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    pointer-events: none;
}

    .geeta-overlay-inner .geeta-shloka-block {
        top: -95px;
        max-width: min(920px, 92vw);
    }

.geeta-shloka-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.geeta-shloka--original {
    font-family: 'Noto Sans Devanagari', 'Mangal', 'Arial Unicode MS', serif;
    margin: 0;
    padding-bottom: 0;
}

.geeta-shloka-translation {
    font-size: clamp(0.85rem, 1.8vw, 1.35rem);
    line-height: 1.85;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 0 1.5rem 1rem;
    margin: 0;
    max-width: min(780px, 88vw);
    color: rgba(255, 215, 120, 0);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1.2s ease 0.15s, transform 1.2s ease 0.15s, color 1.4s ease 0.15s;
}

    .geeta-shloka-translation.revealed {
        opacity: 1;
        transform: translateY(0);
        color: rgba(255, 210, 140, 0.88);
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.9);
    }

.geeta-shloka-translation--hindi {
    font-family: 'Noto Sans Devanagari', 'Mangal', 'Arial Unicode MS', serif;
}

.geeta-shloka-translation--english {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    line-height: 1.9;
}

.geeta-shloka-translation--thai {
    font-family: 'Noto Sans Thai', 'Leelawadee UI', sans-serif;
    line-height: 1.95;
}

.geeta-shloka-translation--sanskrit {
    font-family: 'Noto Sans Devanagari', 'Mangal', 'Arial Unicode MS', serif;
    line-height: 2;
}

/* Ember particles floating up */
.geeta-embers {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

    .geeta-embers::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background-image: radial-gradient(circle, rgba(255,210,80,0.9) 1px, transparent 2px);
        background-size: 65px 65px;
        opacity: 0.2;
        animation: emberRise 20s linear infinite;
    }

    .geeta-embers::after {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background-image: radial-gradient(circle, rgba(255,120,20,0.7) 1px, transparent 2px);
        background-size: 95px 95px;
        opacity: 0.1;
        animation: emberRise 32s linear infinite reverse;
    }

/* Orange fire glow from bottom */
.geeta-fire-aura {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at center bottom, rgba(255,80,0,0.28) 0%, transparent 60%);
    animation: fireAura 5s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Ghost watermark behind text */
.geeta-watermark {
    position: absolute;
    top: 10%;
    left: 61%;
    transform: translate(-50%, -50%);
    font-size: clamp(3rem, 10vw, 10rem);
    font-weight: 900;
    letter-spacing: 0.35em;
    white-space: nowrap;
    color: rgba(255,255,255,0.03);
    z-index: 3;
    pointer-events: none;
    text-shadow: 0 0 60px rgba(255,140,0,0.06);
    animation: watermarkMove 12s ease-in-out infinite alternate;
}

.chak-watermark {
    position: absolute;
    top: 94%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3rem, 10vw, 10rem);
    font-weight: 900;
    letter-spacing: 0.35em;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    pointer-events: none;
    text-shadow: 0 0 60px rgba(255, 140, 0, 0.06);
    animation: watermarkMove 12s ease-in-out infinite alternate;
}

.chak-watermark1 {
    position: absolute;
    top: 9%;
    left: 60%;
    transform: translate(-50%, -50%);
    font-size: clamp(3rem, 10vw, 10rem);
    font-weight: 900;
    letter-spacing: 0.35em;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.03);
    z-index: 3;
    pointer-events: none;
    text-shadow: 0 0 60px rgba(255, 140, 0, 0.06);
    animation: watermarkMove 12s ease-in-out infinite alternate;
}

/* Content wrapper above all layers */
.geeta-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 4rem 2rem;
}

/* Source label */
.geeta-source-label {
    font-family: serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: rgba(255,160,60,0);
    margin-bottom: 1rem;
    text-align: center;
    opacity: 0;
    transition: opacity 1.4s ease 0.5s, color 1.4s ease 0.5s;
}

    .geeta-source-label.revealed {
        opacity: 1;
        color: rgba(255,160,60,0.75);
    }

/* Divider lines */
.geeta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0.6rem 0;
    opacity: 0;
    transition: opacity 1.5s ease 0.7s;
}

    .geeta-divider.revealed {
        opacity: 1;
    }

.geeta-line {
    width: 70px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,180,60,0.7));
}

.geeta-line-right {
    background: linear-gradient(to left, transparent, rgba(255,180,60,0.7));
}

.geeta-dot {
    color: rgba(255,180,60,0.8);
    font-size: 11px;
}

/* ── MAIN SHLOKA TEXT ── */
.geeta-shloka {
    font-family: 'Noto Sans Devanagari', 'Mangal', 'Arial Unicode MS', serif;
    font-size: clamp(1.1rem, 3vw, 2.6rem);
    line-height: 2.2;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 1.2rem 2rem;
    /* start state — invisible */
    color: rgba(255,215,120,0);
    opacity: 0;
    transform: translateY(22px);
    /* reveal transition */
    transition: opacity 1.3s ease, transform 1.3s ease, color 1.5s ease, text-shadow 1.5s ease;
    top: -95px;
}

    .geeta-shloka.revealed {
        opacity: 1;
        transform: translateY(0);
        color: rgba(255,230,150,1);
        text-shadow: 0 0 14px rgba(255,160,0,0.95), 0 0 35px rgba(255,100,0,0.65), 0 0 75px rgba(255,60,0,0.35), 0 2px 6px rgba(0,0,0,0.95);
    }

/* ══════════════════════════════
           LANGUAGE SELECTION
        ══════════════════════════════ */

body.language-locked {
    overflow: hidden;
}

.language-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: rgba(5, 2, 4, 0.93);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(8px);
}

    .language-modal-overlay.open {
        display: flex;
    }

.language-modal {
    background: var(--dark-surface);
    border: 1px solid rgba(201, 168, 76, 0.25);
    max-width: 420px;
    width: 100%;
}

.language-modal-header {
    background: linear-gradient(135deg, var(--blood), var(--dark-surface));
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

    .language-modal-header h3 {
        font-family: 'Cinzel Decorative', serif;
        font-size: 1.3rem;
        color: var(--gold);
        margin: 0;
        text-align: center;
    }

.language-modal-body {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.language-option {
    width: 100%;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--scripture);
    background: rgba(10, 6, 8, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.25s;
}

    .language-option:hover {
        border-color: rgba(201, 168, 76, 0.55);
        color: var(--gold);
        background: rgba(201, 168, 76, 0.06);
    }

.language-confirm-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: rgba(5, 2, 4, 0.93);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(8px);
}

    .language-confirm-overlay.open {
        display: flex;
    }

.language-confirm-modal {
    background: var(--dark-surface);
    border: 1px solid rgba(201, 168, 76, 0.3);
    max-width: 460px;
    width: 100%;
    padding: 2rem 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    animation: fade-up 0.35s ease;
}

.language-confirm-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(212, 196, 160, 0.85);
    margin: 0 0 1rem;
    line-height: 1.5;
    text-align: center;
}

    .language-confirm-text strong {
        color: var(--gold);
        font-weight: 600;
    }

.language-confirm-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.language-confirm-btn {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 14px;
    cursor: pointer;
    border: 1px solid rgba(201, 168, 76, 0.25);
    transition: all 0.2s;
}

.language-confirm-btn--primary {
    color: var(--ink);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: transparent;
}

.language-confirm-btn--secondary {
    color: var(--scripture);
    background: rgba(10, 6, 8, 0.8);
}

    .language-confirm-btn:hover {
        filter: brightness(1.08);
    }

/* ══════════════════════════════
           SHARED KEYFRAMES
        ══════════════════════════════ */

@keyframes krishnaFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes imageGlow {
    0% {
        box-shadow: 0 0 20px rgba(255,160,0,0.2), 0 25px 90px rgba(0,0,0,0.7);
    }

    100% {
        box-shadow: 0 0 45px rgba(255,180,0,0.45), 0 0 120px rgba(255,80,0,0.25), 0 35px 120px rgba(0,0,0,0.8);
    }
}

@keyframes fireAura {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes emberRise {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-700px);
    }
}

@keyframes energyMove {
    0% {
        transform: translate(-250px, 0);
        opacity: 0.15;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: translate(250px, -60px);
        opacity: 0.12;
    }
}

@keyframes smokeMove {
    0% {
        transform: translateX(-30px);
    }

    100% {
        transform: translateX(50px);
    }
}

@keyframes watermarkMove {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -52%) scale(1.05);
    }
}


/* ══════════════════════════════
           MOBILE
        ══════════════════════════════ */

@media (max-width: 768px) {

    .krishna-image-wrapper {
        padding: 2rem 1rem;
    }

    .krishna-centered-image {
        max-width: 100%;
        border-radius: 18px;
    }

    .krishna-image-wrapper::after {
        font-size: 3rem;
        letter-spacing: 0.15em;
    }

    .krishna-fire-ring,
    .krishna-energy-flash {
        display: none;
    }

    .geeta-shloka-section {
        min-height: 320px;
    }

    .geeta-shloka {
        font-size: clamp(0.95rem, 4.5vw, 1.2rem);
        padding: 1rem;
    }

    .geeta-watermark {
        font-size: 2.5rem;
        letter-spacing: 0.15em;
    }

    .geeta-line {
        width: 40px;
    }
}

/* Unmute button */
.unmute-btn {
    display: none;
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 180, 0, 0.5);
    color: rgba(255, 200, 80, 1);
    font-size: 13px;
    letter-spacing: 0.15em;
    padding: 8px 22px;
    border-radius: 40px;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(6px);
    transition: background 0.3s, border 0.3s;
}

    .unmute-btn:hover {
        background: rgba(255, 120, 0, 0.25);
        border-color: rgba(255, 180, 0, 0.9);
    }

.video-inner {
    position: relative;
    z-index: 10;
}

    .video-inner video {
        border-radius: 18px;
        border: 2px solid rgba(255, 180, 0, 0.25);
        box-shadow: 0 0 30px rgba(255,160,0,0.35), 0 0 90px rgba(255,80,0,0.2), 0 35px 120px rgba(0,0,0,0.8);
        animation: krishnaFloat 6s ease-in-out infinite, imageGlow 4s ease-in-out infinite alternate;
        display: block;
        max-width: 100%;
    }
/* ══ VIDEO INNER ══ */
.video-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}

    /* ══ VIDEO ELEMENT ══ */
    .video-inner video {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 18px;
        border: 2px solid rgba(255,180,0,0.25);
        box-shadow: 0 0 30px rgba(255,160,0,0.35), 0 0 90px rgba(255,80,0,0.2), 0 35px 120px rgba(0,0,0,0.8);
        animation: krishnaFloat 6s ease-in-out infinite, imageGlow 4s ease-in-out infinite alternate;
        object-fit: cover;
    }

/* ══ CENTER OVERLAY ══ */
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 18px;
    background: rgba(0,0,0,0.35);
    transition: background 0.4s ease;
    z-index: 20;
}

    .video-play-overlay:hover {
        background: rgba(0,0,0,0.18);
    }

    /* when video is playing: fade overlay, shrink icon */
    .video-play-overlay.playing {
        background: transparent;
    }

        .video-play-overlay.playing .play-ring,
        .video-play-overlay.playing .play-label {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s;
        }

        .video-play-overlay.playing .yt-icon-wrap {
            transform: scale(0.6);
            opacity: 0.35;
            transition: transform 0.4s, opacity 0.4s;
        }

        .video-play-overlay.playing:hover .yt-icon-wrap {
            opacity: 0.9;
            transform: scale(0.75);
        }

/* ══ RINGS ══ */
.play-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255,180,0,0.3);
    pointer-events: none;
    transition: opacity 0.4s;
}

.play-ring-outer {
    width: 150px;
    height: 150px;
    border-style: dashed;
    animation: rotateRing 10s linear infinite;
}

.play-ring-inner {
    width: 116px;
    height: 116px;
    border-color: rgba(255,100,0,0.25);
    animation: rotateRing 6s linear infinite reverse;
}

/* ══ YOUTUBE ICON ══ */
.yt-icon-wrap {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: drop-shadow(0 0 16px rgba(255,80,0,0.7)) drop-shadow(0 0 38px rgba(255,140,0,0.4));
    animation: playPulse 3s ease-in-out infinite;
}

.video-play-overlay:hover .yt-icon-wrap {
    transform: scale(1.1);
    filter: drop-shadow(0 0 26px rgba(255,100,0,0.95)) drop-shadow(0 0 60px rgba(255,160,0,0.55));
}

.yt-svg {
    width: 90px;
    height: 64px;
    display: block;
}

/* ══ PLAY LABEL ══ */
.play-label {
    margin-top: 14px;
    font-family: serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: rgba(255,200,80,0.8);
    position: relative;
    z-index: 2;
    text-shadow: 0 0 12px rgba(255,120,0,0.7);
    transition: opacity 0.4s;
    pointer-events: none;
}

/* ══ BOTTOM CONTROLS ══ */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
    border-radius: 0 0 18px 18px;
    z-index: 25;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* always show on mobile, hover on desktop */
.video-inner:hover .video-controls {
    opacity: 1;
}

.ctrl-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.15s;
}

    .ctrl-btn:hover {
        transform: scale(1.2);
    }

/* progress */
.ctrl-progress-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    height: 20px;
}

.ctrl-progress-bg {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    position: relative;
}

.ctrl-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, rgba(255,140,0,1), rgba(255,215,80,1));
    border-radius: 3px;
    pointer-events: none;
    transition: width 0.1s linear;
}

.ctrl-progress-range {
    position: absolute;
    inset: -8px 0;
    width: 100%;
    height: 20px;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}

.ctrl-time {
    font-size: 11px;
    color: rgba(255,200,80,0.9);
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-family: monospace;
    flex-shrink: 0;
}

/* ══ MOBILE ══ */
@media (max-width: 768px) {
    .krishna-image-wrapper {
        padding: 2rem 1rem;
    }

    .video-inner video {
        border-radius: 12px;
    }

    .video-play-overlay {
        border-radius: 12px;
    }

    .video-controls {
        opacity: 1; /* always visible on touch */
        border-radius: 0 0 12px 12px;
        padding: 8px 10px 10px;
    }

    .play-ring-outer {
        width: 110px;
        height: 110px;
    }

    .play-ring-inner {
        width: 84px;
        height: 84px;
    }

    .yt-svg {
        width: 70px;
        height: 50px;
    }

    .play-label {
        font-size: 10px;
    }

    .ctrl-time {
        display: none;
    }
    /* saves space on small screens */
}

/* ══ KEYFRAMES ══ */
@keyframes krishnaFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes imageGlow {
    0% {
        box-shadow: 0 0 20px rgba(255,160,0,0.2), 0 25px 90px rgba(0,0,0,0.7);
    }

    100% {
        box-shadow: 0 0 45px rgba(255,180,0,0.45), 0 0 120px rgba(255,80,0,0.25), 0 35px 120px rgba(0,0,0,0.8);
    }
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes playPulse {
    0%, 100% {
        filter: drop-shadow(0 0 14px rgba(255,80,0,0.6)) drop-shadow(0 0 35px rgba(255,140,0,0.3));
    }

    50% {
        filter: drop-shadow(0 0 26px rgba(255,100,0,0.9)) drop-shadow(0 0 60px rgba(255,160,0,0.5));
    }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE LAYOUT SYSTEM
   Breakpoints:
   - Mobile:        320px – 480px  (max-width: 480px)
   - Tablet:        481px – 768px  (max-width: 768px)
   - Small Laptop:  769px – 1024px (max-width: 1024px)
   - Desktop:       1025px+
   ══════════════════════════════════════════════════════════════ */

/* ── RESPONSIVE: Small Laptop (769px – 1024px) ── */
@media (max-width: 1024px) {
    nav {
        padding: 0 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .heroes-section,
    .yugas-section,
    .geeta-section,
    .studio-section,
    .faq,
    .jobs-section {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .careers-hero {
        padding: 10rem 2.5rem 5rem;
    }

    footer {
        padding: 3.5rem 2.5rem 2rem;
    }

    .footer-top {
        gap: 2.5rem;
    }

    .studio-section {
        gap: 3.5rem;
    }

    .krishna-image-wrapper {
        min-height: 70vh;
        padding: 4rem 1.5rem;
    }

    .krishna-image-geeta-bg,
    .geeta-bg {
        height: 100%;
    }

    .geeta-shloka-section {
        min-height: 70vh;
    }

    .krishna-image-wrapper::before {
        width: min(1200px, 140vw);
        height: min(1200px, 140vw);
    }

    .krishna-fire-ring {
        width: min(1100px, 130vw);
        height: min(1100px, 130vw);
    }

    .krishna-title {
        font-size: clamp(1.1rem, 2.8vw, 1.75rem);
    }

    .faq-columns {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

/* ── RESPONSIVE: Tablet (481px – 768px) ── */
@media (max-width: 768px) {
    nav {
        padding: 0 1.25rem;
        height: 4rem;
    }

    .nav-logo-img {
        width: 2.5rem;
        height: 2.5rem;
    }

    .nav-logo-text {
        font-size: 1rem;
    }

    .nav-logo-sub {
        font-size: 0.5rem;
        letter-spacing: 0.2em;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 0;
        background: linear-gradient(180deg, rgba(5, 2, 4, 0.98) 0%, rgba(10, 6, 8, 0.97) 100%);
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
        backdrop-filter: blur(12px);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1001;
    }

        .nav-links li {
            width: 100%;
        }

        .nav-links a {
            display: block;
            padding: 0.9rem 1.5rem;
            font-size: 0.75rem;
            letter-spacing: 0.16em;
            min-height: 2.75rem;
        }

        .nav-links .nav-cta {
            margin: 0.5rem 1.25rem 0.75rem;
            text-align: center;
            display: block;
        }

    nav.nav-open .nav-links {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .hero {
        min-height: 100svh;
        padding: clamp(4rem, 7vh, 5rem) 1.25rem clamp(1.5rem, 4vh, 2.5rem);
    }

    .hero-content {
        max-width: min(54rem, 96vw);
        gap: clamp(0.55rem, 1.4vh, 1rem);
    }

    .hero-eyebrow {
        font-size: clamp(0.75rem, 2.8vw, 1.05rem);
        line-height: 1.5;
        letter-spacing: 0.02em;
    }

    .hero-coming-soon {
        font-size: clamp(1.15rem, 4.5vw, 2rem);
        line-height: 1.45;
    }

    .hero-title .line2 {
        font-size: clamp(0.8rem, 3vw, 1rem);
        letter-spacing: 0.08em;
    }

    .hero-countdown {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .countdown-num {
        font-size: 2rem;
    }

    .countdown-sep {
        font-size: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 20rem;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0.9rem 1.25rem;
        min-height: 2.75rem;
        font-size: clamp(0.62rem, 2.8vw, 0.7rem);
        letter-spacing: clamp(0.1em, 0.2vw, 0.18em);
        overflow-wrap: break-word;
        word-wrap: break-word;
        white-space: normal;
    }

    .heroes-section,
    .yugas-section,
    .geeta-section,
    .studio-section,
    .faq,
    .jobs-section {
        padding: 4rem 1.25rem;
    }

    .careers-hero {
        padding: 7rem 1.25rem 4rem;
    }

    .careers-perks {
        gap: 0.75rem;
    }

    .perk {
        font-size: 0.58rem;
        padding: 0.5rem 0.75rem;
    }

    footer {
        padding: 3rem 1.25rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .studio-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .studio-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .studio-text h2 {
        font-size: clamp(1.4rem, 5vw, 1.85rem);
    }

    .faq-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-item summary {
        font-size: 0.9rem;
        padding: 1rem 2.25rem 1rem 1rem;
    }

    .job-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1rem;
    }

    .apply-btn {
        width: 100%;
        padding: 0.85rem 1.25rem;
        min-height: 2.75rem;
    }

    .jobs-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        flex: 1 1 auto;
        min-width: calc(50% - 0.5rem);
        text-align: center;
        padding: 0.65rem 0.75rem;
    }

    .modal-overlay,
    .language-modal-overlay,
    .language-confirm-overlay {
        padding: 1rem;
        align-items: center;
    }

    .modal,
    .language-modal,
    .language-confirm-modal {
        max-height: 92vh;
    }

    .modal-header,
    .modal-body,
    .language-modal-header,
    .language-modal-body,
    .language-confirm-modal {
        padding: 1.25rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-input,
    .form-select,
    .form-textarea {
        font-size: 1rem;
        padding: 0.75rem 0.9rem;
        min-height: 2.75rem;
    }

    .form-submit,
    .language-option,
    .language-confirm-btn {
        min-height: 2.75rem;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .file-upload {
        padding: 1.25rem;
    }

    .coming-soon-banner p {
        font-size: 0.62rem;
        letter-spacing: 0.2em;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .krishna-image-wrapper {
        min-height: 55vh;
        padding: 2.5rem 1rem;
    }

    .krishna-image-geeta-bg,
    .geeta-bg {
        height: 100%;
    }

    .geeta-shloka-section {
        min-height: 50vh;
    }

    .geeta-overlay-inner {
        padding: 2.5rem 1rem;
        position: relative;
    }

        .geeta-overlay-inner .geeta-shloka-block {
            top: 0;
        }

    .geeta-shloka {
        top: 0;
        padding: 1rem;
        line-height: 1.9;
    }

    .geeta-section::before {
        font-size: clamp(3rem, 18vw, 8rem);
        white-space: normal;
        text-align: center;
        width: 90%;
    }

    .krishna-title {
        font-size: clamp(0.85rem, 3.8vw, 1.25rem);
        letter-spacing: 0.06em;
        line-height: 1.55;
        max-width: 94vw;
    }

    .krishna-image-wrapper::after {
        font-size: clamp(1.5rem, 8vw, 3rem);
        letter-spacing: 0.1em;
        white-space: normal;
        text-align: center;
        width: 90%;
    }

    .krishna-fire-ring,
    .krishna-energy-flash {
        display: none;
    }

    .geeta-watermark {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        letter-spacing: 0.12em;
    }

    .geeta-line {
        width: 2.5rem;
    }

    .section-eyebrow {
        font-size: 1.2rem;
    }

    .geeta-shloka-translation {
        padding: 0 0.75rem 0.75rem;
    }
}

/* ── RESPONSIVE: Mobile (320px – 480px) ── */
@media (max-width: 480px) {
    nav {
        padding: 0 1rem;
    }

    .nav-logo {
        gap: 0.6rem;
        min-width: 0;
    }

        .nav-logo > div {
            min-width: 0;
        }

    .nav-logo-sub {
        letter-spacing: 0.12em;
    }

    .hero-eyebrow {
        font-size: clamp(0.7rem, 3.2vw, 0.95rem);
        letter-spacing: 0.02em;
        line-height: 1.55;
    }

    .hero-coming-soon {
        font-size: clamp(1rem, 5vw, 1.65rem);
        line-height: 1.45;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-divider {
        gap: 0.75rem;
        margin: clamp(0.2rem, 0.6vh, 0.5rem) auto;
    }

    .hero-countdown {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .countdown-unit {
        min-width: 3.5rem;
    }

    .countdown-num {
        font-size: 1.6rem;
    }

    .countdown-label {
        font-size: 0.5rem;
    }

    .countdown-sep {
        font-size: 1.2rem;
        margin-top: -0.5rem;
    }

    .heroes-section,
    .yugas-section,
    .geeta-section,
    .studio-section,
    .faq,
    .jobs-section {
        padding: 3rem 1rem;
    }

    .careers-hero {
        padding: 6rem 1rem 3rem;
    }

    .careers-hero p {
        font-size: 0.95rem;
    }

    .studio-stat-grid {
        grid-template-columns: 1fr;
    }

    .studio-stat-num {
        font-size: 1.75rem;
    }

    .faq {
        padding: 3.5rem 1rem;
    }

    .faq-group-title {
        font-size: 0.9rem;
    }

    .filter-btn {
        min-width: 100%;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.35rem;
    }

    .modal-close {
        top: 0.85rem;
        right: 0.85rem;
        width: 2.25rem;
        height: 2.25rem;
    }

    .language-confirm-actions {
        flex-direction: column;
    }

    .language-confirm-btn {
        width: 100%;
    }

    .krishna-image-wrapper {
        min-height: 45vh;
        padding: 2rem 0.75rem;
    }

    .geeta-shloka-section {
        min-height: 40vh;
    }

    .krishna-centered-image,
    .video-inner video {
        border-radius: 0.75rem;
    }

    .video-play-overlay {
        border-radius: 0.75rem;
    }

    .form-submit-loader-text {
        font-size: 0.7rem;
        padding: 0 1rem;
        text-align: center;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.68rem;
        line-height: 1.5;
    }
}

/* ── RESPONSIVE: Large screens (1025px+) ── */
@media (min-width: 1025px) {
    .hero-content,
    .studio-section,
    .jobs-section,
    .yugas-timeline {
        width: 100%;
    }

    .krishna-image-wrapper::after {
        white-space: nowrap;
    }
}

/* ── RESPONSIVE: Prevent horizontal scroll ── */
@media (max-width: 1024px) {
    .page,
    .hero,
    .krishna-image-wrapper,
    .geeta-shloka-section,
    .careers-hero,
    .faq,
    footer {
        overflow-x: hidden;
        max-width: 100%;
    }

    .battle-watermark-text {
        font-size: min(20vw, 8rem);
    }
}