/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    display: flex;
    /* align-items: end; */
    justify-content: end;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .hero-video-bg iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        aspect-ratio: 16 / 9;
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
        pointer-events: none;
    }

    .hero-video-bg video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: right;
    color: var(--white);
    padding: 10vh 90px;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), #0d1f45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-image: linear-gradient(30deg, rgba(193, 138, 84, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(193, 138, 84, 0.05) 87.5%, rgba(193, 138, 84, 0.05)), linear-gradient(150deg, rgba(193, 138, 84, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(193, 138, 84, 0.05) 87.5%, rgba(193, 138, 84, 0.05)), linear-gradient(30deg, rgba(193, 138, 84, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(193, 138, 84, 0.05) 87.5%, rgba(193, 138, 84, 0.05)), linear-gradient(150deg, rgba(193, 138, 84, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(193, 138, 84, 0.05) 87.5%, rgba(193, 138, 84, 0.05)), linear-gradient(60deg, rgba(22, 47, 102, 0.03) 25%, transparent 25.5%, transparent 75%, rgba(22, 47, 102, 0.03) 75%, rgba(22, 47, 102, 0.03)), linear-gradient(60deg, rgba(22, 47, 102, 0.03) 25%, transparent 25.5%, transparent 75%, rgba(22, 47, 102, 0.03) 75%, rgba(22, 47, 102, 0.03));
    background-size: 160px 280px;
    background-position: 0 0, 0 0, 80px 140px, 80px 140px, 0 0, 80px 140px;
    clip-path: polygon(9% 0, 100% 0, 100% 27%, 100% 75%, 103% 100%, 9% 100%, 0 80%, 0 21%);
}



.hero-title {
    font-size: clamp(1.625rem, 1rem + 2vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 490px;
    opacity: 0;
    animation: fadeUp 1s 0.2s var(--transition-smooth) forwards;
    color: #fff;
}

    .hero-title span {
        color: var(--primary-orange);
        position: relative;
        display: inline-block;
    }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgb(0 139 69);
            z-index: -1;
            transform: skewX(-10deg);
        }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255);
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 490px;
    margin-right: auto;
    opacity: 0;
    animation: fadeUp 1s 0.4s var(--transition-smooth) forwards;
    text-wrap: balance;
}

.hero-buttons {
    display: flex;
    max-width: 480px;
    gap: 16px;
    justify-content: end;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 0.6s var(--transition-smooth) forwards;
}

/* Countdown */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 1s 0.8s var(--transition-smooth) forwards;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
    min-width: 90px;
    text-align: center;
    transition: all 0.3s ease;
}

    .countdown-item:hover {
        background: rgba(232, 93, 43, 0.15);
        border-color: rgba(232, 93, 43, 0.3);
        transform: translateY(-5px);
    }

    .countdown-item .number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--white);
        line-height: 1;
        display: block;
        font-variant-numeric: tabular-nums;
    }

    .countdown-item .label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--accent-gold);
        margin-top: 8px;
        font-weight: 600;
    }

/* Concurrent Events */
.concurrent-events {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 1s var(--transition-smooth) forwards;
}

.concurrent-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.event-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.event-logo-item {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .event-logo-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--primary-orange);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .event-logo-item:hover {
        border-color: var(--primary-orange);
        transform: translateY(-5px) scale(1.05);
    }

        .event-logo-item:hover::before {
            opacity: 0.1;
        }

    .event-logo-item span {
        position: relative;
        z-index: 1;
    }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

    .scroll-indicator i {
        font-size: 20px;
    }

@keyframes bounce {

    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   BREAKING NEWS SECTION — COMPLETE STYLES
   ============================================ */


/* ===== MARKET / BREAKING NEWS SECTION ===== */
.market-section {
    padding: 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* .market-section .container {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #f8f6f2 0%, #ffffff 15%, #ffffff 85%, #f0ece4 100%);
    border-radius: 0 0 20px 20px;
    padding: 50px 16px 24px;
} */

.market-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(232, 93, 43, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 139, 69, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.market-heading .subtitle i {
    margin-right: 8px;
    color: var(--primary-orange);
}

/* ===== BREAKING NEWS BANNER ===== */
/* ===== MAIN BANNER ===== */
.bn-banner {
    position: relative;
    width: 100%;
    min-height: 230px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

    /* Halftone dot pattern - top left */
    .bn-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 300px;
        height: 300px;
        background-image: radial-gradient(circle, var(--light-gray) 1.5px, transparent 1.5px);
        background-size: 12px 12px;
        opacity: 0.6;
        z-index: 1;
        mask-image: radial-gradient(circle at top left, black 30%, transparent 70%);
        -webkit-mask-image: radial-gradient(circle at top left, black 30%, transparent 70%);
    }

    /* Subtle gradient overlay */
    .bn-banner::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.2) 100%);
        z-index: 2;
        pointer-events: none;
    }

/* ===== RIGHT SIDE IMAGE ===== */
.bn-image-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
    clip-path: ellipse(90% 110% at 100% 50%);
    animation: imageReveal 1.5s var(--transition-smooth) 0.2s both;
}

    .bn-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        animation: kenBurns 20s ease-in-out infinite alternate;
    }

.bn-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.4) 30%, transparent 100%);
    z-index: 2;
}

/* ===== CONTENT AREA ===== */
.bn-content {
    position: relative;
    z-index: 10;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: center;
}

/* ===== RIBBON ===== */
.bn-ribbon {
    display: inline-flex;
    align-items: center;
    position: relative;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
    animation: ribbonSlide 0.8s var(--transition-smooth) 0.3s both;
}

.bn-ribbon-left {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #c44a1f 100%);
    color: var(--white);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    font-style: italic;
    padding: 10px 28px;
    text-transform: uppercase;
    letter-spacing: 3px;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bn-ribbon-right {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f1f45 100%);
    color: var(--white);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    font-style: italic;
    padding: 10px 28px;
    text-transform: uppercase;
    letter-spacing: 3px;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -14px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===== SUB RIBBON ===== */
.bn-subribbon {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    padding: 10px 32px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(232, 93, 43, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: subRibbonPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

    .bn-subribbon span {
        font-size: clamp(0.95rem, 2vw, 1.25rem);
        font-weight: 700;
        color: var(--primary-green);
        letter-spacing: 0.5px;
    }

    .bn-subribbon strong {
        color: var(--primary-orange);
        font-weight: 800;
    }

/* ===== WELCOME LINE ===== */
.bn-welcome {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 8px 0 4px;
    animation: fadeSlideUp 0.8s var(--transition-smooth) 0.8s both;
    width: 100%;
}

.bn-welcome-text {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 4px;
    text-transform: uppercase;
    /* white-space: nowrap; */
}

.bn-line {
    width: 107px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    position: relative;
    overflow: hidden;
}

    .bn-line::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
        animation: lineShimmer 3s ease-in-out infinite;
    }

/* ===== MAIN HEADLINE ===== */
.bn-headline {
    line-height: 1.1;
    margin: 4px 0;
}

.headline-row-1 {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeSlideUp 1s var(--transition-smooth) 1s both;
}

.headline-row-2 {
    display: block;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.headline-orange {
    color: var(--primary-orange);
    display: inline-block;
    animation: fadeSlideUp 1s var(--transition-smooth) 1.2s both;
    position: relative;
}

.headline-green {
    color: var(--primary-green);
    display: inline-block;
    animation: fadeSlideUp 1s var(--transition-smooth) 1.4s both;
}

/* Light sweep effect on headline */
.headline-orange::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: lightSweep 4s ease-in-out infinite;
    pointer-events: none;
}

/* ===== FOOTER INFO ===== */
.bn-footer {
    display: flex;
    align-items: start;
    justify-content: center;
    width: 100%;
    gap: 16px;
    margin-top: 16px;
    animation: fadeSlideUp 0.8s var(--transition-smooth) 1.6s both;
}

.bn-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), #0f1f45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(22, 47, 102, 0.25);
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
    margin-top: 1%;
}

    .bn-icon-wrap svg {
        width: 28px;
        height: 28px;
        fill: var(--white);
    }

