* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: #062644;
    color: #e0e0e0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:assest/bg, %3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: overlay;    
    pointer-events: none;
    z-index: 9999;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #062644; }
::-webkit-scrollbar-thumb { background: #FF751F; border-radius: 3px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scan {
    0% { top: 0%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 4px 8px;
    /*background: rgba(255, 255, 255, 0.95);*/
    /*box-shadow: 0 4px 15px rgba(0,0,0,0.3);*/
}
.footer-logo {
    height: 65px;
    border-radius: 8px;
    padding: 6px 10px;
    background: rgba(12, 16, 71, 0);
    /*box-shadow: 0 4px 15px rgba(0,0,0,0.2);*/
}

.nav-main {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(6, 38, 68, 0.85);
    border-bottom: 1px solid #1a4a75;
    transition: all 0.3s ease;
}
.nav-main.scrolled {
    height: 70px;
    background: rgba(6, 38, 68, 0.97);
}
.nav-main.scrolled .logo-img {
    height: 50px;
}
.nav-link {
    position: relative;
    color: #8aa3bd;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: #FF751F;
    transition: width 0.3s;
}
.nav-link:hover { color: #e0e0e0; }
.nav-link:hover::after { width: 100%; }

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://picsum.photos/seed/thimphu-bhutan9/1920/1080.jpg') center/cover;
    filter: grayscale(100%) brightness(0.25);
    transform: scale(1.1);
    transition: transform 0.1s linear;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #062644 0%, rgba(6,38,68,0.7) 40%, rgba(6,38,68,0.5) 60%, #062644 100%);
}
.hero-scan {
    position: absolute;
    left: 0; width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF751F, transparent);
    animation: scan 4s cubic-bezier(0.45,0.05,0.55,0.95) infinite;
}

.sub-card {
    position: relative;
    min-height: 420px;
    border: 1px solid #1a4a75;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #0a3258;
}
.sub-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,117,31,0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}
.sub-card:hover::before { opacity: 1; }
.sub-card:hover {
    border-color: #FF751F;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255,117,31,0.15);
}
.sub-card .card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0.15;
    transition: all 0.5s;
}
.sub-card:hover .card-bg {
    filter: grayscale(0%) brightness(0.4);
    opacity: 0.45;
    transform: scale(1.1);
}
.sub-card .card-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, #FF751F, #FFBD59);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sub-card:hover .card-line { width: 100%; }
.sub-card .card-number {
    position: absolute;
    top: 20px; right: 20px;
    font-family: 'Teko', sans-serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.03);
    line-height: 1;
}
.sub-card:hover .card-number { color: rgba(255,117,31,0.08); }
.sub-card .card-icon {
    width: 60px; height: 60px;
    border: 1px solid #1a4a75;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FF751F;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}
.sub-card:hover .card-icon {
    background: #ffffff; /* White background so colorful logos are visible */
    color: #fff;
    border-color: #FF751F; /* Orange border keeps the hover effect */
    box-shadow: 0 0 20px rgba(255,117,31,0.4);
}
.sub-card .card-content {
    position: relative;
    z-index: 3;
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.sub-card .card-arrow {
    margin-top: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: #FF751F;
}
.sub-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Ensure logos fit perfectly inside the 60x60 card icon box */
.card-icon img {
    max-width: 48px;  
    max-height: 48px;
    object-fit: contain;
    border-radius: 2px;
}

/* DO NOT invert colors on hover since we now have a white background */
.sub-card:hover .card-icon img {
    filter: none; 
}

.stat-item { position: relative; padding: 2rem 0; }
.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 1px;
    background: #FFBD59;
}
.stat-number {
    font-family: 'Teko', sans-serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
    color: #FFBD59;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 3rem;
    border-left: 1px solid #1a4a75;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px; top: 6px;
    width: 9px; height: 9px;
    background: #FF751F;
    border-radius: 50%;
}
.timeline-item:last-child { border-left-color: transparent; }

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid #FF751F;
    color: #e0e0e0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
}
.cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -10%;
    width: 0; height: 100%;
    background: #FF751F;
    transform: skewX(-15deg);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.cta-btn:hover::before { width: 150%; }