.bn-footer-text {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--dark);
    font-weight: 600;
    line-height: 1.4;
}

    .bn-footer-text .highlight {
        color: var(--primary-blue);
        font-weight: 700;
    }

/* ===== GOLD BADGE ===== */
.bn-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d4a76a 50%, var(--accent-gold) 100%);
    background-size: 200% 200%;
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 6px;
    vertical-align: middle;
    box-shadow: 0 4px 15px rgba(193, 138, 84, 0.4), 0 0 0 3px rgba(193, 138, 84, 0.2);
    position: relative;
    animation: badgeFloat 3s ease-in-out infinite, badgeShine 3s ease-in-out infinite;
}

    .bn-badge sup {
        font-size: 0.55em;
        margin-left: 1px;
    }

    .bn-badge::before {
        content: '';
        position: absolute;
        inset: -6px;
        border: 2px solid var(--accent-gold);
        border-radius: 50%;
        opacity: 0.4;
        animation: badgeRing 2s ease-out infinite;
    }

/* ===== PARTICLES ===== */
.bn-particles {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.bn-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px var(--accent-gold);
}

    .bn-particle:nth-child(1) {
        left: 5%;
        top: 20%;
        animation: particleFloat 5s ease-in-out 0s infinite;
        width: 4px;
        height: 4px;
    }

    .bn-particle:nth-child(2) {
        left: 15%;
        top: 75%;
        animation: particleFloat 6s ease-in-out 0.6s infinite;
        width: 3px;
        height: 3px;
    }

    .bn-particle:nth-child(3) {
        left: 25%;
        top: 10%;
        animation: particleFloat 7s ease-in-out 1.2s infinite;
    }

    .bn-particle:nth-child(4) {
        left: 35%;
        top: 65%;
        animation: particleFloat 5.5s ease-in-out 0.3s infinite;
        width: 2px;
        height: 2px;
        background: var(--primary-orange);
    }

    .bn-particle:nth-child(5) {
        left: 45%;
        top: 30%;
        animation: particleFloat 6.5s ease-in-out 1s infinite;
    }

    .bn-particle:nth-child(6) {
        left: 55%;
        top: 60%;
        animation: particleFloat 5s ease-in-out 1.8s infinite;
        width: 3px;
        height: 3px;
        background: var(--primary-green);
    }

    .bn-particle:nth-child(7) {
        left: 65%;
        top: 18%;
        animation: particleFloat 6.2s ease-in-out 0.9s infinite;
        width: 4px;
        height: 4px;
    }

    .bn-particle:nth-child(8) {
        left: 75%;
        top: 78%;
        animation: particleFloat 7.5s ease-in-out 1.4s infinite;
        width: 2px;
        height: 2px;
    }

    .bn-particle:nth-child(9) {
        left: 85%;
        top: 35%;
        animation: particleFloat 5.8s ease-in-out 0.7s infinite;
        background: var(--accent-gold);
    }

    .bn-particle:nth-child(10) {
        left: 92%;
        top: 55%;
        animation: particleFloat 6.6s ease-in-out 1.1s infinite;
        width: 3px;
        height: 3px;
    }

    .bn-particle:nth-child(11) {
        left: 8%;
        top: 50%;
        animation: particleFloat 7.2s ease-in-out 1.6s infinite;
        width: 2px;
        height: 2px;
    }

    .bn-particle:nth-child(12) {
        left: 18%;
        top: 30%;
        animation: particleFloat 5.4s ease-in-out 0.4s infinite;
        background: var(--primary-orange);
    }

    .bn-particle:nth-child(13) {
        left: 28%;
        top: 85%;
        animation: particleFloat 6.8s ease-in-out 2s infinite;
        width: 4px;
        height: 4px;
    }

    .bn-particle:nth-child(14) {
        left: 38%;
        top: 40%;
        animation: particleFloat 5.6s ease-in-out 0.2s infinite;
    }

    .bn-particle:nth-child(15) {
        left: 48%;
        top: 70%;
        animation: particleFloat 6.1s ease-in-out 1.9s infinite;
        width: 3px;
        height: 3px;
        background: var(--primary-green);
    }

    .bn-particle:nth-child(16) {
        left: 58%;
        top: 22%;
        animation: particleFloat 7.3s ease-in-out 0.8s infinite;
    }

    .bn-particle:nth-child(17) {
        left: 72%;
        top: 50%;
        animation: particleFloat 5.9s ease-in-out 1.3s infinite;
        width: 2px;
        height: 2px;
    }

    .bn-particle:nth-child(18) {
        left: 88%;
        top: 12%;
        animation: particleFloat 6.4s ease-in-out 2.2s infinite;
        width: 3px;
        height: 3px;
        background: var(--accent-gold);
    }

/* ===== ANIMATIONS ===== */
@keyframes imageReveal {
    from {
        clip-path: ellipse(0% 0% at 100% 50%);
        opacity: 0;
    }

    to {
        clip-path: ellipse(90% 110% at 100% 50%);
        opacity: 1;
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

@keyframes ribbonSlide {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes subRibbonPop {
    from {
        transform: scale(0.8) translateY(10px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(25px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes lineShimmer {
    0% {
        left: -100%;
    }

    50%, 100% {
        left: 100%;
    }
}

@keyframes lightSweep {
    0% {
        left: -100%;
    }

    20%, 100% {
        left: 200%;
    }
}

@keyframes iconPulse {

    0%, 100% {
        box-shadow: 0 4px 12px rgba(22, 47, 102, 0.25);
    }

    50% {
        box-shadow: 0 4px 20px rgba(22, 47, 102, 0.4), 0 0 0 4px rgba(22, 47, 102, 0.1);
    }
}

@keyframes badgeFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes badgeShine {

    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes badgeRing {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    15% {
        opacity: 0.8;
        transform: translateY(-15px) scale(1);
    }

    85% {
        opacity: 0.3;
        transform: translateY(-50px) scale(0.6);
    }

    100% {
        opacity: 0;
        transform: translateY(-70px) scale(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .bn-banner {
        /* min-height: 350px; */
    }

    .bn-content {
        width: 100%;
        padding: 30px 24px;
        align-items: center;
        text-align: center;
    }

    .bn-image-wrap {
        width: 100%;
        opacity: 0.25;
        clip-path: none;
    }

    .bn-headline {
        text-align: center;
    }

    .bn-footer {
        text-align: center;
        justify-content: center;
    }

    .bn-welcome {
        justify-content: center;
    }
}

/* ===== HERO IMAGE AREA ===== */
.bn-hero {
    position: relative;
    min-height: 300px;
    background: linear-gradient(135deg, #1a2a4a 0%, #2d4a6a 40%, #4a6741 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bn-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 42, 74, 0.7) 0%, rgba(26, 42, 74, 0.3) 50%, rgba(26, 42, 74, 0.6) 100%);
}

.bn-map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    z-index: 1;
}

.bn-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bn-map-overlay svg {
    width: 300px;
    height: 400px;
}

.map-outline {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawMap 3s ease forwards;
}

.pulse-ring {
    animation: mapPulse 3s ease-out infinite;
    transform-origin: center;
}

    .pulse-ring:nth-child(2) {
        animation-delay: 0.5s;
    }

    .pulse-ring:nth-child(3) {
        animation-delay: 1s;
    }

@keyframes drawMap {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes mapPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.bn-hero-content {
    position: relative;
    z-index: 2;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.bn-hero-image {
    position: relative;
}

    .bn-hero-image img {
        width: 100%;
        max-height: 360px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

.bn-hero-text {
    color: var(--white);
    text-align: center;
}

    .bn-hero-text h3 {
        font-size: clamp(1.4rem, 3vw, 2rem);
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        color: var(--white);
        backdrop-filter: blur(10px);
        padding: 15px;
        border-radius: 24px;
        margin: 20px;
    }

.bn-chart-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.bn-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
}

.bn-bar {
    width: 16px;
    background: linear-gradient(to top, var(--primary-green), #4ade80);
    border-radius: 2px 2px 0 0;
    opacity: 0.85;
}

    .bn-bar:nth-child(1) {
        height: 30%;
    }

    .bn-bar:nth-child(2) {
        height: 45%;
    }

    .bn-bar:nth-child(3) {
        height: 55%;
    }

    .bn-bar:nth-child(4) {
        height: 70%;
    }

    .bn-bar:nth-child(5) {
        height: 85%;
    }

    .bn-bar:nth-child(6) {
        height: 100%;
    }

.bn-arrow-up {
    width: 40px;
    height: 40px;
    color: var(--primary-green);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}



/* ===== SPRINT BANNER ===== */
.bn-sprint-banner {
    background: linear-gradient(90deg, #4a7c9b, #6a9ab5, #4a7c9b);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .bn-sprint-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/></svg>');
    }

    .bn-sprint-banner h3 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 700;
        color: var(--white);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 1;
        margin: 0;
    }







/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .bn-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bn-hero-text {
        text-align: center;
    }

    .bn-hero-image {
        order: 2;
    }

    .bn-content-grid {
        grid-template-columns: 1fr;
    }

    .bn-content-col:first-child {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
    }





    .stat-number {
        font-size: 2.5rem;
    }



    .bn-map-overlay svg {
        width: 200px;
        height: 280px;
    }
}

@media (max-width: 576px) {

    .bn-content-col {
        padding: 24px;
    }

    .bn-hero-content {
        padding: 24px;
    }

    .market-section {
        padding: 0;
    }
}

/* ============================================
   ABOUT / WELCOME / ROADMAP / GALLERY
   ============================================ */



.video-section video {
    margin-top: 50px;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
    background: var(--white);
    padding: 80px 0;
}

.welcome-video-bg {
    position: relative;
    overflow: hidden;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: end;
    border-radius: 24px;
}



/* .welcome-video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.welcome-grid {
    margin-top: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    background-color: #ffffff;
    backdrop-filter: blur(12px);
    padding: 15px;
}

.welcome-logo {
    flex-shrink: 0;
}

    .welcome-logo img {
        width: 140px;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 139, 69, 0.15);
    }

.welcome-text .title {
    /* color: #fff; */
}

.welcome-text p {
    font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
    /* color: #fff; */
    line-height: 1.8;
    margin: 0;
}

    .welcome-text p strong {
        font-weight: 600;
    }

/* ===== ROADMAP SECTION ===== */
.roadmap-section {
    position: relative;
    padding: 50px 0 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8f9fa 50%, var(--white) 100%);
    overflow: hidden;
}

    .roadmap-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23008B45' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.6;
        z-index: 0;
    }

.roadmap-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.roadmap-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out forwards;
}

    .roadmap-header h2 {
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 900;
        color: var(--primary-blue);
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

        .roadmap-header h2 span {
            color: var(--primary-green);
        }

    .roadmap-header .subtitle {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: var(--primary-orange);
        margin-bottom: 20px;
        display: inline-block;
        position: relative;
    }

        .roadmap-header .subtitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold), var(--primary-green));
            border-radius: 2px;
        }

    .roadmap-header p {
        max-width: 750px;
        margin: 30px auto 0;
        color: var(--gray);
        font-size: 1.05rem;
        line-height: 1.8;
    }

        .roadmap-header p strong {
            color: var(--primary-blue);
            font-weight: 700;
        }

/* Timeline */
.timeline-wrapper {
    position: relative;
    padding: 35px 0 0;
}

.timeline-line {
    position: absolute;
    top: 65px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-green) 50%, var(--primary-orange) 100%);
    border-radius: 2px;
    animation: lineGrow 1.5s ease-out 0.5s forwards;
    transform-origin: left;
    transform: scaleX(0);
}

    .timeline-line::after {
        content: '';
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 12px solid var(--primary-orange);
        animation: arrowPulse 2s ease-in-out infinite;
    }

.timeline-items {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    gap: 5px;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .timeline-item:nth-child(1) {
        animation-delay: 0.6s;
    }

    .timeline-item:nth-child(2) {
        animation-delay: 0.8s;
    }

    .timeline-item:nth-child(3) {
        animation-delay: 1.0s;
    }

    .timeline-item:nth-child(4) {
        animation-delay: 1.2s;
    }

    .timeline-item:nth-child(5) {
        animation-delay: 1.4s;
    }

    .timeline-item:nth-child(6) {
        animation-delay: 1.6s;
    }

/* Year Circle */
.year-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Lato", serif;
    font-size: 16px;
    font-weight: 900;
    color: var(--white);
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: circlePop 0.6s ease-out forwards, circleFloat 3s ease-in-out infinite;
    transform: scale(0);
}

.timeline-item:nth-child(1) .year-circle {
    animation-delay: 0.7s, 1.5s;
    background: var(--primary-blue);
}

.timeline-item:nth-child(2) .year-circle {
    animation-delay: 0.9s, 1.7s;
    background: var(--primary-green);
}

.timeline-item:nth-child(3) .year-circle {
    animation-delay: 1.1s, 1.9s;
    background: var(--primary-orange);
}

.timeline-item:nth-child(4) .year-circle {
    animation-delay: 1.3s, 2.1s;
    background: var(--primary-blue);
}

.timeline-item:nth-child(5) .year-circle {
    animation-delay: 1.5s, 2.3s;
    background: var(--primary-green);
}

.timeline-item:nth-child(6) .year-circle {
    animation-delay: 1.7s, 2.5s;
    background: var(--primary-orange);
}

.year-circle::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 12px;
    background: currentColor;
    opacity: 0.5;
}

/* Card — equal height */
.timeline-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--light-gray);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    margin-top: 12px;
    width: 100%;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .timeline-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold), var(--primary-green));
        transform: scaleX(0);
        transition: transform 0.4s var(--transition-smooth);
    }

    .timeline-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

        .timeline-card:hover::before {
            transform: scaleX(1);
        }

.location-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--light-gray);
    width: 100%;
}

    .location-item:last-child {
        border-bottom: none;
    }

    .location-item i {
        color: var(--primary-orange);
        font-size: 14px;
    }

    .location-item span {
        font-size: 13px;
        font-weight: 600;
        color: var(--dark);
    }

.flag {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Building icon */
.building-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 0;
    font-size: 16px;
    color: var(--white);
    animation: iconPulse 2s ease-in-out infinite;
}

.timeline-item:nth-child(1) .building-icon {
    background: var(--primary-blue);
}

.timeline-item:nth-child(2) .building-icon {
    background: var(--primary-green);
}

.timeline-item:nth-child(3) .building-icon {
    background: var(--primary-orange);
}

.timeline-item:nth-child(4) .building-icon {
    background: var(--primary-blue);
}

.timeline-item:nth-child(5) .building-icon {
    background: var(--primary-green);
}

.timeline-item:nth-child(6) .building-icon {
    background: var(--primary-orange);
}

/* Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
    margin: 30px auto;
    max-width: 800px;
}

/* Info Boxes */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.info-box {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transition: all 0.4s var(--transition-smooth);
}

    .info-box:nth-child(1) {
        animation-delay: 1.6s;
    }

    .info-box:nth-child(2) {
        animation-delay: 1.8s;
    }

    .info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    }

.info-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    animation: iconRotate 6s linear infinite;
}

.info-box:nth-child(1) .info-icon {
    background: var(--primary-green);
}

.info-box:nth-child(2) .info-icon {
    background: var(--primary-blue);
}

.info-content h4 {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a1a2e 60%, var(--dark) 100%);
    padding: 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

    .stats-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.6;
    }

    .stats-bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold), var(--primary-green));
    }

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    position: relative;
}

    .stat-item:nth-child(1) {
        animation-delay: 2.0s;
    }

    .stat-item:nth-child(2) {
        animation-delay: 2.2s;
    }

    .stat-item:nth-child(3) {
        animation-delay: 2.4s;
    }

    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background: rgba(255, 255, 255, 0.15);
    }

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    position: relative;
}

.stat-item:nth-child(1) .stat-icon-wrap {
    background: rgba(232, 93, 43, 0.15);
    color: var(--primary-orange);
}