.cta-btn:hover { color: #fff; box-shadow: 0 0 30px rgba(255,117,31,0.5); }
.cta-btn-solid { background: #FF751F; border: none; color: #fff; }
.cta-btn-solid::before { background: #e5651a; }
.cta-btn-blue { border-color: #314799; }
.cta-btn-blue::before { background: #314799; }
.cta-btn-blue:hover { box-shadow: 0 0 30px rgba(49,71,153,0.5); }

.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(6,38,68,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    color: #8aa3bd;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
.mobile-menu a:hover { color: #FF751F; }

.ticker {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #1a4a75;
    border-bottom: 1px solid #1a4a75;
    padding: 1.5rem 0;
}
.ticker-content { 
    display: inline-flex; 
    animation: marquee 25s linear infinite; 
}
.ticker-content span {
    font-family: 'Teko', sans-serif;
    font-size: 2.0rem;
    font-weight: 400;
    color: rgba(255,255,255,0.12);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-right: 4rem;
    display: inline-flex; /* Added to align logo and text perfectly */
    align-items: center; /* Added to align logo and text perfectly */
}
.ticker-content span .dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: #FF751F;
    border-radius: 50%;
    margin: 0 2rem;
    vertical-align: middle;
}

.toast {
    position: fixed;
    bottom: 2rem; right: 2rem;
    background: #0a3258;
    border: 1px solid #FF751F;
    padding: 1rem 2rem;
    border-radius: 4px;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #e0e0e0;
}
.toast.show { transform: translateY(0); opacity: 1; }

.section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, #FF751F, #FFBD59);
    margin-bottom: 2rem;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    margin-right: 1rem; /* Space between logo and text */
    /*white-space: nowrap;*/
}
.ticker-logo {
    height: 40px; /* INCREASED from 22px to 40px */
    max-width: 140px; /* INCREASED from 80px to 140px so wide logos aren't squished */
    width: auto;
    object-fit: contain;
    margin-right: 10px; /* Slightly more space between logo and text */
    
    /* Turns dark logos white/light */
    /*filter: brightness(1) invert(0); */
    /* Makes the logos faint to match the dim ticker text */
    /*opacity: 0.1; */
}


/* ===== Alternating Timeline — Index Page ===== */
.alt-timeline-index {
    position: relative;
    padding: 1rem 0;
}

/* Center vertical line */
.alt-timeline-index::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #1a4a75 8%, #1a4a75 92%, transparent);
    transform: translateX(-50%);
}

/* Each row */
.alt-tl-index-item {
    position: relative;
    width: 50%;
    padding: 0 2.5rem 3.5rem;
}

/* Left items */
.alt-tl-index-item.left {
    left: 0;
    text-align: right;
    padding-right: 3rem;
    padding-left: 1.25rem;
}

/* Right items */
.alt-tl-index-item.right {
    left: 50%;
    text-align: left;
    padding-left: 3rem;
    padding-right: 1.25rem;
}

/* Center dot */
.alt-tl-index-item::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #062644;
    border: 2px solid #1a4a75;
    z-index: 2;
    transition: all 0.3s ease;
}

.alt-tl-index-item.left::before {
    right: -7px;
}

.alt-tl-index-item.right::before {
    left: -7px;
}

/* Done dot */
.alt-tl-index-item:has(.alt-tl-index-badge.done)::before {
    border-color: #22c55e;
    background: #22c55e;
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.5);
}

/* In-progress dot + pulse */
.alt-tl-index-item:has(.alt-tl-index-badge.progress)::before {
    border-color: #FF751F;
    background: #FF751F;
    box-shadow: 0 0 14px rgba(255, 117, 31, 0.5);
    animation: index-pulse-dot 2s ease-in-out infinite;
}

@keyframes index-pulse-dot {
    0%, 100% { box-shadow: 0 0 14px rgba(255, 117, 31, 0.5); }
    50% { box-shadow: 0 0 28px rgba(255, 117, 31, 0.8); }
}

/* Upcoming dot */
.alt-tl-index-item:has(.alt-tl-index-badge.upcoming)::before {
    border-color: #1a4a75;
    background: #062644;
    box-shadow: none;
}

/* Content card */
.alt-tl-index-content {
    position: relative;
    padding: 1.75rem;
    border-radius: 4px;
    background: #062644;
    border: 1px solid #1a4a75;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.alt-tl-index-content:hover {
    border-color: #FF751F;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 117, 31, 0.15);
}

/* Arrow — Left card points right */
.alt-tl-index-item.left .alt-tl-index-content::after {
    content: '';
    position: absolute;
    top: 1.25rem;
    right: -7px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #1a4a75;
    transition: border-color 0.4s ease;
}

/* Arrow — Right card points left */
.alt-tl-index-item.right .alt-tl-index-content::after {
    content: '';
    position: absolute;
    top: 1.25rem;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 7px solid #1a4a75;
    transition: border-color 0.4s ease;
}

.alt-tl-index-item.left .alt-tl-index-content:hover::after {
    border-left-color: #FF751F;
}

.alt-tl-index-item.right .alt-tl-index-content:hover::after {
    border-right-color: #FF751F;
}

/* Date */
.alt-tl-index-date {
    display: inline-block;
    font-family: 'Teko', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFBD59;
    margin-bottom: 0.25rem;
}

/* Title */
.alt-tl-index-title {
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Description */
.alt-tl-index-desc {
    font-size: 1rem;
    color: #8aa3bd;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Status badge */
.alt-tl-index-badge {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.alt-tl-index-badge.done {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.alt-tl-index-badge.progress {
    background: rgba(255, 117, 31, 0.12);
    color: #FF751F;
    border: 1px solid rgba(255, 117, 31, 0.3);
}

.alt-tl-index-badge.upcoming {
    background: rgba(26, 74, 117, 0.3);
    color: #6a8aaa;
    border: 1px solid #1a4a75;
}

/* ===== Mobile — Single Column ===== */
@media (max-width: 1024px) {
    .alt-timeline-index::before {
        left: 20px;
    }

    .alt-tl-index-item {
        width: 100%;
        padding: 0 1.25rem 2.5rem 3.5rem;
        text-align: left !important;
    }

    .alt-tl-index-item.left,
    .alt-tl-index-item.right {
        left: 0;
        padding-left: 3.5rem;
        padding-right: 1.25rem;
    }

    .alt-tl-index-item.left::before,
    .alt-tl-index-item.right::before {
        left: 14px;
        right: auto;
    }

    .alt-tl-index-item.left .alt-tl-index-content::after,
    .alt-tl-index-item.right .alt-tl-index-content::after {
        display: none;
    }
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #062644;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,117,31,0.04) 0%, transparent 65%);
    animation: glowPulse 5s ease-in-out 0.5s infinite;
    pointer-events: none;
}
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 1; }
}

.split-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(240px, 50vw, 380px);
    height: clamp(100px, 20vw, 160px);
    overflow: visible;
}

.split-letter {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
    font-size: clamp(6rem, 16vw, 11rem);
    line-height: 0.85;
    letter-spacing: -0.03em;
    position: absolute;
    will-change: transform, opacity, filter;
}

/* S from left */
.letter-s {
    color: #e0e0e0;
    opacity: 0;
    transform: translateX(-130px);
    filter: blur(10px);
    animation: sEnter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards,
               sMerge 0.75s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
}
@keyframes sEnter {
    0%   { opacity: 0; transform: translateX(-130px); filter: blur(10px); }
    100% { opacity: 1; transform: translateX(-48px);  filter: blur(0px); }
}
@keyframes sMerge {
    0%   { opacity: 1; transform: translateX(-48px); filter: blur(0px); }
    100% { opacity: 1; transform: translateX(-12px); filter: blur(0px); }
}

/* D from right */
.letter-d {
    color: #FF751F;
    text-shadow: 0 0 50px rgba(255,117,31,0.25), 0 0 100px rgba(255,117,31,0.1);
    opacity: 0;
    transform: translateX(130px);
    filter: blur(10px);
    animation: dEnter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards,
               dMerge 0.75s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
}
@keyframes dEnter {
    0%   { opacity: 0; transform: translateX(130px); filter: blur(10px); }
    100% { opacity: 1; transform: translateX(48px);  filter: blur(0px); }
}
@keyframes dMerge {
    0%   { opacity: 1; transform: translateX(48px); filter: blur(0px); }
    100% { opacity: 1; transform: translateX(12px);  filter: blur(0px); }
}

/* Slash between */
.split-slash {
    position: absolute;
    font-family: 'Teko', sans-serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #FFBD59;
    opacity: 0;
    transform: scale(0) rotate(-20deg);
    animation: slashPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards;
}
@keyframes slashPop {
    0%   { opacity: 0; transform: scale(0) rotate(-20deg); }
    100% { opacity: 0.6; transform: scale(1) rotate(0deg); }
}

/* Merge flash */
.merge-flash {
    position: absolute;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,117,31,0.2) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.3);
    animation: flashPop 0.5s ease 2.2s forwards;
    pointer-events: none;
}
@keyframes flashPop {
    0%   { opacity: 0; transform: scale(0.3); }
    20%  { opacity: 1; }
    100% { opacity: 0; transform: scale(2.5); }
}

/* Merge lines */
.merge-line {
    position: absolute;
    top: 50%; height: 1px;
    width: 0; opacity: 0;
}
.merge-line-l {
    right: 50%; margin-right: 75px;
    background: linear-gradient(90deg, transparent, rgba(255,117,31,0.4));
    animation: lineL 0.5s ease 2.25s forwards;
}
.merge-line-r {
    left: 50%; margin-left: 75px;
    background: linear-gradient(270deg, transparent, rgba(255,117,31,0.4));
    animation: lineR 0.5s ease 2.25s forwards;
}
@keyframes lineL {
    0%   { width: 0; opacity: 0; }
    15%  { opacity: 1; }
    100% { width: 70px; opacity: 0; }
}
@keyframes lineR {
    0%   { width: 0; opacity: 0; }
    15%  { opacity: 1; }
    100% { width: 70px; opacity: 0; }
}

/* Fade out letters */
.letter-s.hide-letters,
.letter-d.hide-letters,
.split-slash.hide-letters {
    animation: lettersOut 0.45s ease 2.4s forwards !important;
}
@keyframes lettersOut {
    0%   { opacity: 1; filter: blur(0px); }
    100% { opacity: 0; filter: blur(6px); }
}

/* Logo reveal */
.logo-reveal {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    width: clamp(160px, 30vw, 240px);
    height: auto;
    opacity: 0;
    filter: blur(8px) brightness(0.5);
    animation: logoIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 2.5s forwards;
    z-index: 5;
}
@keyframes logoIn {
    0%   { opacity: 0; transform: translate(-50%,-50%) scale(0.92); filter: blur(8px) brightness(0.5); }
    50%  { filter: blur(1px) brightness(0.95); }
    100% { opacity: 1; transform: translate(-50%,-50%) scale(1);    filter: blur(0px) brightness(1); }
}

/* Logo shine */
.logo-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 55%; height: 100%;
    background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,0.06) 42%, rgba(255,255,255,0.13) 50%, rgba(255,255,255,0.06) 58%, transparent 75%);
    z-index: 6;
    pointer-events: none;
    opacity: 0;
    animation: shineGo 1.2s ease 3.2s forwards;
}
@keyframes shineGo {
    0%   { left: -100%; opacity: 0; }
    8%   { opacity: 1; }
    100% { left: 170%; opacity: 0; }
}