.stat-item:nth-child(2) .stat-icon-wrap {
    background: rgba(0, 139, 69, 0.15);
    color: var(--primary-green);
}

.stat-item:nth-child(3) .stat-icon-wrap {
    background: rgba(232, 93, 43, 0.15);
    color: var(--primary-orange);
}

.stat-number {
    font-family: "Lato", serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1;
}

    .stat-number span {
        color: var(--primary-orange);
    }

.stat-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    text-transform: capitalize;
}

.stat-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lineGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes circlePop {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes circleFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes arrowPulse {

    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }

    50% {
        opacity: 0.6;
        transform: translateY(-50%) translateX(5px);
    }
}

@keyframes iconPulse {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .timeline-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .timeline-item {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 180px;
    }

    .timeline-line {
        display: none;
    }

    .info-section {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item:not(:last-child)::after {
        right: 50%;
        top: auto;
        bottom: -15px;
        transform: translateX(50%);
        width: 60px;
        height: 1px;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        flex: 0 0 calc(50% - 15px);
    }

    .roadmap-section {
        padding: 60px 16px 0;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .stats-bar {
        padding: 40px 16px;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        flex: 0 0 100%;
    }

    .timeline-card {
        min-height: 120px;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.gallery-heading {
    margin-bottom: 50px;
}

    .gallery-heading .subtitle i {
        margin-right: 8px;
        color: var(--primary-orange);
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.5s var(--transition-smooth);
}

    .gallery-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

.gallery-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

    .gallery-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s var(--transition-smooth);
    }

.gallery-item:hover .gallery-img-wrap img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 47, 102, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-orange);
    transform: scale(0.8);
    transition: all 0.4s var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

    .hero-content,
    .hero-content h1,
    .hero-content p,
    .hero-buttons {
        width: 100%;
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        margin-top: 50vh;
        padding: 20px;
    }



    .about-glass-panel {
        max-width: 100%;
        padding: 30px;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .welcome-logo img {
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .welcome-section {
        padding: 60px 0;
    }



    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-glass-panel {
        padding: 24px;
        border-radius: 16px;
    }

        .about-glass-panel p {
            font-size: 0.9rem;
        }
}

/* ============================================
   WHY MUMBAI / BEC VENUE SECTION
   ============================================ */

/* ===== MUMBAI SPLIT ===== */
.mumbai-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.mumbai-image-side {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27, #1a1a4e);
}

    .mumbai-image-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }

    .mumbai-image-side video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.75;
        position: absolute;
    }



.mumbai-vertical-label {
    position: absolute;
    left: 24px;
    bottom: 50px;
    z-index: 2;
    /* writing-mode: vertical-rl;
    transform: rotate(180deg); */

    font-size: clamp(3.5rem, 9vw, 6rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 6px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transform: translateY(20px);
    animation: mumbai-label-float 1.6s ease-out forwards 0.4s infinite alternate;
}

@keyframes mumbai-label-float {
    0% {
        opacity: 0;
        scale: 0.95;
    }

    60% {
        opacity: 1;
        scale: 1.02;
    }

    100% {
        opacity: 1;
        scale: 1;
    }
}


.mumbai-content-side {
    background: var(--white);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .mumbai-content-side h2 {
        font-size: clamp(1.625rem, 1.1902rem + 2.1739vw, 2.875rem);
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 6px;
        line-height: 1.2;
    }

.mumbai-sub {
    font-size: clamp(1.125rem, 0.9511rem + 0.8696vw, 1.625rem);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 32px;
}

.mumbai-point {
    margin-bottom: 24px;
}

    .mumbai-point:last-child {
        margin-bottom: 0;
    }

    .mumbai-point h4 {
        font-size: clamp(1.125rem, 0.9511rem + 0.8696vw, 1.625rem);
        font-weight: 700;
        margin-bottom: 6px;
        line-height: 1.3;
    }

.mumbai-orange {
    color: var(--primary-orange);
}

.mumbai-green {
    color: var(--primary-green);
}

.mumbai-point p {
    font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
    color: var(--dark-secondary);
    margin: 0;
}

/* ===== BEC SECTION ===== */
.bec-section-new {
    background: linear-gradient(160deg, #1a1a2e 0%, #162f66 40%, #1a1a2e 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

    .bec-section-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
    }

/* Ambient floating orbs */
.bec-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
    pointer-events: none;
}

.bec-orb-1 {
    width: 450px;
    height: 450px;
    background: var(--accent-gold);
    top: -100px;
    left: -100px;
    animation: orbFloatBec 14s ease-in-out infinite;
}

.bec-orb-2 {
    width: 350px;
    height: 350px;
    background: var(--primary-orange);
    bottom: -80px;
    right: -80px;
    animation: orbFloatBec 16s ease-in-out infinite reverse;
}

@keyframes orbFloatBec {

    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(25px, -15px) scale(1.08);
    }
}

/* Section Heading */
.bec-section-heading {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: becReveal 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

    .bec-section-heading .subtitle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: var(--accent-gold);
        margin-bottom: 16px;
        display: none;
    }

        .bec-section-heading .subtitle::before,
        .bec-section-heading .subtitle::after {
            content: '';
            width: 30px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold));
        }

        .bec-section-heading .subtitle::after {
            background: linear-gradient(90deg, var(--accent-gold), transparent);
        }

    .bec-section-heading .title {
        color: var(--light);
    }

        .bec-section-heading .title span {
            color: var(--primary-orange);
        }



    .bec-section-heading p {
        font-size: 1.1rem;
        color: rgba(250, 250, 250, 0.55);
        font-weight: 300;
        margin: 0;
        letter-spacing: 0.5px;
        margin: auto;
    }

/* Two-column grid */
.bec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left side: Feature cards with vertical timeline line */
.bec-features {
    position: relative;
    padding-left: 30px;
}

    .bec-features::before {
        content: '';
        position: absolute;
        left: 14px;
        top: 20px;
        bottom: 20px;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(193, 138, 84, 0.4), rgba(193, 138, 84, 0.4), transparent);
    }

/* Feature Cards */
.bec-feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 28px 28px 28px 32px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateX(-30px);
    animation: becSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    /* Staggered AOS-like reveal — pure CSS */
    .bec-feature-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .bec-feature-card:nth-child(2) {
        animation-delay: 0.45s;
    }

    .bec-feature-card:nth-child(3) {
        animation-delay: 0.7s;
    }

@keyframes becSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bec-feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-orange), var(--accent-gold), var(--primary-green));
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.bec-feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

    .bec-feature-card:hover::before {
        opacity: 1;
    }

/* Numbered timeline badges */
.bec-feature-number {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    border: 2px solid #1a1a2e;
    box-shadow: 0 0 15px rgba(232, 93, 43, 0.3);
    z-index: 3;
}

.bec-feature-card:nth-child(2) .bec-feature-number {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-green));
    box-shadow: 0 0 15px rgba(193, 138, 84, 0.3);
}

.bec-feature-card:nth-child(3) .bec-feature-number {
    background: linear-gradient(135deg, var(--primary-green), #162f66);
    box-shadow: 0 0 15px rgba(0, 139, 69, 0.3);
}

/* Card icons */
.bec-feature-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(232, 93, 43, 0.15), rgba(193, 138, 84, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
    border: 1px solid rgba(193, 138, 84, 0.15);
    transition: all 0.4s ease;
}

.bec-feature-card:hover .bec-feature-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 20px rgba(232, 93, 43, 0.3);
}

.bec-feature-card h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--light);
    margin-bottom: 10px;
    line-height: 1.3;
}

.bec-feature-card p {
    font-size: 0.92rem;
    color: rgba(250, 250, 250, 0.5);
    line-height: 1.75;
    margin: 0;
    font-weight: 300;
}

/* Right side: Image */
.bec-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: becReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

@keyframes becReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bec-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    /* Tricolor gradient border */
    .bec-image-frame::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        padding: 3px;
        background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold), var(--primary-green));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0.5;
        transition: opacity 0.5s ease;
        pointer-events: none;
        z-index: 2;
    }

    .bec-image-frame:hover {
        transform: translateY(-8px);
        box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
    }

        .bec-image-frame:hover::before {
            opacity: 0.9;
        }

    .bec-image-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .bec-image-frame:hover img {
        transform: scale(1.08);
    }

/* Image overlay label */
.bec-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 24px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
    z-index: 1;
}

.bec-image-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(193, 138, 84, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

    .bec-image-label::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--primary-orange);
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(232, 93, 43, 0.6);
        animation: pulseDot 2s ease-in-out infinite;
    }

@keyframes pulseDot {

    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

/* Stats pills below image */
.bec-image-stats {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
}

.bec-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
    flex: 1;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

    .bec-stat:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(193, 138, 84, 0.2);
        transform: translateY(-3px);
    }

    .bec-stat span {
        display: block;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--accent-gold);
        margin-bottom: 4px;
    }

.bec-stat {
    font-size: 0.75rem;
    color: rgba(250, 250, 250, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .bec-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bec-features {
        padding-left: 24px;
    }

    .bec-feature-number {
        left: -24px;
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .bec-image-stats {
        flex-direction: column;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .mumbai-split {
        grid-template-columns: 1fr;
    }

    .mumbai-vertical-label {
        position: absolute;
        left: 50%;
        bottom: 0;
        z-index: 2;
        writing-mode: vertical-rl;
        transform: rotate(271deg);
        font-size: clamp(3.5rem, 9vw, 6rem);
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 6px;
        line-height: 1;
        pointer-events: none;
        user-select: none;
    }

    .mumbai-image-side {
        min-height: 300px;
    }

    .mumbai-content-side {
        padding: 50px 30px;
    }
}

@media (max-width: 576px) {
    .mumbai-content-side {
        padding: 36px 20px;
    }

    .mumbai-point h4 {
        font-size: 0.9rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

    .about-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: rgba(232, 93, 43, 0.03);
        border-radius: 50%;
    }

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

    .about-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        transition: transform 0.8s var(--transition-smooth);
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

    .about-image .experience-badge {
        position: absolute;
        bottom: 30px;
        left: -30px;
        background: var(--primary-green);
        color: var(--white);
        padding: 24px 30px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 10px 40px rgba(0, 139, 69, 0.3);
        animation: float 3s ease-in-out infinite;
    }

@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.experience-badge .text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content {
    padding-left: 40px;
}

    .about-content .lead {
        font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
        color: var(--gray);
        line-height: 1.8;
        margin-bottom: 30px;
    }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

    .feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 16px;
        font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
        color: var(--dark-secondary);
    }

        .feature-list li i {
            width: 28px;
            height: 28px;
            min-width: 28px;
            background: rgba(0, 139, 69, 0.1);
            color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            margin-top: 2px;
        }

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-orange));
    position: relative;
    overflow: hidden;
    display: none;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></svg>');
        opacity: 0.5;
    }

.stats-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-card {
    width: 220px;
    background: rgb(0 0 0 / 35%);
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
    border-radius: 20px;
}

    .stat-card .stat-icon {
        width: 70px;
        height: 70px;
        background: rgb(255 255 255 / 22%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 28px;
        color: var(--white);
        transition: all 0.4s ease;
    }

    .stat-card:hover .stat-icon {
        background: var(--primary-orange);
        color: var(--white);
        transform: rotateY(360deg);
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--white);
        line-height: 1;
        margin-bottom: 10px;
        font-variant-numeric: tabular-nums;
    }

        .stat-card .stat-number span {
            color: var(--primary-orange);
        }

    .stat-card .stat-label {
        font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 500;
    }

/* ===== WHY ATTEND ===== */
.why-section {
    padding: 50px 0;
    background: var(--light);
}

.why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid var(--light-gray);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-orange);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s var(--transition-smooth);
    }

    .why-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-green);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s var(--transition-smooth);
    }

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        border-color: transparent;
    }

        .why-card:hover::before,
        .why-card:hover::after {
            transform: scaleX(1);
        }

    .why-card .icon-box {
        width: 80px;
        height: 80px;
        background: rgba(232, 93, 43, 0.08);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        font-size: 32px;
        color: var(--primary-orange);
        transition: all 0.4s ease;
    }

    .why-card:hover .icon-box {
        background: var(--primary-orange);
        color: var(--white);
        transform: scale(1.1) rotate(5deg);
    }

    .why-card h4 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-block: 14px;
        color: var(--dark);
    }

    .why-card p {
        color: var(--gray);
        font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
        line-height: 1.7;
        margin: 0;
    }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 50px 0;
    background: var(--primary-green);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: var(--primary-orange);
        border-radius: 50%;
    }

    .cta-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: var(--primary-orange);
        border-radius: 50%;
    }

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    margin: 0 auto;
}

    .cta-content h2 {
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto 40px;
    }

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

    .cta-buttons .btn-ProPaper {
        background: var(--white);
        color: var(--primary-green);
    }

        .cta-buttons .btn-ProPaper:hover {
            background: var(--dark);
            color: var(--white);
        }

    .cta-buttons .btn-ProPaper-outline {
        border-color: rgba(255, 255, 255, 0.5);
        color: var(--primary-green);
    }

        .cta-buttons .btn-ProPaper-outline:hover {
            background: var(--white);
            color: var(--primary-green);
        }



/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Parallax effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-green);
    }


/* Responsive */
@media (max-width: 991px) {
    .header-info {
        display: none;
    }

    .header-main {
        position: sticky;
        top: 0;
        padding: 0;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-image .experience-badge {
        left: 20px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px 18px;
    }

        .countdown-item .number {
            font-size: 1.8rem;
        }

    .social-sidebar {
        display: none;
    }
}



@media (max-width: 768px) {
    .stats-flex {
        gap: 10px;
        text-align: left;
    }

    .stat-card {
        display: flex;
        padding: 15px;
    }

        .stat-card .stat-icon {
            width: 50px;
            height: 50px;
            font-size: 20px;
            margin: 0;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .stat-card .stat-number {
            font-size: 1.5rem;
            text-align: left;
            margin-bottom: 0;
        }
}

@media (max-width: 576px) {


    .hero-buttons {
        /* flex-direction: column; */
        align-items: center;
    }

    .countdown-wrapper {
        gap: 5px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px 7px;
    }

        .countdown-item .number {
            font-size: 1rem;
        }
}


.focus-section {
    padding: 50px 0 70px;
    position: relative;
    overflow: hidden;
}

    .focus-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
    }

/* Ambient orbs */
.focus-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
    pointer-events: none;
}

.focus-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-gold);
    top: -100px;
    right: -80px;
    animation: focusOrbFloat 14s ease-in-out infinite;
}

.focus-orb-2 {
    width: 350px;
    height: 350px;
    background: var(--primary-green);
    bottom: -80px;
    left: -80px;
    animation: focusOrbFloat 16s ease-in-out infinite reverse;
}

@keyframes focusOrbFloat {

    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -15px) scale(1.06);
    }
}

/* Section Heading */
.focus-section-heading {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: focusReveal 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

    .focus-section-heading .subtitle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: var(--accent-gold);
        margin-bottom: 16px;
    }

        .focus-section-heading .subtitle::before,
        .focus-section-heading .subtitle::after {
            content: '';
            width: 30px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold));
        }

        .focus-section-heading .subtitle::after {
            background: linear-gradient(90deg, var(--accent-gold), transparent);
        }

    .focus-section-heading .title {
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 700;
        color: var(--light);
        line-height: 1.2;
        margin-bottom: 16px;
    }

        .focus-section-heading .title span {
            color: var(--primary-orange);
            position: relative;
        }

            .focus-section-heading .title span::after {
                content: '';
                position: absolute;
                bottom: 2px;
                left: 0;
                width: 100%;
                height: 6px;
                background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
                opacity: 0.4;
                z-index: -1;
                border-radius: 2px;
            }

    .focus-section-heading p {
        font-size: 1.05rem;
        color: rgba(250, 250, 250, 0.55);
        font-weight: 300;
        margin: 0 auto;
        max-width: 550px;
        line-height: 1.7;
    }