/* Bottom section */
.load-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.6rem;
    opacity: 0;
    animation: bottomIn 0.5s ease 3.5s forwards;
}
@keyframes bottomIn {
    0%   { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

.load-divider {
    width: 0; height: 1.5px;
    background: linear-gradient(90deg, transparent, #FF751F, #FFBD59, #FF751F, transparent);
    margin-bottom: 0.5rem;
    border-radius: 2px;
    animation: divGrow 0.6s cubic-bezier(0.16, 1, 0.3, 1) 3.6s forwards;
}
@keyframes divGrow {
    0%   { width: 0; opacity: 0; }
    100% { width: 110px; opacity: 1; }
}

.load-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem; font-weight: 500;
    color: #8aa3bd;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0;
    animation: subIn 0.4s ease 3.8s forwards;
}
@keyframes subIn {
    0%   { opacity: 0; }
    100% { opacity: 0.7; }
}

/* Spinner */
.load-spinner-wrap {
    margin-top: 1.4rem;
    opacity: 0; transform: scale(0.6);
    animation: spinIn 0.35s ease 4.0s forwards;
}
@keyframes spinIn {
    0%   { opacity: 0; transform: scale(0.6); }
    100% { opacity: 1; transform: scale(1); }
}
.load-spinner {
    position: relative;
    width: 28px; height: 28px;
}
.load-spinner::before,
.load-spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid transparent;
}
.load-spinner::before {
    inset: 0;
    border-top-color: #FF751F;
    border-right-color: #FF751F;
    animation: spin 0.9s linear infinite;
}
.load-spinner::after {
    inset: 4px;
    border-bottom-color: #FFBD59;
    border-left-color: #FFBD59;
    animation: spin 0.6s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Progress bar */
.load-bar-wrap {
    width: 100px; height: 1.5px;
    background: rgba(26,74,117,0.4);
    border-radius: 2px;
    margin-top: 0.7rem;
    overflow: hidden;
    opacity: 0;
    animation: barIn 0.25s ease 4.2s forwards;
}
@keyframes barIn { to { opacity: 1; } }
.load-bar {
    width: 0%; height: 100%;
    background: linear-gradient(90deg, #FF751F, #FFBD59);
    border-radius: 2px;
    animation: barFill 1.1s cubic-bezier(0.4, 0, 0.2, 1) 4.3s forwards;
}
@keyframes barFill {
    0%   { width: 0%; }
    25%  { width: 30%; }
    55%  { width: 60%; }
    80%  { width: 85%; }
    100% { width: 100%; }
}

/* Loading text */
.load-text {
    margin-top: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.55rem; font-weight: 500;
    color: #8aa3bd;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0;
    animation: textPulse 2s ease-in-out 4.3s infinite;
}
@keyframes textPulse {
    0%, 100% { opacity: 0.25; }
    50%      { opacity: 0.75; }
}

/* Exit animations */
.loading-screen.hidden .split-container {
    animation: containerOut 0.6s ease forwards;
}
.loading-screen.hidden .load-bottom,
.loading-screen.hidden .load-spinner-wrap,
.loading-screen.hidden .load-bar-wrap,
.loading-screen.hidden .load-text {
    animation: quickOut 0.3s ease forwards;
}
.loading-screen.hidden .loading-glow {
    animation: quickOut 0.5s ease forwards;
}
@keyframes containerOut {
    0%   { opacity: 1; transform: scale(1); filter: brightness(1); }
    100% { opacity: 0; transform: scale(1.06); filter: brightness(1.4); }
}
@keyframes quickOut { to { opacity: 0; } }