/* Flexbox container — fixed width cards, auto wrap, center */
.focus-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fixed width card */
.focus-card {
    position: relative;
    width: 280px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: focusCardReveal 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    /* Staggered entrance — pure CSS */
    .focus-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .focus-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .focus-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .focus-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .focus-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .focus-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    .focus-card:nth-child(7) {
        animation-delay: 0.7s;
    }

    .focus-card:nth-child(8) {
        animation-delay: 0.8s;
    }

@keyframes focusCardReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Image area */
.focus-card-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .focus-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

.focus-card:hover .focus-card-img img {
    transform: scale(1.12);
}

/* Hover overlay with text */
.focus-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 47, 102, 0.95) 0%, rgba(26, 26, 46, 0.85) 60%, rgba(26, 26, 46, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 24px 81px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    backdrop-filter: blur(8px);
}

.focus-card:hover .focus-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.focus-card-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 8px;
    line-height: 1.2;
}

.focus-card-overlay p {
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.9);
    line-height: 1.65;
    margin: 0;
    font-weight: 300;
}

.focus-card-overlay .overlay-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold));
    margin-bottom: 12px;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.focus-card:hover .focus-card-overlay .overlay-line {
    transform: scaleX(1);
}

/* Bottom title bar — always visible */
.focus-card-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 16px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgb(193 138 84 / 48%), rgb(193 138 84 / 51%));
    border-top: 1px solid rgba(193, 138, 84, 0.15);
    transition: all 0.4s ease;
    backdrop-filter: blur(21px);
}

.focus-card:hover .focus-card-bar {
    background: linear-gradient(135deg, rgba(232, 93, 43, 0.2), rgba(193, 138, 84, 0.1));
    border-top-color: rgba(232, 93, 43, 0.3);
}

.focus-card-bar h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin: 0;
    transition: color 0.4s ease;
}

.focus-card:hover .focus-card-bar h3 {
    color: var(--primary-orange);
}

/* Tricolor top accent */
.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold), var(--primary-green));
    opacity: 0.7;
    z-index: 3;
    transition: opacity 0.4s ease;
}

.focus-card:hover::before {
    opacity: 1;
}

/* Corner glow on hover */
.focus-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193, 138, 84, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.focus-card:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .focus-card {
        width: calc(50% - 14px);
        min-width: 160px;
    }

    .focus-card-img {
        height: 160px;
    }

    .focus-card-overlay {
        padding: 16px;
    }

        .focus-card-overlay h4 {
            font-size: 0.95rem;
        }

        .focus-card-overlay p {
            font-size: 0.75rem;
        }
}

@media (max-width: 480px) {
    .focus-card {
        width: 100%;
        max-width: 320px;
    }
}


/**************************** industry sectors ********************************/
.industry-sectors {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}



/* Flexbox Grid */
.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fixed width sector card */
.sector-card {
    position: relative;
    width: 220px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--primary-orange);
    border-radius: 20px;
    padding: 36px 24px 28px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: sectorCardReveal 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

    /* Staggered entrance — pure CSS */
    .sector-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .sector-card:nth-child(2) {
        animation-delay: 0.18s;
    }

    .sector-card:nth-child(3) {
        animation-delay: 0.26s;
    }

    .sector-card:nth-child(4) {
        animation-delay: 0.34s;
    }

    .sector-card:nth-child(5) {
        animation-delay: 0.42s;
    }

    .sector-card:nth-child(6) {
        animation-delay: 0.5s;
    }

    .sector-card:nth-child(7) {
        animation-delay: 0.58s;
    }

    .sector-card:nth-child(8) {
        animation-delay: 0.66s;
    }

    .sector-card:nth-child(9) {
        animation-delay: 0.74s;
    }

    .sector-card:nth-child(10) {
        animation-delay: 0.82s;
    }

@keyframes sectorCardReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes sectorReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tricolor top accent */
.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold), var(--primary-green));
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.sector-card:hover::before {
    opacity: 1;
}

/* Ambient glow on hover */
.sector-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(193, 138, 84, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.sector-card:hover::after {
    opacity: 1;
}

.sector-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(193, 138, 84, 0.25);
}

/* Icon container */
.sector-icon {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(232, 93, 43, 0.12), rgba(193, 138, 84, 0.12));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(193, 138, 84, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-card:hover .sector-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(232, 93, 43, 0.35);
    border-color: transparent;
}

.sector-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.4s ease;
}

.sector-card:hover .sector-icon svg {
    filter: brightness(0) invert(1);
}

/* Theme-mapped SVG colors */
.sector-icon svg [stroke="#2d8f5a"] {
    stroke: var(--primary-green);
    transition: stroke 0.4s ease;
}

.sector-icon svg [stroke="#e67e22"] {
    stroke: var(--primary-orange);
    transition: stroke 0.4s ease;
}

.sector-icon svg [fill="#2d8f5a"] {
    fill: var(--primary-green);
    transition: fill 0.4s ease;
}

.sector-icon svg [fill="#e67e22"] {
    fill: var(--primary-orange);
    transition: fill 0.4s ease;
}

.sector-icon svg [fill="rgba(45,143,90,0.3)"] {
    fill: rgba(0, 139, 69, 0.3);
}

.sector-card:hover .sector-icon svg [stroke="#2d8f5a"],
.sector-card:hover .sector-icon svg [stroke="#e67e22"] {
    stroke: #fff;
}

.sector-card:hover .sector-icon svg [fill="#2d8f5a"],
.sector-card:hover .sector-icon svg [fill="#e67e22"] {
    fill: #fff;
}

.sector-card:hover .sector-icon svg [fill="rgba(45,143,90,0.3)"] {
    fill: rgba(255, 255, 255, 0.3);
}

/* Sector name */
.sector-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
    line-height: 1.4;
}

.sector-card:hover .sector-name {
    color: var(--primary-orange);
}

/* Description reveal on hover */
.sector-desc {
    font-size: 0.78rem;
    color: rgba(250, 250, 250, 0.55);
    line-height: 1.6;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
}

.sector-card:hover .sector-desc {
    opacity: 1;
    transform: translateY(0);
    max-height: 80px;
}

/* Animated underline */
.sector-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold));
    margin: 14px auto 0;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-card:hover .sector-line {
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 768px) {
    .sector-card {
        width: calc(50% - 12px);
        min-width: 160px;
        padding: 28px 16px 22px;
    }

    .sector-icon {
        width: 60px;
        height: 60px;
    }

        .sector-icon svg {
            width: 32px;
            height: 32px;
        }

    .sector-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .sector-card {
        width: 100%;
        max-width: 280px;
    }
}


/**************************** india paper story SECTION ********************************/
.india-paper-story {
    background: linear-gradient(180deg, #faf8f5 0%, #f5f0e8 50%, #faf8f5 100%);
    padding: 30px 0 80px;
    position: relative;
    overflow: hidden;
}

    /* Paper grain texture */
    .india-paper-story::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
        pointer-events: none;
    }

/* Warm ambient orbs — zero blue */
.story-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
    pointer-events: none;
}

.story-orb-1 {
    width: 450px;
    height: 450px;
    background: var(--accent-gold);
    top: 5%;
    right: -150px;
    animation: storyOrbDrift 18s ease-in-out infinite;
}

.story-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-orange);
    bottom: 10%;
    left: -150px;
    animation: storyOrbDrift 20s ease-in-out infinite reverse;
}

.story-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    top: 50%;
    left: 50%;
    animation: storyOrbDrift 22s ease-in-out infinite;
}

@keyframes storyOrbDrift {

    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -15px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 20px) scale(0.98);
    }
}

/* Section Header */
.story-header {
    text-align: center;
    margin-bottom: 90px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: storyFadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

    .story-header .subtitle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: var(--accent-gold);
        margin-bottom: 16px;
    }

        .story-header .subtitle::before,
        .story-header .subtitle::after {
            content: '';
            width: 30px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold));
        }

        .story-header .subtitle::after {
            background: linear-gradient(90deg, var(--accent-gold), transparent);
        }

    .story-header .title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        font-weight: 700;
        color: var(--dark);
        line-height: 1.15;
        margin-bottom: 16px;
    }

        .story-header .title span {
            color: var(--primary-orange);
            position: relative;
        }

            .story-header .title span::after {
                content: '';
                position: absolute;
                bottom: 2px;
                left: 0;
                width: 100%;
                height: 8px;
                background: linear-gradient(90deg, rgba(232, 93, 43, 0.3), rgba(0, 139, 69, 0.3));
                z-index: -1;
                border-radius: 2px;
            }

    .story-header p {
        font-size: 1.1rem;
        color: var(--gray);
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
    }

/* Timeline connector */
.story-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

    .story-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(193, 138, 84, 0.3) 10%, rgba(193, 138, 84, 0.3) 90%, transparent);
        transform: translateX(-50%);
    }

/* Story Block */
.story-block {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 30px;
    position: relative;
    opacity: 0;
}

    .story-block:nth-child(odd) {
        animation: storySlideRight 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .story-block:nth-child(even) {
        flex-direction: row-reverse;
        animation: storySlideLeft 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .story-block:nth-child(1) {
        animation-delay: 0.15s;
    }

    .story-block:nth-child(2) {
        animation-delay: 0.25s;
    }

    .story-block:nth-child(3) {
        animation-delay: 0.35s;
    }

    .story-block:nth-child(4) {
        animation-delay: 0.45s;
    }

    .story-block:nth-child(5) {
        animation-delay: 0.55s;
    }

    .story-block:nth-child(6) {
        animation-delay: 0.65s;
    }

    .story-block:nth-child(7) {
        animation-delay: 0.75s;
    }

@keyframes storySlideRight {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes storySlideLeft {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes storyFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline node */
.story-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #faf8f5;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-gold);
    z-index: 3;
    box-shadow: 0 0 0 6px rgba(250, 248, 245, 0.8);
    transition: all 0.4s ease;
}

.story-block:hover .story-node {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: #fff;
    border-color: var(--primary-orange);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Image Side */
.story-image {
    flex: 0 0 48%;
    position: relative;
}

.story-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    /* Tricolor gradient border */
    .story-image-frame::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        padding: 3px;
        background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold), var(--primary-green));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: 2;
        pointer-events: none;
        opacity: 0.6;
        transition: opacity 0.4s ease;
    }

.story-block:hover .story-image-frame::before {
    opacity: 1;
}

.story-image-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.story-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-image-frame:hover img {
    transform: scale(1.08);
}

/* Content Side */
.story-content {
    flex: 1;
    position: relative;
    padding-left: 30px;
}

.story-block:nth-child(even) .story-content {
    padding-left: 0;
    padding-right: 30px;
}

/* Tricolor left border accent */
.story-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-orange), var(--accent-gold), var(--primary-green));
    border-radius: 3px;
    opacity: 0.7;
}

.story-block:nth-child(even) .story-content::before {
    left: auto;
    right: 0;
}

.story-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-orange);
}

    .story-label::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--primary-orange);
        border-radius: 2px;
    }

.story-title {
    font-size: clamp(1.375rem, 1.2446rem + 0.6522vw, 1.75rem);
    font-weight: 700;
    color: var(--dark);
    margin-block: 20px;
    line-height: 1.25;
}

/* Stats Row */
.story-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.story-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(232, 93, 43, 0.06);
    border: 1px solid rgba(232, 93, 43, 0.1);
    border-radius: 10px;
    transition: all 0.4s ease;
}

    .story-stat:nth-child(2) {
        background: rgba(0, 139, 69, 0.06);
        border-color: rgba(0, 139, 69, 0.1);
    }

    .story-stat:nth-child(3) {
        background: rgba(193, 138, 84, 0.06);
        border-color: rgba(193, 138, 84, 0.1);
    }

.story-block:hover .story-stat {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.story-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.story-stat:nth-child(2) .story-stat-number {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-stat:nth-child(3) .story-stat-number {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-text {
    font-size: clamp(0.92rem, 1vw, 1rem);
    color: #3a3a3a;
    line-height: 1.85;
    margin: 0;
    font-weight: 400;
}

    .story-text strong {
        color: var(--dark);
        font-weight: 600;
    }

/* Divider between blocks */
.story-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(193, 138, 84, 0.2), transparent);
    margin: 0 auto 30px;
    max-width: 60%;
    position: relative;
    z-index: 2;
}

.story-block:last-of-type {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .story-timeline::before {
        display: none;
    }

    .story-node {
        display: none;
    }

    .story-block,
    .story-block:nth-child(even) {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 70px;
    }

    .story-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .story-content,
    .story-block:nth-child(even) .story-content {
        padding-left: 20px;
        padding-right: 0;
    }

        .story-content::before,
        .story-block:nth-child(even) .story-content::before {
            left: 0;
            right: auto;
        }

    .story-divider {
        margin-bottom: 70px;
    }
}

@media (max-width: 576px) {
    .story-stats {
        flex-direction: column;
        gap: 10px;
    }

    .story-stat {
        width: fit-content;
    }

    .story-header {
        margin-bottom: 60px;
    }
}

/* ===== MAIN BANNER ===== */
.it-banner {
    position: relative;
    width: 100%;
    height: 460px;
    background: linear-gradient(180deg, #e8edf5 0%, #f0f4f8 40%, #dce5f0 100%);
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

    /* World map dot pattern */
    .it-banner::before {
        content: '';
        position: absolute;
        top: -50px;
        left: -50px;
        width: 500px;
        height: 350px;
        background-image: radial-gradient(circle, #b0c4de 1.2px, transparent 1.2px);
        background-size: 14px 14px;
        opacity: 0.5;
        z-index: 1;
        mask-image: radial-gradient(ellipse at 20% 30%, black 20%, transparent 70%);
        -webkit-mask-image: radial-gradient(ellipse at 20% 30%, black 20%, transparent 70%);
        animation: mapFade 2s var(--transition-smooth) both;
    }

/* Subtle grid lines */
.it-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.08;
    background-image: linear-gradient(rgba(22, 47, 102, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 47, 102, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ===== BOTTOM WAVE ===== */
.it-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 3;
}

.it-wave-navy {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--primary-blue);
    clip-path: polygon(0 40%, 35% 15%, 70% 35%, 100% 10%, 100% 100%, 0 100%);
    animation: waveSlide 1.2s var(--transition-smooth) 0.5s both;
}

.it-wave-green {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: var(--primary-green);
    clip-path: polygon(0 55%, 40% 30%, 75% 50%, 100% 25%, 100% 100%, 0 100%);
    z-index: -1;
    opacity: 0.9;
    animation: waveSlide 1.2s var(--transition-smooth) 0.7s both;
}

.it-wave-shine {
    position: absolute;
    bottom: 35px;
    left: 45%;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 50%;
    filter: blur(2px);
    animation: shinePulse 3s ease-in-out infinite;
}

/* ===== CONTENT WRAPPER ===== */
.it-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px;
    padding-bottom: 40px;
}

/* ===== INDIA MAP BADGE ===== */
.it-badge-wrap {
    position: relative;
    flex-shrink: 0;
    margin-right: 30px;
    animation: badgeSpinIn 1s var(--transition-smooth) 0.2s both;
}

.it-badge-outer {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-orange) 0deg 120deg, var(--white) 120deg 240deg, var(--primary-green) 240deg 360deg);
    padding: 5px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.it-badge-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

    .it-badge-inner::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 50%;
        border: 2px solid rgba(22, 47, 102, 0.15);
    }

    .it-badge-inner video,
    .it-badge-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        animation: beat 1.6s ease-out forwards 0.4s infinite alternate;
    }

@keyframes beat {
    0% {
        scale: 0.95;
    }

    60% {
        scale: 1.02;
    }

    100% {
        scale: 1;
    }
}

.it-badge-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary-orange);
    border-right-color: var(--primary-green);
    animation: ringRotate 8s linear infinite;
}

/* ===== TEXT BLOCK ===== */
.it-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 5;
}

/* Headline */
.it-headline {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    line-height: 1;
    margin-bottom: 12px;
}

.it-headline-india {
    font-size: clamp(2.8rem, 5.5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary-blue);
    letter-spacing: -1px;
    animation: fadeSlideUp 0.8s var(--transition-smooth) 0.4s both;
}

.it-headline-at {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-blue);
    animation: fadeSlideUp 0.8s var(--transition-smooth) 0.5s both;
}

.it-headline-dollar {
    font-size: clamp(2.8rem, 5.5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary-green);
    animation: fadeSlideUp 0.8s var(--transition-smooth) 0.6s both;
}

.it-headline-trillion {
    font-size: clamp(2.8rem, 5.5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary-green);
    letter-spacing: 1px;
    animation: fadeSlideUp 0.8s var(--transition-smooth) 0.7s both;
}

/* Sprint line */
.it-sprint-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 2px 0 10px 10px;
    animation: fadeSlideUp 0.8s var(--transition-smooth) 0.9s both;
}

.it-sprint-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
    position: relative;
    overflow: hidden;
}

    .it-sprint-line.right {
        background: linear-gradient(90deg, transparent, var(--primary-orange));
    }

    .it-sprint-line::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, var(--white), transparent);
        animation: lineShimmer 2.5s ease-in-out infinite;
    }

.it-sprint {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-orange);
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(232, 93, 43, 0.15);
}

/* Navy banner */
.it-banner-navy {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 50px 10px 30px;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
    margin-left: -10px;
    position: relative;
    animation: bannerSlideLeft 0.8s var(--transition-smooth) 1.1s both;
    box-shadow: 0 4px 15px rgba(22, 47, 102, 0.3);
}

/* Green banner */
.it-banner-green {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 45px 10px 35px;
    clip-path: polygon(3% 0, 100% 0, 95% 100%, 0 100%);
    margin-left: 60px;
    margin-top: -2px;
    position: relative;
    z-index: 2;
    animation: bannerSlideRight 0.8s var(--transition-smooth) 1.3s both;
    box-shadow: 0 4px 15px rgba(0, 139, 69, 0.3);
}

/* ===== RIGHT SIDE VISUALS ===== */
.it-visuals {
    position: absolute;
    right: 0;
    bottom: 60px;
    width: 45%;
    height: 320px;
    z-index: 2;
    pointer-events: none;
}

/* City skyline */
.it-skyline {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 180px;
    opacity: 0.25;
    animation: skylineFade 1.5s var(--transition-smooth) 1s both;
}

    .it-skyline svg {
        width: 100%;
        height: 100%;
    }

/* Bar chart */
.it-chart {
    position: absolute;
    bottom: 10px;
    right: 40px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 200px;
    animation: chartFade 1s var(--transition-smooth) 1.2s both;
}

.it-bar {
    width: 32px;
    background: linear-gradient(180deg, rgba(22, 47, 102, 0.9) 0%, rgba(22, 47, 102, 0.7) 100%);
    border-radius: 3px 3px 0 0;
    position: relative;
    transform-origin: bottom;
    animation: barGrow 1.2s var(--transition-smooth) both;
    box-shadow: 0 4px 12px rgba(22, 47, 102, 0.2);
}

    .it-bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 30%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent);
        border-radius: 3px 3px 0 0;
    }

    .it-bar:nth-child(1) {
        height: 60px;
        animation-delay: 1.4s;
    }

    .it-bar:nth-child(2) {
        height: 90px;
        animation-delay: 1.5s;
    }

    .it-bar:nth-child(3) {
        height: 120px;
        animation-delay: 1.6s;
    }

    .it-bar:nth-child(4) {
        height: 155px;
        animation-delay: 1.7s;
    }

    .it-bar:nth-child(5) {
        height: 195px;
        animation-delay: 1.8s;
    }

/* Green arrow */
.it-arrow {
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 220px;
    height: 180px;
    z-index: 5;
    animation: arrowDraw 1.5s var(--transition-smooth) 1.6s both;
}

    .it-arrow svg {
        width: 100%;
        height: 100%;
        filter: drop-shadow(0 4px 12px rgba(0, 139, 69, 0.3));
    }

/* ===== PARTICLES ===== */
.it-particles {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.it-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 8px var(--accent-gold);
}

    .it-particle:nth-child(1) {
        left: 15%;
        top: 20%;
        animation: particleFloat 6s ease-in-out infinite;
    }

    .it-particle:nth-child(2) {
        left: 30%;
        top: 70%;
        animation: particleFloat 7s ease-in-out 1s infinite;
        width: 2px;
        height: 2px;
        background: var(--primary-orange);
    }

    .it-particle:nth-child(3) {
        left: 50%;
        top: 15%;
        animation: particleFloat 5s ease-in-out 2s infinite;
    }

    .it-particle:nth-child(4) {
        left: 65%;
        top: 60%;
        animation: particleFloat 6.5s ease-in-out 0.5s infinite;
        width: 2px;
        height: 2px;
        background: var(--primary-green);
    }

    .it-particle:nth-child(5) {
        left: 80%;
        top: 25%;
        animation: particleFloat 5.5s ease-in-out 1.5s infinite;
    }

    .it-particle:nth-child(6) {
        left: 90%;
        top: 50%;
        animation: particleFloat 7s ease-in-out 2.5s infinite;
        width: 2px;
        height: 2px;
    }

/* ===== ANIMATIONS ===== */
@keyframes mapFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 0.5;
        transform: scale(1);
    }
}

@keyframes badgeSpinIn {
    from {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }

    to {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes lineShimmer {
    0% {
        left: -100%;
    }

    50%, 100% {
        left: 100%;
    }
}

@keyframes bannerSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-60px) skewX(-5deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) skewX(0);
    }
}

@keyframes bannerSlideRight {
    from {
        opacity: 0;
        transform: translateX(60px) skewX(5deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) skewX(0);
    }
}

@keyframes skylineFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 0.25;
        transform: translateY(0);
    }
}

@keyframes chartFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes barGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes arrowDraw {
    from {
        opacity: 0;
        stroke-dashoffset: 500;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        stroke-dashoffset: 0;
        transform: translateY(0);
    }
}

@keyframes waveSlide {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shinePulse {

    0%, 100% {
        opacity: 0.4;
        transform: scaleX(1);
    }

    50% {
        opacity: 0.8;
        transform: scaleX(1.3);
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    15% {
        opacity: 0.7;
        transform: translateY(-20px) scale(1);
    }

    85% {
        opacity: 0.3;
        transform: translateY(-60px) scale(0.6);
    }

    100% {
        opacity: 0;
        transform: translateY(-90px) scale(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .it-banner {
        height: auto;
        min-height: 400px;
    }

    .it-content {
        flex-direction: column;
        padding: 30px 24px 80px;
        text-align: center;
    }

    .it-badge-wrap {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .it-headline {
        justify-content: center;
    }

    .it-sprint-wrap {
        justify-content: center;
        margin-left: 0;
    }

    .it-banner-navy,
    .it-banner-green {
        margin-left: 0;
        clip-path: none;
        border-radius: 4px;
        padding: 10px 24px;
    }

    .it-visuals {
        width: 100%;
        opacity: 0.4;
        bottom: 70px;
    }

    .it-chart {
        right: 20px;
    }

    .it-arrow {
        right: 10px;
        width: 160px;
        height: 130px;
    }
}

@media (max-width: 600px) {
    .it-badge-outer {
        width: 100px;
        height: 100px;
    }

    .it-badge-inner svg {
        width: 55px;
        height: 60px;
    }

    .it-chart {
        gap: 6px;
        height: 140px;
    }

    .it-bar {
        width: 22px;
    }

        .it-bar:nth-child(1) {
            height: 40px;
        }

        .it-bar:nth-child(2) {
            height: 60px;
        }

        .it-bar:nth-child(3) {
            height: 80px;
        }

        .it-bar:nth-child(4) {
            height: 105px;
        }

        .it-bar:nth-child(5) {
            height: 130px;
        }
}
