@import url('https://fonts.cdnfonts.com/css/glacial-indifference');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400;1,9..144,700&display=swap');

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    height: 100vh;
    min-height: 100vh;
    background: #010714;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    font-family: "Poppins", Arial, sans-serif;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Hide technical browser scrollbar completely on all elements */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
main::-webkit-scrollbar,
*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

main {
    position: relative;
    width: 100%;
    min-height: 100vh;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* =========================================================
   NATURAL FULL-SCREEN SLIDE SCROLL-SNAP SYSTEM
========================================================= */

.slide-section {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    box-sizing: border-box;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    filter: none !important;
}


/* =========================================================
   NAVBAR — TRANSPARENT → SCROLLED GLASS
========================================================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: auto;

    padding: 12px 5.2%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 99999;

    background: transparent;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    pointer-events: none;

    box-sizing: border-box;

    transition: padding 0.35s ease;
}

.navbar > * {
    pointer-events: auto;
}

/* Disable pseudo-elements */
.navbar::before,
.navbar::after {
    display: none;
}


/* =========================================================
   SCROLLED NAVBAR — PRESERVE CONSTANT LIQUID GLASS MORPHISM
========================================================= */

.navbar.scrolled {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    padding: 10px 5.2%;
}

/* Ensure the Liquid Glassmorphism is 100% constant across all pages */
.navbar .menu,
.navbar.scrolled .menu {
    background: linear-gradient(120deg, 
        rgba(255, 255, 255, 0.90) 0%, 
        rgba(255, 250, 240, 0.82) 35%, 
        rgba(232, 197, 116, 0.40) 60%, 
        rgba(255, 255, 255, 0.90) 100%) !important;
    background-size: 200% 200% !important;
    animation: liquidFlow 8s ease infinite !important;
    backdrop-filter: blur(28px) saturate(210%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(210%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.85) !important;
    box-shadow: 
        0 10px 30px rgba(0, 82, 132, 0.16),
        inset 0 1px 2px rgba(255, 255, 255, 0.95),
        inset 0 -1px 2px rgba(0, 0, 0, 0.05) !important;
}

.navbar .music-btn,
.navbar.scrolled .music-btn,
.navbar .sparks-nav-btn,
.navbar.scrolled .sparks-nav-btn {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.90) 0%, 
        rgba(255, 250, 240, 0.80) 40%, 
        rgba(232, 197, 116, 0.35) 75%, 
        rgba(255, 255, 255, 0.90) 100%) !important;
    background-size: 200% 200% !important;
    animation: liquidFlow 8s ease infinite !important;
    backdrop-filter: blur(28px) saturate(210%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(210%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.85) !important;
    box-shadow: 
        0 12px 35px rgba(0, 82, 132, 0.18),
        inset 0 1px 2px rgba(255, 255, 255, 0.95),
        inset 0 -1px 2px rgba(0, 0, 0, 0.06) !important;
}

/* Active Navigation Link Highlight / Selection on Scroll */
.menu a.active {
    color: #005284 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 24px;
    box-shadow: 
        0 4px 14px rgba(0, 82, 132, 0.18),
        0 0 14px rgba(232, 197, 116, 0.5),
        inset 0 1px 2px #ffffff !important;
    transform: scale(1.08) translateY(-1px);
    font-weight: 800;
}

.menu a.active::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 2.5px;
    border-radius: 4px;
    background: #E39F51;
    box-shadow: 0 0 6px rgba(227, 159, 81, 0.8);
}

.menu a.nav-icon-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 6px 12px !important;
}

.nav-svg-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    display: block;
    transition: transform 0.25s ease;
}

.menu a.nav-icon-link:hover .nav-svg-icon {
    transform: scale(1.15);
}

/* =========================================================
   LOGO / NAV TEXT — transitions
========================================================= */

.logo-text h3,
.logo-text p,
.menu a {
    transition:
        color 0.35s ease,
        text-shadow 0.35s ease;
}

.logo-text h3,
.logo-text p {
    color: #005284;
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.9),
        0 2px 8px rgba(255, 255, 255, 0.8);
}


/* =========================================================
   LOGO — CLEAN WITHOUT BACKGROUND BOX
========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;

    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    padding: 0;
    border-radius: 0;

    border: none;
    box-shadow: none;

    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    background: transparent;
    box-shadow: none;
}

.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h3 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1.2px;
    color: #005284;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.logo-text p {
    margin: 2px 0 0;
    font-size: 14px;
    letter-spacing: 1.2px;
    color: #005284;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}


/* =========================================================
   NAVIGATION — GLASS-LIQUID-MAGNIFYING MORPHISM PILL
========================================================= */

.menu {
    display: flex;
    align-items: center;
    gap: 10px;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    z-index: 2;

    /* Glassmorphism frosted base with Liquid Sheen Gradient */
    background: linear-gradient(120deg, 
        rgba(255, 255, 255, 0.88) 0%, 
        rgba(255, 250, 240, 0.78) 35%, 
        rgba(232, 197, 116, 0.35) 60%, 
        rgba(255, 255, 255, 0.88) 100%);
    background-size: 200% 200%;
    animation: liquidFlow 8s ease infinite;

    backdrop-filter: blur(28px) saturate(210%);
    -webkit-backdrop-filter: blur(28px) saturate(210%);

    padding: 7px 20px;
    border-radius: 50px;

    /* Ultra-crisp glass edge & specular reflection */
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    box-shadow: 
        0 10px 30px rgba(0, 82, 132, 0.14),
        inset 0 1px 2px rgba(255, 255, 255, 0.95),
        inset 0 -1px 2px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

@keyframes liquidFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.menu:hover {
    transform: translateX(-50%) translateY(-2px);
    background-size: 220% 220%;
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 14px 35px rgba(0, 82, 132, 0.18),
        0 0 20px rgba(232, 197, 116, 0.28),
        inset 0 1px 3px rgba(255, 255, 255, 1);
}

/* MAGNIFYINGMORPHISM — READABLE LENS MAGNIFICATION FOR LINKS */
.menu a {
    text-decoration: none;
    color: #005284;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 6px 12px;
    border-radius: 24px;
    position: relative;
    display: inline-block;

    /* Smooth Lens Magnification transitions */
    transition: 
        transform 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        color 0.2s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
    
    will-change: transform;
}

/* Hover Magnifying Lens Bubble Effect */
.menu a:hover {
    color: #005284;
    transform: scale(1.12) translateY(-1px);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    
    /* Magnifying Lens Glass Edge & Specular Highlight */
    box-shadow: 
        0 6px 16px rgba(0, 82, 132, 0.16),
        0 0 12px rgba(232, 197, 116, 0.4),
        inset 0 1px 1px #ffffff;
    
    z-index: 10;
}


/* =========================================================
   NAVBAR ACTIONS
========================================================= */

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}


/* =========================================================
   MUSIC BUTTON — BALANCED WHITISH GLASS CIRCLE
========================================================= */

.music-btn {
    width: 44px;
    height: 44px;

    border: 1.5px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;

    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.88) 0%, 
        rgba(255, 250, 240, 0.75) 40%, 
        rgba(232, 197, 116, 0.3) 75%, 
        rgba(255, 255, 255, 0.88) 100%);
    background-size: 200% 200%;
    animation: liquidFlow 8s ease infinite;

    backdrop-filter: blur(28px) saturate(210%);
    -webkit-backdrop-filter: blur(28px) saturate(210%);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    box-shadow: 
        0 12px 35px rgba(0, 82, 132, 0.16),
        inset 0 1px 2px rgba(255, 255, 255, 0.95),
        inset 0 -1px 2px rgba(0, 0, 0, 0.06);

    z-index: 100;

    transition:
        transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.music-btn:hover {
    transform: translateY(-3px) scale(1.18);
    background-size: 220% 220%;
    box-shadow: 
        0 16px 45px rgba(0, 82, 132, 0.24),
        0 0 20px rgba(232, 197, 116, 0.5),
        inset 0 1px 3px rgba(255, 255, 255, 1);
}

.wave-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 24px;
    height: 22px;
}

.wave-icon .bar {
    width: 3px;
    border-radius: 5px;
    background: #005284;
    transition: 0.3s;
}

.music-btn.playing .bar-1 {
    height: 10px;
    animation: musicWave 0.8s infinite alternate;
}

.music-btn.playing .bar-2 {
    height: 20px;
    animation: musicWave 0.8s 0.2s infinite alternate;
}

.music-btn.playing .bar-3 {
    height: 10px;
    animation: musicWave 0.8s 0.4s infinite alternate;
}

.music-btn:not(.playing) .bar {
    height: 3px;
    animation: none;
}

@keyframes musicWave {
    from { transform: scaleY(0.4); }
    to   { transform: scaleY(1); }
}


/* =========================================================
   SPARKS REEL NAV BUTTON (CIRCULAR LINK TO DEF SPARKS)
========================================================= */

.sparks-nav-btn {
    width: 44px;
    height: 44px;

    border: 1.5px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;

    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.88) 0%, 
        rgba(255, 250, 240, 0.75) 40%, 
        rgba(232, 197, 116, 0.3) 75%, 
        rgba(255, 255, 255, 0.88) 100%);
    background-size: 200% 200%;
    animation: liquidFlow 8s ease infinite;

    backdrop-filter: blur(28px) saturate(210%);
    -webkit-backdrop-filter: blur(28px) saturate(210%);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    text-decoration: none;
    box-shadow: 
        0 12px 35px rgba(0, 82, 132, 0.16),
        inset 0 1px 2px rgba(255, 255, 255, 0.95),
        inset 0 -1px 2px rgba(0, 0, 0, 0.06);

    z-index: 100;

    transition:
        transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background 0.35s ease,
        box-shadow 0.35s ease,
        color 0.3s ease;
}

.sparks-nav-btn:hover {
    transform: translateY(-3px) scale(1.18);
    background-size: 220% 220%;
    box-shadow: 
        0 16px 45px rgba(0, 82, 132, 0.24),
        0 0 20px rgba(227, 159, 81, 0.55),
        inset 0 1px 3px rgba(255, 255, 255, 1);
}

.sparks-nav-icon {
    width: 20px;
    height: 20px;
    color: #005284;
    transition: color 0.3s ease, transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.sparks-nav-btn:hover .sparks-nav-icon {
    color: #E39F51;
    filter: drop-shadow(0 0 6px rgba(227, 159, 81, 0.6));
    transform: scale(1.12);
}


/* =========================================================
   HAMBURGER — FLOATING GLASS CIRCLE
========================================================= */

.menu-button {
    display: none !important;
}

.hamburger {
    width: 50px;
    height: 50px;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.65);

    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    backdrop-filter: blur(20px) saturate(160%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    flex-shrink: 0;

    box-shadow: 0 10px 30px rgba(0, 82, 132, 0.12);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.hamburger:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 35px rgba(0, 82, 132, 0.18);
}

.hamburger span {
    width: 18px;
    height: 2px;
    background: #005284;
    border-radius: 2px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    z-index: 5;

    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    overflow: hidden;

    background: linear-gradient(135deg, #005284 0%, #005284 50%, #061d38 100%);

    display: flex;
    align-items: center;

    /* Contain mix-blend-mode within this section only */
    isolation: isolate;
}


/* =========================================================
   FULL-BLEED PHOTO
========================================================= */

.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.hero-photo img {
    display: none;
}

.hero-mobile-fg {
    display: none;
}


/* =========================================================
   SEAMLESS ROYAL NAVY OVERLAY
========================================================= */

.hero-photo::after {
    display: none;
}


/* =========================================================
   EXTRA WARM AMBER GLOW
========================================================= */

.hero::before {
    display: none;
}


/* =========================================================
   DECORATIVE RINGS
========================================================= */

/* =========================================================
   GOLDEN DECORATIVE RINGS & ORBITING LIGHT TRAILS
========================================================= */

.hero-rings {
    position: absolute;
    right: 14%;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    pointer-events: none;
    z-index: 3;
}

.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(227, 159, 81, 0.45);
    box-shadow: 0 0 25px rgba(227, 159, 81, 0.30);
    animation: goldenRingPulse 6s ease-in-out infinite alternate;
}

.ring-1 { transform: scale(1); animation-delay: 0s; }
.ring-2 { transform: scale(0.78); animation-delay: -2s; border-color: rgba(227, 159, 81, 0.55); }
.ring-3 { transform: scale(0.55); animation-delay: -4s; border-color: rgba(255, 240, 190, 0.65); }

/* Moving Orbiting Golden Comet Dots */
.ring-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff5d0;
    box-shadow: 0 0 14px 4px rgba(227, 159, 81, 0.95);
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -4px;
}

.dot-1 { animation: orbitSpin1 12s linear infinite; }
.dot-2 { animation: orbitSpin2 9s linear infinite reverse; }
.dot-3 { animation: orbitSpin3 15s linear infinite; }

@keyframes goldenRingPulse {
    0%   { opacity: 0.40; transform: scale(1);    }
    100% { opacity: 0.85; transform: scale(1.04); }
}

@keyframes orbitSpin1 {
    from { transform: rotate(0deg) translate(260px) rotate(0deg); }
    to   { transform: rotate(360deg) translate(260px) rotate(-360deg); }
}

@keyframes orbitSpin2 {
    from { transform: rotate(0deg) translate(203px) rotate(0deg); }
    to   { transform: rotate(360deg) translate(203px) rotate(-360deg); }
}

@keyframes orbitSpin3 {
    from { transform: rotate(0deg) translate(143px) rotate(0deg); }
    to   { transform: rotate(360deg) translate(143px) rotate(-360deg); }
}


/* =========================================================
   HERO CONTENT — FRAUNCES TYPOGRAPHY & GLACIAL INDIFFERENCE
========================================================= */

.hero-content {
    position: absolute;
    left: 5.2%;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    max-width: 480px;
    z-index: 20;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.hero-title {
    margin: 0 0 16px 0;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(38px, 4.2vw, 54px);
    line-height: 1.14;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.hero-title span {
    font-family: 'Fraunces', Georgia, serif;
    text-shadow:
        0 0 16px rgba(255, 255, 255, 0.92),
        0 2px 8px rgba(255, 255, 255, 0.85);
}

.title-awakened {
    display: block;
    color: #005284 !important;
    -webkit-text-fill-color: #005284 !important;
}

.title-line-second {
    display: block;
    white-space: nowrap;
}

.title-peaceful {
    display: inline !important;
    color: #E39F51 !important;
    -webkit-text-fill-color: #E39F51 !important;
}

.title-world {
    display: inline !important;
    color: #6b7b37 !important;
    -webkit-text-fill-color: #6b7b37 !important;
}

/* Subtext in Glacial Indifference unbold (font-weight: 400) */
.hero-subtext {
    margin: 0 0 24px 0;
    max-width: 440px;
}

.subtext-lead {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #005284;
    margin: 0 0 6px 0;
    letter-spacing: 0.3px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.subtext-desc {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(0, 82, 132, 0.90);
    margin: 0;
    letter-spacing: 0.15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Watch Video Button Without Any Bar */
.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.watch-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.watch-video-btn:hover {
    transform: translateY(-2px) scale(1.04);
    filter: brightness(1.12);
}

.watch-video-icon {
    width: 38px;
    height: 38px;
    display: block;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.watch-video-btn:hover .watch-video-icon {
    transform: scale(1.08);
}

.watch-video-text {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #E39F51;
    letter-spacing: 0.4px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}


/* =========================================================
   EXPLORE BUTTON
========================================================= */

.hero-button-wrap {
    margin-top: 28px;
    width: 100%;
}

.explore-btn {
    border: none;

    padding: 15px 30px;

    width: 100%;

    border-radius: 50px;

    font-family: 'Glacial Indifference', 'Poppins', sans-serif;

    background:
        linear-gradient(
            135deg,
            #E39F51 0%,
            #E39F51 50%,
            #E39F51 100%
        );

    color: #051c38;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    box-shadow:
        0 6px 20px rgba(227, 159, 81, 0.40);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.explore-btn:hover {
    transform: translateY(-2px);

    filter: brightness(1.08);

    box-shadow:
        0 10px 28px rgba(227, 159, 81, 0.60);
}

.explore-btn svg {
    transition: transform 0.3s ease;
}

.explore-btn:hover svg {
    transform: translateX(4px);
}


/* =========================================================
   REMOVE OLD JOURNEY
========================================================= */

.journey {
    display: none;
}


/* =========================================================
   RESPONSIVE — max-width: 900px
========================================================= */

@media (max-width: 900px) {

    .hero {
        min-height: 700px;
    }

    .hero-photo {
        background-position: 68% 45px;
    }

    .hero-content {
        left: 6%;
        width: 340px;
        padding: 26px 28px;
    }

    .hero-content h1 {
        font-size: clamp(28px, 5vw, 36px);
    }
}


@media (max-width: 600px) {

    .hero {
        min-height: 720px;
        height: auto;
    }

    .hero-photo {
        background-position: 68% top;
    }

    .hero-content {
        left: 5%;
        right: 5%;
        top: 52%;

        width: auto;
        padding: 24px 24px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .explore-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}



/* =========================================================
   VERTICAL DOT PAGINATION (RIGHT SIDE PAGE INDICATOR)
========================================================= */

.vertical-dot-nav {
    position: fixed;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 14px 9px;
    background: rgba(255, 255, 255, 0.20);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 30px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 10px 30px rgba(0, 82, 132, 0.20),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.50);
    border: 1.5px solid rgba(255, 255, 255, 0.90);
    cursor: pointer;
    padding: 0;
    margin: 0;
    outline: none;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    display: block;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.35);
    box-shadow: 0 0 14px rgba(227, 159, 81, 0.8);
}

.nav-dot.active {
    height: 22px;
    border-radius: 12px;
    background: linear-gradient(180deg, #E39F51 0%, #E39F51 100%);
    border-color: #ffffff;
    box-shadow: 
        0 0 16px rgba(227, 159, 81, 0.95),
        0 2px 8px rgba(0, 82, 132, 0.3);
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .vertical-dot-nav {
        right: 12px;
        padding: 10px 6px;
        gap: 8px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
    
    .nav-dot.active {
        height: 18px;
    }
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
    position: absolute;

    left: 3.5%;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    z-index: 20;
}

.scroll-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #005284;
}

.scroll-line {
    width: 1px;
    height: 70px;

    background: #52667a;

    margin: 10px 0;
}

.scroll-indicator span {
    font-size: 10px;

    writing-mode: vertical-rl;

    letter-spacing: 1.5px;

    color: #223b55;
}



/* =========================================================
   ANIMATED SIGMOID WAVE DIVIDER (20% BOTTOM GLIMPSE)
   Smoothly undulating Sigmoid S-Curve math function S(x)
========================================================= */

.hero-wave {
    display: none;
}

.sigmoid-glimpse-wave {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 18vh;

    z-index: 10;

    overflow: hidden;
    pointer-events: none;
}

.sigmoid-glimpse-wave svg {
    display: block;
    width: 200%;
    height: 100%;
    animation: sigmoidWaveMove 12s linear infinite;
    will-change: transform;
}

.sigmoid-fill-path {
    opacity: 0.98;
}

.sigmoid-stars-group circle {
    animation: starPulse 3s ease-in-out infinite alternate;
}

.sigmoid-stroke-path {
    fill: none;
    stroke: rgba(227, 159, 81, 0.90);
    stroke-width: 3.5;
    filter: drop-shadow(0 0 12px rgba(227, 159, 81, 0.95));
}

@keyframes sigmoidWaveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* =========================================================
   IMPACT SECTION
========================================================= */


.impact {
    position: relative;

    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    display: flex;
    flex-direction: column;
    justify-content: center;

    margin-top: 0;
    padding: 60px 4.5% 40px;

    background:
        /* Soft diagonal Milky Way star haze band */
        linear-gradient(
            135deg,
            transparent 10%,
            rgba(20, 80, 160, 0.14) 38%,
            rgba(80, 32, 135, 0.12) 62%,
            transparent 88%
        ),
        /* Cosmic purple nebula cloud — right/center */
        radial-gradient(
            ellipse 55% 65% at 75% 60%,
            rgba(85, 30, 145, 0.22) 0%,
            rgba(45, 15, 85,  0.10) 50%,
            transparent 75%
        ),
        /* Deep royal blue galaxy patch — left/top */
        radial-gradient(
            ellipse 65% 55% at 22% 35%,
            rgba(12, 65, 145, 0.28) 0%,
            rgba(5, 32, 85,   0.14) 55%,
            transparent 80%
        ),
        /* Deep cyan cosmic dust — center */
        radial-gradient(
            ellipse 50% 50% at 50% 25%,
            rgba(0, 135, 195, 0.16) 0%,
            transparent 65%
        ),
        /* Deep space black-navy base */
        #010714;

    color: #ffffff;

    overflow: hidden;
    z-index: 1;
}


/* =========================================================
   SECTION 2 — SCROLL FADE-IN & STAGGER REVEAL
========================================================= */

/* Initial hidden state for Section 2 elements */
.impact .impact-intro,
.impact .stat,
.impact .story-card {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Stagger transition-delay values (120ms step between children) */
.impact .impact-intro { transition-delay: 0.00s; }
.impact .stat:nth-child(1) { transition-delay: 0.12s; }
.impact .stat:nth-child(2) { transition-delay: 0.24s; }
.impact .stat:nth-child(3) { transition-delay: 0.36s; }
.impact .stat:nth-child(4) { transition-delay: 0.48s; }
.impact .story-card { transition-delay: 0.60s; }

/* Visible state triggered by IntersectionObserver */
.impact.is-visible .impact-intro,
.impact.is-visible .stat,
.impact.is-visible .story-card {
    opacity: 1;
    transform: translateY(0);
}

/* Respect OS accessibility setting for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .impact .impact-intro,
    .impact .stat,
    .impact .story-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* Deep Space Canvas — Starfield & Constellations */
.space-universe-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Secondary atmospheric nebula glow layer */
.impact::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(8, 45, 105, 0.15) 0%,
            transparent 70%
        );
    pointer-events: none;
    z-index: 1;
}


/* Impact Content */

.impact-content {
    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   IMPACT INTRO
========================================================= */

.impact-intro {
    width: 220px;

    flex-shrink: 0;
}

.section-label {
    font-size: 10px;

    color: #d8c9aa;

    letter-spacing: 1px;
}

.impact-intro h2 {
    margin-top: 12px;

    font-size: 29px;

    line-height: 1.05;
}

.impact-intro h2 span {
    color: #E39F51;
}

.impact-intro p {
    margin-top: 15px;

    font-size: 11px;

    line-height: 1.6;

    color: #b9c6d0;
}


/* Impact Button */

.impact-button {
    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 20px;

    padding: 11px 18px;

    border: 1px solid #005284;

    border-radius: 25px;

    color: #ffffff;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 0.5px;

    transition: 0.3s;
}

.impact-button:hover {
    background: #005284;

    box-shadow: 0 0 18px rgba(53, 203, 220, 0.4);

    transform: translateY(-2px);
}

/* Impact particle canvas */
#impact-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* =========================================================
   STATS — GLOWING SPHERES
========================================================= */

.stats {
    flex: 1;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    position: relative;
}

.stat {
    width: 180px;
    height: 180px;

    border-radius: 50%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;

    overflow: visible;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 38% 28%,
            rgba(255, 255, 255, 0.18),
            transparent 45%
        ),
        radial-gradient(
            circle,
            #005284,
            #060f1e
        );

    transition: transform 0.35s, background 0.35s;
}

.stat:hover {
    transform: translateY(-10px) scale(1.07);
}

/* ::before is kept as a spacer so ::after beam positioning still works */
.stat::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    z-index: -1;
}

/* =========================================================
   SPHERE BORDERS + GLOW  (Unified Warm Champagne Gold Theme)
========================================================= */

.stat-gold,
.stat-blue,
.stat-cyan,
.stat-purple {
    border: 2px solid rgba(232, 197, 116, 0.95);
    box-shadow:
        0 0  15px  6px rgba(245, 216, 150, 0.90),   /* tight bright golden-white ring */
        0 0  45px 14px rgba(232, 197, 116, 0.65),   /* medium champagne halo */
        0 0 100px 30px rgba(232, 197, 116, 0.28),   /* wide golden ambient */
        inset 0 0  30px rgba(245, 216, 150, 0.15);  /* inner golden warmth */
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.stat-gold:hover,
.stat-blue:hover,
.stat-cyan:hover,
.stat-purple:hover {
    transform: translateY(-10px) scale(1.07);
    border-color: #E39F51;
    box-shadow:
        0 0  25px 10px rgba(255, 255, 255, 0.95),
        0 0  70px 25px rgba(245, 216, 150, 0.85),
        0 0 140px 50px rgba(232, 197, 116, 0.45),
        inset 0 0  40px rgba(245, 216, 150, 0.25);
}

.stat-number {
    font-size: 28px;
    font-weight: 500;
}

.stat p {
    margin-top: 4px;
    font-size: 10px;
    color: #e2e8ed;
}

/* ---- SVG icon colors: unified golden tone for all spheres ---- */
.stat-gold .stat-icon,
.stat-blue .stat-icon,
.stat-cyan .stat-icon,
.stat-purple .stat-icon,
.stat-icon {
    stroke: #E39F51;
}

.stat-icon {
    margin-top: 10px;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    opacity: 0.9;
    transition: opacity 0.35s;
}

.stat:hover .stat-icon {
    opacity: 1;
}


/* =========================================================
   STORY CARD
========================================================= */

.story-card {
    width: 300px;
    height: 320px;
    margin-top: 0;
    margin-left: 28px;

    border-radius: 20px;

    overflow: hidden;

    position: relative;

    flex-shrink: 0;

    border: 1px solid rgba(255, 255, 255, 0.18);

    background: #11283a;

    transition: 0.35s;
}

.story-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 255, 255, 0.35);

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.story-image {
    position: absolute;

    inset: 0;
}

/* Bottom-to-top gradient so photo shows at top, text readable at bottom */
.story-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(4, 18, 30, 0.97) 0%,
            rgba(4, 18, 30, 0.6) 45%,
            rgba(4, 18, 30, 0.08) 100%
        );
}

.story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}

/* Content sits at the BOTTOM of the portrait card */
.story-content {
    position: absolute;

    bottom: 0;
    left: 0;
    right: 0;

    z-index: 5;

    padding: 22px 20px;
}

.story-content > span {
    font-size: 9px;

    letter-spacing: 2px;

    color: #d8c9aa;

    text-transform: uppercase;
}

.story-content h3 {
    margin-top: 10px;

    font-size: 21px;

    line-height: 1.15;

    font-weight: 600;
}

.story-content h3 strong {
    color: #E39F51;
}

.story-cta {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 22px;

    padding: 6px 16px 6px 6px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.18);

    text-decoration: none;

    color: #ffffff;

    font-size: 9px;

    letter-spacing: 0.5px;

    transition: 0.3s;
}

.story-cta:hover {
    background: rgba(255, 255, 255, 0.16);

    transform: translateX(3px);
}

.story-arrow {
    width: 35px;
    height: 35px;

    border: 1px solid #005284;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 16px;

    background: #E39F51;

    color: #06182a;
}


/* =========================================================
   OTHER SECTIONS
========================================================= */

.dummy-section {
    min-height: 450px;

    padding: 120px 8%;

    background: #ffffff;
}

.dummy-section:nth-child(even) {
    background: #f5f8fa;
}

.dummy-section span {
    color: #E39F51;

    font-size: 12px;

    letter-spacing: 3px;
}

.dummy-section h2 {
    margin-top: 20px;

    font-size: 50px;

    color: #005284;
}


/* =========================================================
   SECTION WAVE DIVIDERS (SINGLE WAVE)
========================================================= */

.section-wave {
    position: relative;

    margin-top: -2px;
    margin-bottom: -2px;

    line-height: 0;

    width: 100%;
    overflow: hidden;

    z-index: 10;

    pointer-events: none;
}

.section-wave svg {
    display: block;
    width: 100%;
    height: 90px;
}

/* ---------------------------------------------------------
   Wave 1 : Impact (#010c1e) to Initiatives (#ffffff)
--------------------------------------------------------- */

.wave-dark-to-light svg {
    background: #010714;
    border: none;
    outline: none;
}

.wave-dark-to-light .sw-single {
    fill: #ffffff;
    stroke: none;
    shape-rendering: geometricPrecision;
}

/* ---------------------------------------------------------
   Wave 2 : Initiatives (#ffffff) to Research (#f5f8fa)
--------------------------------------------------------- */

.wave-light-to-lighter svg {
    background: #ffffff;
}

.wave-light-to-lighter .sw-single {
    fill: #f5f8fa;
    stroke: none;
}

/* ---------------------------------------------------------
   Wave 3 : Research (#f5f8fa) to About (#ffffff)
--------------------------------------------------------- */

.wave-lighter-to-white svg {
    background: #f5f8fa;
}

.wave-lighter-to-white .sw-single {
    fill: #ffffff;
    stroke: none;
}


/* =========================================================
   SPARKLING STARS — Section 2
   Soft white / silver twinkling dots
========================================================= */

.impact-sparkle {
    position: absolute;
    pointer-events: none;
    z-index: 3;
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
        0 0 4px 1px rgba(255, 255, 255, 0.9),
        0 0 10px 2px rgba(220, 235, 255, 0.5);
    opacity: 0;
    animation: starGlow var(--dur, 4s) var(--delay, 0s) ease-in-out infinite;
    will-change: opacity, transform;
}

@keyframes starGlow {
    0%   { opacity: 0;    transform: scale(0.4); }
    40%  { opacity: 0.75; transform: scale(1);   }
    60%  { opacity: 0.75; transform: scale(1);   }
    100% { opacity: 0;    transform: scale(0.4); }
}

.sparkle-star { display: none; }


/* =========================================================
   OUR SIX EXPRESSIONS SECTION — HEADER
========================================================= */

.expressions {
    position: relative;
    padding: 100px 3% 130px;
    background: #010714;
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

/* Background atmospheric glow */
.expressions::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(20, 80, 160, 0.16) 0%,
            rgba(80, 32, 135, 0.10) 45%,
            transparent 75%
        );
    pointer-events: none;
    z-index: 1;
}

/* Header */
.expressions-header {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 55px;
}

.expressions-header .section-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #E39F51;
    font-weight: 700;
    text-transform: uppercase;
}

.expressions-header h2 {
    margin-top: 14px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
}

.expressions-header h2 span {
    background: linear-gradient(90deg, #E39F51 0%, #E39F51 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.expressions-header p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #a0b2c6;
}


/* =========================================================
   COMPASS WHEEL — Six Expressions
========================================================= */

.wheel-container {
    position: relative;
    width: min(640px, 90vw);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    z-index: 5;
}

.wheel-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.wheel-rim {
    fill: none;
    stroke: rgba(227, 159, 81, 0.25);
    stroke-width: 1.5;
}

.wheel-rim-inner {
    fill: none;
    stroke: rgba(227, 159, 81, 0.10);
    stroke-width: 1;
}

.wheel-spoke {
    stroke: rgba(227, 159, 81, 0.22);
    stroke-width: 1.2;
    transition: stroke 0.4s ease, stroke-width 0.4s ease;
}

.wheel-spoke.is-active {
    stroke: #E39F51;
    stroke-width: 2.2;
    filter: drop-shadow(0 0 6px rgba(227, 159, 81, 0.8));
}

/* Center Core */
.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 6;
}

.center-glow-ring {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid rgba(227, 159, 81, 0.5);
    animation: centerPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes centerPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50%      { transform: scale(1.12); opacity: 0.9; }
}

.center-logo-badge {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #ffffff;
    padding: 14px;
    box-shadow: 0 0 30px rgba(227, 159, 81, 0.5);
}

.center-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.center-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: #E39F51;
    font-weight: 700;
    text-align: center;
}

/* Radial Points — positioned at 60° intervals like a clock */
.wheel-point {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 7;
    cursor: pointer;
    outline: none;
}

.point-0 { left: 50%;   top: 12.5%;  }  /* 12 o'clock */
.point-1 { left: 82.5%; top: 31.25%; }  /* 2 o'clock  */
.point-2 { left: 82.5%; top: 68.75%; }  /* 4 o'clock  */
.point-3 { left: 50%;   top: 87.5%;  }  /* 6 o'clock  */
.point-4 { left: 17.5%; top: 68.75%; }  /* 8 o'clock  */
.point-5 { left: 17.5%; top: 31.25%; }  /* 10 o'clock */

.point-thumb {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    filter: saturate(0.6) brightness(0.75);
    transition: transform 0.4s ease, filter 0.4s ease;
    animation: thumbBreathe 5s ease-in-out infinite;
}

@keyframes thumbBreathe {
    0%, 100% { box-shadow: 0 0 0 rgba(227, 159, 81, 0); }
    50%      { box-shadow: 0 0 18px rgba(227, 159, 81, 0.25); }
}

.point-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(227, 159, 81, 0.4);
    pointer-events: none;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.wheel-point:hover .point-thumb,
.wheel-point.is-active .point-thumb,
.wheel-point:focus-visible .point-thumb {
    transform: scale(1.15);
    filter: saturate(1) brightness(1);
}

.wheel-point:hover .thumb-ring,
.wheel-point.is-active .thumb-ring,
.wheel-point:focus-visible .thumb-ring {
    border-color: #E39F51;
    box-shadow: 0 0 25px rgba(227, 159, 81, 0.7);
}

/* Tooltip Cards */
.point-tooltip {
    position: absolute;
    width: 220px;
    padding: 16px 18px;
    background: rgba(8, 26, 51, 0.97);
    border: 1px solid rgba(227, 159, 81, 0.35);
    border-radius: 14px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
    transition: opacity 0.35s ease, transform 0.35s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 8;
}

.wheel-point:hover .point-tooltip,
.wheel-point.is-active .point-tooltip,
.wheel-point:focus-visible .point-tooltip {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.tooltip-top {
    bottom: 115%;
    left: 50%;
    transform-origin: bottom center;
    margin-left: -110px;
}

.tooltip-bottom {
    top: 115%;
    left: 50%;
    transform-origin: top center;
    margin-left: -110px;
}

.tooltip-left {
    right: 115%;
    top: 50%;
    transform-origin: right center;
    margin-top: -60px;
}

.tooltip-right {
    left: 115%;
    top: 50%;
    transform-origin: left center;
    margin-top: -60px;
}

.point-num {
    font-size: 11px;
    color: #E39F51;
    font-weight: 700;
    letter-spacing: 1px;
}

.point-tooltip h3 {
    margin-top: 4px;
    font-size: 15px;
    color: #ffffff;
}

.point-tooltip p {
    margin-top: 6px;
    font-size: 11.5px;
    line-height: 1.5;
    color: #a0b2c6;
}

/* Entrance Animation */
.wheel-container.is-visible .wheel-center {
    animation: wheelCenterIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.wheel-container.is-visible .wheel-point {
    animation: wheelPointIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.wheel-container.is-visible .point-0 { animation-delay: 0.15s; }
.wheel-container.is-visible .point-1 { animation-delay: 0.25s; }
.wheel-container.is-visible .point-2 { animation-delay: 0.35s; }
.wheel-container.is-visible .point-3 { animation-delay: 0.45s; }
.wheel-container.is-visible .point-4 { animation-delay: 0.55s; }
.wheel-container.is-visible .point-5 { animation-delay: 0.65s; }

@keyframes wheelCenterIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1);   }
}

@keyframes wheelPointIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1);   }
}

.wheel-center,
.wheel-point {
    opacity: 0;
}

.wheel-container.is-visible .wheel-center,
.wheel-container.is-visible .wheel-point {
    opacity: 1;
}

/* Responsive */
@media (max-width: 700px) {

    .wheel-container {
        width: min(420px, 92vw);
    }

    .point-thumb {
        width: 68px;
        height: 68px;
    }

    .center-logo-badge {
        width: 68px;
        height: 68px;
    }

    .point-tooltip {
        width: 170px;
        padding: 12px 14px;
    }
}

@media (max-width: 420px) {

    .wheel-container {
        width: min(320px, 94vw);
    }

    .point-thumb {
        width: 52px;
        height: 52px;
    }

    .center-logo-badge {
        width: 54px;
        height: 54px;
    }

    .center-label {
        font-size: 8px;
    }

    .point-tooltip {
        width: 150px;
        padding: 10px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .center-glow-ring,
    .point-thumb {
        animation: none;
    }

    .wheel-center,
    .wheel-point {
        opacity: 1;
        animation: none;
    }
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .menu {
        gap: 25px;
    }

    .hero-content {
        left: 5%;
    }

    .hero-rings {
        left: 34%;

        transform: scale(0.85);
    }

    .hero-social {
        right: 2%;
    }

    .story-card {
        width: 320px;
    }

    .stat {
        width: 120px;
        height: 120px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .navbar {
        /* Ensure fixed positioning is preserved on tablet */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        height: 100px;
        padding: 20px;

        z-index: 99999;
    }

    .menu {
        display: none;
    }

    .navbar-actions {
        margin-left: auto;
    }


    /* Hero */

    .hero {
        height: auto;

        min-height: 100vh;

        padding-top: 130px;

        padding-bottom: 120px;

        display: block;
    }

    .hero-content {
        position: relative;

        top: auto;
        left: auto;

        width: 90%;

        margin: auto;

        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .journey {
        justify-content: center;
    }


    /* Photo overlay — soft warm beige-blue blend for mobile readability while keeping photo clear */

    .hero-photo::after {
        background: linear-gradient(
            180deg,
            rgba(0, 82, 132, 0.88) 0%,
            rgba(0, 82, 132, 0.55) 35%,
            rgba(0, 82, 132, 0.15) 65%,
            transparent 85%
        );
    }

    .hero-photo {
        background-position: 68% 45px;
    }


    /* Scale desktop elements for tablet */

    .hero-rings {
        right: 4%;
        top: 50%;
        transform: translateY(-50%) scale(0.65);
    }

    .hero-social,
    .scroll-indicator {
        display: none;
    }


    /* Wave */

    .hero-wave {
        bottom: -1px;
        height: 70px;
    }


    /* Impact */

    .impact {
        margin-top: 0;
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .impact-content {
        flex-direction: column;

        align-items: stretch;
    }

    .impact-intro {
        width: 100%;

        text-align: center;
    }

    .stats {
        flex-wrap: wrap;

        gap: 30px;
    }

    .story-card {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* Navbar */

    .navbar {
        /* Ensure fixed positioning is preserved on mobile */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        height: 80px;
        padding: 15px;

        z-index: 99999;
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        width: 48px;
        height: 48px;
    }

    .logo-text h3 {
        font-size: 19px;

        letter-spacing: 1px;
    }

    .logo-text p {
        font-size: 7px;

        letter-spacing: 1px;
    }

    .menu-button span {
        display: none;
    }

    .hamburger {
        width: 45px;
        height: 45px;
    }


    .navbar-actions {
        gap: 10px;
    }

    .music-btn,
    .sparks-nav-btn {
        width: 43px;
        height: 43px;
    }


    /* Hero */

    .hero {
        padding-top: 120px;

        padding-bottom: 100px;
    }

    .hero-photo {
        background-position: 68% 40px;
    }

    .hero-photo::after {
        background: linear-gradient(
            180deg,
            rgba(0, 82, 132, 0.90) 0%,
            rgba(0, 82, 132, 0.60) 38%,
            rgba(0, 82, 132, 0.20) 70%,
            transparent 90%
        );
    }

    .hero-content {
        width: 90%;
    }

    .eyebrow {
        font-size: 9px;

        letter-spacing: 2.5px;

        margin-bottom: 18px;
    }

    .hero-content h1 {
        font-size: 43px;

        letter-spacing: -1px;
    }

    .hero-content p {
        width: 100%;

        font-size: 13px;

        line-height: 1.65;
    }


    /* Journey */

    .journey {
        margin-top: 28px;

        gap: 12px;
    }

    .play-story {
        width: 52px;
        height: 52px;
    }


    /* Wave */

    .hero-wave {
        bottom: -1px;
        height: 50px;
    }

    /* Impact */

    .impact {
        margin-top: 0;
        padding: 50px 20px 70px;
    }

    .impact-intro h2 {
        font-size: 30px;
    }

    .stats {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 35px 20px;
    }

    .stat {
        margin: auto;

        width: 125px;
        height: 125px;
    }

    .stat-number {
        font-size: 24px;
    }


    /* Story */

    .story-card {
        height: 220px;
        width: 100%;
    }

    .story-content {
        width: 75%;

        padding: 22px;
    }

    .story-content h3 {
        font-size: 22px;
    }


    /* Other Sections */

    .dummy-section {
        min-height: 400px;

        padding: 80px 25px;
    }

    .dummy-section h2 {
        font-size: 35px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .logo-text h3 {
        font-size: 17px;
    }

    .logo-text p {
        font-size: 6px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   MUSIC AUDIO SAFETY
========================================================= */

#bg-audio {
    display: none;
}

/* Electric border for CIRCLES */
.electric-border-canvas {
    position: absolute !important;
    pointer-events: none !important;
    display: block !important;
}

.stat > .electric-border-canvas {
    z-index: 12 !important;
}

/* Ensure stat text/icons stay above the electric canvas */
.stat > .stat-number,
.stat > p,
.stat > .stat-icon {
    position: relative;
    z-index: 20;
}


/* =========================================================
   HERO LIGHT TRAILS
   Animated SVG layer tracing the existing cyan rings
   in hero.png — gives them a "soft energy flowing" look.
========================================================= */

/* Container — sits above photo (z:1) and blue overlay (z:2) but below
   hero-content (z:20). An SVG <mask> inside the SVG physically prevents
   any trail from rendering over face/body regions — no blend tricks needed. */
.hero-light-trails {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.hero-light-trails svg {
    width: 100%;
    height: 100%;
    display: block;
}


/* ---------------------------------------------------------
   BASE ELLIPSES
   Static faint gold ghost track
--------------------------------------------------------- */

.hlt-base {
    fill: none;
    stroke: rgba(227, 159, 81, 0.10);
    stroke-width: 1;
}

.hlt-base-dim {
    stroke: rgba(227, 159, 81, 0.06);
}

/* Glowing Warm Gold Base Track for Left Text Region */
.hlt-base-dark {
    fill: none;
    stroke: rgba(227, 159, 81, 0.35);
    stroke-width: 1.8;
}


/* ---------------------------------------------------------
   TRAIL ELLIPSES — Glowing Gold Flowing Light
--------------------------------------------------------- */

.hlt-trail {
    fill: none;
    stroke-linecap: round;
}

/* PATH 1 — large outer ring, clockwise, 14s */
.hlt-trail-1 {
    stroke: rgba(227, 159, 81, 0.45);
    stroke-width: 1.6;
    stroke-dasharray: 180 2367;
    animation: hlt-flow-1 14s linear infinite;
}

/* PATH 2 — medium ring, counter-clockwise, 11s */
.hlt-trail-2 {
    stroke: rgba(227, 159, 81, 0.40);
    stroke-width: 1.5;
    stroke-dasharray: 130 1569;
    animation: hlt-flow-2 11s linear infinite;
}

/* PATH 3 — ground ring, clockwise, 9s */
.hlt-trail-3 {
    stroke: rgba(227, 159, 81, 0.45);
    stroke-width: 1.6;
    stroke-dasharray: 100 1649;
    animation: hlt-flow-3 9s linear infinite;
}

/* PATH 4 — left arc, counter-clockwise, 13s */
.hlt-trail-4 {
    stroke: rgba(227, 159, 81, 0.50);
    stroke-width: 1.6;
    stroke-dasharray: 110 1446;
    animation: hlt-flow-4 13s linear infinite;
}

/* PATH 5 — upper arc, clockwise, 16s */
.hlt-trail-5 {
    stroke: rgba(227, 159, 81, 0.35);
    stroke-width: 1.2;
    stroke-dasharray: 90 1298;
    animation: hlt-flow-5 16s linear infinite;
}

/* PATH L1 — left S-curve trail, glowing gold */
.hlt-trail-L1 {
    stroke: #E39F51;
    stroke-width: 2.2;
    stroke-dasharray: 120 720;
    animation: hlt-flow-L1 11s linear infinite;
    filter: drop-shadow(0 0 8px rgba(227, 159, 81, 0.85));
}

/* PATH L2 — left inner arc trail, glowing gold */
.hlt-trail-L2 {
    stroke: #E39F51;
    stroke-width: 2.0;
    stroke-dasharray: 100 700;
    animation: hlt-flow-L2 14s linear infinite;
    filter: drop-shadow(0 0 8px rgba(224, 176, 76, 0.85));
}

/* PATH L3 — text region sweep, glowing gold */
.hlt-trail-L3 {
    stroke: #fff5d0;
    stroke-width: 2.4;
    stroke-dasharray: 110 800;
    animation: hlt-flow-L3 13s linear infinite;
    filter: drop-shadow(0 0 9px rgba(255, 245, 208, 0.90));
}


/* ---------------------------------------------------------
   PULSE ELLIPSES — Bright Golden Hot Points
--------------------------------------------------------- */

.hlt-pulse {
    fill: none;
    stroke-linecap: round;
}

/* PATH 1 pulse */
.hlt-pulse-1 {
    stroke: rgba(255, 245, 210, 0.95);
    stroke-width: 2.4;
    stroke-dasharray: 28 2367;
    animation: hlt-flow-1 14s linear infinite;
}

/* PATH 2 pulse */
.hlt-pulse-2 {
    stroke: rgba(255, 240, 190, 0.92);
    stroke-width: 2.2;
    stroke-dasharray: 22 1569;
    animation: hlt-flow-2 11s linear infinite;
}

/* PATH 3 pulse */
.hlt-pulse-3 {
    stroke: rgba(255, 245, 210, 0.98);
    stroke-width: 2.6;
    stroke-dasharray: 20 1649;
    animation: hlt-flow-3 9s linear infinite;
}

/* PATH 4 pulse */
.hlt-pulse-4 {
    stroke: rgba(255, 240, 190, 0.92);
    stroke-width: 2.4;
    stroke-dasharray: 20 1446;
    animation: hlt-flow-4 13s linear infinite;
}

/* PATH 5 pulse */
.hlt-pulse-5 {
    stroke: rgba(227, 159, 81, 0.85);
    stroke-width: 1.8;
    stroke-dasharray: 18 1298;
    animation: hlt-flow-5 16s linear infinite;
}

/* PATH L1 pulse — glowing golden hot point */
.hlt-pulse-L1 {
    stroke: #fff5d0;
    stroke-width: 3.2;
    stroke-dasharray: 24 720;
    animation: hlt-flow-L1 11s linear infinite;
    filter: drop-shadow(0 0 12px rgba(255, 245, 208, 0.95));
}

/* PATH L2 pulse — glowing golden hot point */
.hlt-pulse-L2 {
    stroke: #fff5d0;
    stroke-width: 3.0;
    stroke-dasharray: 22 700;
    animation: hlt-flow-L2 14s linear infinite;
    filter: drop-shadow(0 0 12px rgba(255, 245, 208, 0.95));
}

/* PATH L3 pulse — glowing golden hot point */
.hlt-pulse-L3 {
    stroke: #ffffff;
    stroke-width: 3.4;
    stroke-dasharray: 25 800;
    animation: hlt-flow-L3 13s linear infinite;
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 1.0));
}


/* ---------------------------------------------------------
   KEYFRAMES
   stroke-dashoffset drives the travel.
   Positive value = clockwise;  Negative = counter-clockwise.
   Each path starts at a different phase (offset: X →  0)
   so they are never synchronised.
--------------------------------------------------------- */

/* PATH 1 — clockwise, full circumference 2367 */
@keyframes hlt-flow-1 {
    from { stroke-dashoffset:  2367; }
    to   { stroke-dashoffset:     0; }
}

/* PATH 2 — counter-clockwise */
@keyframes hlt-flow-2 {
    from { stroke-dashoffset:     0; }
    to   { stroke-dashoffset:  1569; }
}

/* PATH 3 — clockwise */
@keyframes hlt-flow-3 {
    from { stroke-dashoffset:  1649; }
    to   { stroke-dashoffset:     0; }
}

/* PATH 4 — counter-clockwise */
@keyframes hlt-flow-4 {
    from { stroke-dashoffset:     0; }
    to   { stroke-dashoffset:  1446; }
}

/* PATH 5 — clockwise, slowest */
@keyframes hlt-flow-5 {
    from { stroke-dashoffset:  1298; }
    to   { stroke-dashoffset:     0; }
}

/* PATH L1 — left S-curve, light travels bottom → top */
@keyframes hlt-flow-L1 {
    from { stroke-dashoffset:  720; }
    to   { stroke-dashoffset:    0; }
}

/* PATH L2 — left inner arc, light travels top → bottom */
@keyframes hlt-flow-L2 {
    from { stroke-dashoffset:    0; }
    to   { stroke-dashoffset:  700; }
}

/* PATH L3 — text region sweep, light travels top → bottom */
@keyframes hlt-flow-L3 {
    from { stroke-dashoffset:  800; }
    to   { stroke-dashoffset:    0; }
}


/* ---------------------------------------------------------
   STAGGER — offset start phase so paths feel independent
--------------------------------------------------------- */

.hlt-trail-1,  .hlt-pulse-1  { animation-delay:    0s; }
.hlt-trail-2,  .hlt-pulse-2  { animation-delay:  -3.5s; }
.hlt-trail-3,  .hlt-pulse-3  { animation-delay:  -1.8s; }
.hlt-trail-4,  .hlt-pulse-4  { animation-delay:  -6.2s; }
.hlt-trail-5,  .hlt-pulse-5  { animation-delay:  -9.0s; }
.hlt-trail-L1, .hlt-pulse-L1 { animation-delay:  -4.5s; }
.hlt-trail-L2, .hlt-pulse-L2 { animation-delay: -11.0s; }
.hlt-trail-L3, .hlt-pulse-L3 { animation-delay:  -7.5s; }


/* ---------------------------------------------------------
   RESPONSIVE — scale the SVG naturally;
   no overflow outside hero on any breakpoint.
--------------------------------------------------------- */

@media (max-width: 992px) {
    .hero-light-trails {
        opacity: 0.75;   /* slightly softer on tablet */
    }
}

@media (max-width: 600px) {
    .hero-light-trails {
        opacity: 0.55;   /* more subtle on mobile */
    }
}


/* ---------------------------------------------------------
   REDUCED MOTION — respect accessibility preference
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .hlt-trail,
    .hlt-pulse {
        animation: none;
        stroke-dasharray: none;
        opacity: 0;
    }
}


/* =========================================================
   FULL-SCREEN SECTION SNAP SLIDES
========================================================= */

.expressions {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 110px 4% 30px;
    background: #010714;
    color: #ffffff;
    overflow: hidden;
}

.dummy-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    background: linear-gradient(135deg, #005284 0%, #005284 50%, #061d38 100%);
    color: #ffffff;
    padding: 40px;
    overflow: hidden;
}

.dummy-section span {
    font-size: 13px;
    letter-spacing: 2px;
    color: #E39F51;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dummy-section h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: #ffffff;
}


/* =========================================================
   SECTION 2: TIMELINE SLIDE (FOUNDATION & FOUNDER SLIDE)
========================================================= */

.timeline-slide {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    overflow: hidden;
    background: #010714;
    color: #ffffff;
    isolation: isolate;
}

.timeline-ambient-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: 
        radial-gradient(circle at 20% 30%, rgba(227, 159, 81, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 82, 132, 0.4) 0%, transparent 60%);
    z-index: 1;
}

.timeline-track-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.timeline-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.timeline-card {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 7.5%;
    box-sizing: border-box;
}

.card-bg,
.card-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.92);
}

.card-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.03);
    transition: transform 8s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-card.active .card-bg {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        90deg, 
        rgba(1, 7, 20, 0.94) 0%, 
        rgba(1, 7, 20, 0.82) 42%, 
        rgba(1, 7, 20, 0.35) 75%,
        rgba(1, 7, 20, 0.15) 100%
    );
}

.card-content {
    position: relative;
    z-index: 3;
    max-width: 620px;
    margin-top: 40px;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-card.active .card-content {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.15s;
}

.card-header-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.year-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    background: rgba(227, 159, 81, 0.18);
    border: 1.5px solid rgba(227, 159, 81, 0.7);
    border-radius: 30px;
    color: #E39F51;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow: 0 0 18px rgba(227, 159, 81, 0.3);
    backdrop-filter: blur(10px);
}

.card-category {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    color: #E39F51;
    text-transform: uppercase;
}

.card-content h2 {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: clamp(34px, 3.8vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.card-desc {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 12px 24px;
    max-width: 480px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(227, 159, 81, 0.25);
    color: #E39F51;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
}

.feature-item strong {
    display: block;
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

.feature-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

/* NAVIGATION ARROWS */
.timeline-nav-controls {
    position: absolute;
    top: 50%;
    right: 5.2%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.timeline-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.timeline-arrow svg {
    width: 22px;
    height: 22px;
}

.timeline-arrow:hover {
    background: rgba(227, 159, 81, 0.85);
    border-color: #E39F51;
    color: #010714;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(227, 159, 81, 0.5);
}

/* TIMELINE BAR AT BOTTOM */
.timeline-bar-container {
    position: absolute;
    bottom: 24px;
    left: 7.5%;
    right: 280px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 28px 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 40, 70, 0.25), inset 0 0 16px rgba(255, 255, 255, 0.5), inset 0 1px 3px rgba(255, 255, 255, 0.9);
}

.timeline-track-axis {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), 0 0 8px rgba(255, 255, 255, 0.4);
}

.timeline-axis-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #E39F51, #E39F51);
    box-shadow: 0 0 12px rgba(227, 159, 81, 0.95);
    border-radius: 4px;
    will-change: width;
}

.timeline-ticks-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    position: relative;
    height: 36px;
}

.timeline-tick-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.timeline-tick {
    width: 2px;
    height: 8px;
    background: rgba(0, 82, 132, 0.5);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.timeline-tick.extended {
    width: 3px;
    height: 18px;
    background: #005284;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

.timeline-tick-group:hover .timeline-tick.extended {
    background: #003B54;
    box-shadow: 0 0 10px rgba(0, 59, 84, 0.6);
}

.timeline-tick-group.active .timeline-tick.extended {
    height: 22px;
    background: #003B54;
    box-shadow: 0 0 14px rgba(227, 159, 81, 0.85);
    width: 3.5px;
}

.timeline-year-label {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #003B54;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.timeline-tick-group:hover .timeline-year-label {
    color: #002238;
}

.timeline-tick-group.active .timeline-year-label {
    color: #002238;
    font-weight: 800;
    font-size: 13px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

/* SKIP TO NEXT BUTTON */
.skip-next-btn {
    position: absolute;
    bottom: 28px;
    right: 5.2%;
    z-index: 12;

    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;

    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);

    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 40px;

    color: #005284;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;

    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

    transition: all 0.35s ease;
}

.skip-next-btn:hover {
    background: #ffffff;
    color: #010714;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 35px rgba(227, 159, 81, 0.4);
}

.skip-next-btn svg {
    transition: transform 0.3s ease;
}

.skip-next-btn:hover svg {
    transform: translateY(3px);
}

@media (max-width: 992px) {
    .timeline-card {
        padding: 0 6%;
    }
    .card-content h2 {
        font-size: 32px;
    }
    .timeline-bar-container {
        right: 220px;
    }
}

@media (max-width: 768px) {
    .timeline-nav-controls {
        flex-direction: row;
        top: auto;
        bottom: 95px;
        right: 5.2%;
        transform: none;
    }
    .timeline-bar-container {
        left: 5.2%;
        right: 5.2%;
        bottom: 80px;
    }
    .skip-next-btn {
        bottom: 20px;
        right: 5.2%;
    }
    .card-content {
        max-width: 100%;
    }
    .timeline-card[data-year="1997"] .card-content-liquid-glass h2 {
        white-space: normal;
    }
}


/* =========================================================
   SPECIAL STYLING FOR 1995 SLIDE (FOUNDER PHOTO)
   - Content moved towards right side
   - Gradient overlay disabled (full clarity image on left)
========================================================= */




/* =========================================================
   SPECIAL STYLING FOR FOUNDER SLIDE (BETWEEN 1995 AND 2002)
   - Content on LEFT side
   - WITHOUT any gradient overlay or box
========================================================= */

.timeline-card[data-year="founder"] {
    justify-content: flex-start;
}

.timeline-card[data-year="founder"] .card-overlay {
    display: none !important;
}

.timeline-card[data-year="founder"] .card-bg {
    background-position: right center;
    filter: none;
}

.timeline-card[data-year="founder"] .card-content.founder-content-no-box {
    margin-left: 2%;
    margin-right: auto;
    max-width: 620px;

    /* NO BOX / CONTAINER BACKGROUND OR GRADIENT */
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
}

.timeline-card[data-year="founder"] .founder-content-no-box h2 {
    color: #005284;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
    font-size: clamp(32px, 3.6vw, 46px);
    margin-bottom: 16px;
    line-height: 1.15;
}

.timeline-card[data-year="founder"] .founder-desc {
    color: #005284;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    margin-bottom: 24px;
}

.timeline-card[data-year="founder"] .founder-badge {
    background: rgba(227, 159, 81, 0.15);
    border: 1.5px solid #E39F51;
    color: #E39F51;
    font-size: 14px;
    box-shadow: none;
}

.timeline-card[data-year="founder"] .founder-cat {
    color: #E39F51;
    font-weight: 700;
}

.timeline-card[data-year="founder"] .founder-feature {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 82, 132, 0.18);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 82, 132, 0.08);
}

.timeline-card[data-year="founder"] .founder-feature strong {
    color: #005284;
}

.timeline-card[data-year="founder"] .founder-feature span {
    color: #005284;
}

.timeline-card[data-year="founder"] .feature-icon {
    background: rgba(227, 159, 81, 0.22);
    color: #E39F51;
}


/* =========================================================
   SPECIAL STYLING FOR 1995 (DEF ESTABLISHED - VIDEO SLIDE)
   - Left-aligned content occupying 1/4 of screen
   - Clean brand blue text with NO shadow
   - No enclosing card box or dark overlay
========================================================= */

.timeline-card[data-year="1995"] {
    justify-content: flex-start;
    align-items: center;
    padding: 0 4%;
}

.timeline-card[data-year="1995"] .card-overlay {
    display: none !important;
}

.timeline-card[data-year="1995"] .card-content {
    max-width: 25vw;
    min-width: 280px;
    margin-top: 0;
    margin-left: 0;
    margin-right: auto;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    color: #005284;
}

.timeline-card[data-year="1995"] .card-header-badge {
    margin-bottom: 14px;
}

.timeline-card[data-year="1995"] .year-badge {
    background: rgba(227, 159, 81, 0.15);
    border-color: #E39F51;
    color: #E39F51;
    box-shadow: none;
    text-shadow: none;
}

.timeline-card[data-year="1995"] .card-category {
    color: #E39F51;
    font-weight: 700;
    text-shadow: none;
}

.timeline-card[data-year="1995"] .card-content h2 {
    font-size: clamp(26px, 2.3vw, 36px);
    line-height: 1.18;
    margin: 0 0 14px;
    color: #005284;
    text-shadow: none;
}

.timeline-card[data-year="1995"] .card-desc {
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.6;
    margin-bottom: 22px;
    color: #005284;
    font-weight: 500;
    text-shadow: none;
}

.timeline-card[data-year="1995"] .feature-item {
    max-width: 100%;
    padding: 11px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.timeline-card[data-year="1995"] .feature-item strong {
    color: #005284;
    font-size: 13px;
    font-weight: 600;
    text-shadow: none;
}

.timeline-card[data-year="1995"] .feature-item span {
    color: #005284;
    font-size: 12px;
    text-shadow: none;
}

.timeline-card[data-year="1995"] .feature-icon {
    background: rgba(227, 159, 81, 0.25);
    color: #E39F51;
}

@media (max-width: 900px) {
    .timeline-card[data-year="1995"] {
        padding: 0 5%;
    }
    .timeline-card[data-year="1995"] .card-content {
        max-width: 450px;
        min-width: unset;
    }
}

/* =========================================================
   SPECIAL STYLING FOR 1997, 2002, 2018, 2019, 2020 & 2026 SLIDES
   - Slide 2: images/68856.png (1997 Meerut to Colombia)
   - Slide 3: images/47474678.png (2018 Teach Peace Reach Peace)
   - Slide 4: images/3637548.png (2019 24 Schools in India + 1 in Colombia)
   - Slide 5: images/46t5464.png (2019 Padhoge Toh Badhoge & Language Classes)
   - Slide 6: images/764764.png (2020 Meditation Course & Research Group)
   - Slide 7: images/7867868.png (2026 IIT Madras & DTU Research Centres)
   - Pure Liquid Glassmorphism container
========================================================= */

.timeline-card[data-year="1997"],
.timeline-card[data-year="2002"],
.timeline-card[data-year="2018"],
.timeline-card[data-year="2019"],
.timeline-card[data-year="2020"],
.timeline-card[data-year="2026"],
.timeline-card[data-year="2022"] {
    justify-content: flex-start;
}

.timeline-card[data-year="1997"] .card-overlay,
.timeline-card[data-year="2002"] .card-overlay,
.timeline-card[data-year="2018"] .card-overlay,
.timeline-card[data-year="2019"] .card-overlay,
.timeline-card[data-year="2020"] .card-overlay,
.timeline-card[data-year="2026"] .card-overlay,
.timeline-card[data-year="2022"] .card-overlay {
    display: none !important;
}

.timeline-card[data-year="1997"] .card-bg,
.timeline-card[data-year="2002"] .card-bg,
.timeline-card[data-year="2018"] .card-bg,
.timeline-card[data-year="2019"] .card-bg,
.timeline-card[data-year="2020"] .card-bg,
.timeline-card[data-year="2026"] .card-bg,
.timeline-card[data-year="2022"] .card-bg {
    background-position: center right;
    filter: none;
}

.timeline-card[data-year="2002"] .card-bg,
.timeline-card[data-year="2018"] .card-bg,
.timeline-card[data-year="2019"] .card-bg,
.timeline-card[data-year="2020"] .card-bg,
.timeline-card[data-year="2026"] .card-bg {
    background-position: center center;
    background-size: cover;
}

.timeline-card[data-year="1997"] .card-content-liquid-glass,
.timeline-card[data-year="2002"] .card-content-liquid-glass,
.timeline-card[data-year="2018"] .card-content-liquid-glass,
.timeline-card[data-year="2019"] .card-content-liquid-glass,
.timeline-card[data-year="2020"] .card-content-liquid-glass,
.timeline-card[data-year="2026"] .card-content-liquid-glass,
.timeline-card[data-year="2022"] .card-content-liquid-glass {
    margin-left: 2%;
    margin-right: auto;
    max-width: 600px;

    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);

    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 82, 132, 0.15);
    padding: 32px 38px;
    color: #005284;
}

.timeline-card[data-year="1997"] .card-content-liquid-glass h2,
.timeline-card[data-year="2002"] .card-content-liquid-glass h2,
.timeline-card[data-year="2018"] .card-content-liquid-glass h2,
.timeline-card[data-year="2019"] .card-content-liquid-glass h2,
.timeline-card[data-year="2020"] .card-content-liquid-glass h2,
.timeline-card[data-year="2026"] .card-content-liquid-glass h2,
.timeline-card[data-year="2022"] .card-content-liquid-glass h2 {
    color: #005284;
    text-shadow: none;
    font-size: clamp(30px, 3.2vw, 42px);
    margin-bottom: 14px;
    line-height: 1.15;
}

.timeline-card[data-year="1997"] .card-content-liquid-glass {
    max-width: clamp(580px, 52vw, 760px);
}

.timeline-card[data-year="1997"] .card-content-liquid-glass h2 {
    font-size: clamp(23px, 2.4vw, 36px);
    white-space: nowrap;
}

.timeline-card[data-year="2018"] .card-content-liquid-glass h2 {
    font-size: clamp(26px, 2.8vw, 38px);
}

.timeline-card[data-year="2018"] .card-content-liquid-glass h2 .tprp-heading-line {
    display: inline-block;
    white-space: nowrap;
}

.timeline-card[data-year="2018"] .card-content-liquid-glass h2 .tprp-subtext-gold {
    color: #E39F51;
}

.timeline-card .card-content-liquid-glass .card-desc {
    color: #005284;
    text-shadow: none;
    font-weight: 500;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.65;
    margin-bottom: 20px;
}

.timeline-card[data-year="1997"] .card-content-liquid-glass .card-desc {
    margin-bottom: 0 !important;
}

.timeline-card[data-year="1997"] .year-badge,
.timeline-card[data-year="2002"] .year-badge,
.timeline-card[data-year="2018"] .year-badge,
.timeline-card[data-year="2019"] .year-badge,
.timeline-card[data-year="2020"] .year-badge,
.timeline-card[data-year="2026"] .year-badge,
.timeline-card[data-year="2022"] .year-badge {
    background: rgba(227, 159, 81, 0.15);
    border-color: #E39F51;
    color: #E39F51;
    box-shadow: none;
}

.timeline-card[data-year="1997"] .card-category,
.timeline-card[data-year="2002"] .card-category,
.timeline-card[data-year="2018"] .card-category,
.timeline-card[data-year="2019"] .card-category,
.timeline-card[data-year="2020"] .card-category,
.timeline-card[data-year="2026"] .card-category,
.timeline-card[data-year="2022"] .card-category {
    color: #E39F51;
    font-weight: 700;
}

.timeline-card[data-year="1997"] .feature-item,
.timeline-card[data-year="2002"] .feature-item,
.timeline-card[data-year="2018"] .feature-item,
.timeline-card[data-year="2019"] .feature-item,
.timeline-card[data-year="2020"] .feature-item,
.timeline-card[data-year="2026"] .feature-item,
.timeline-card[data-year="2022"] .feature-item {
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 82, 132, 0.15);
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 8px 25px rgba(0, 82, 132, 0.08);
}

.timeline-card[data-year="1997"] .feature-item strong,
.timeline-card[data-year="2002"] .feature-item strong,
.timeline-card[data-year="2018"] .feature-item strong,
.timeline-card[data-year="2019"] .feature-item strong,
.timeline-card[data-year="2020"] .feature-item strong,
.timeline-card[data-year="2026"] .feature-item strong,
.timeline-card[data-year="2022"] .feature-item strong {
    color: #005284;
}

.timeline-card[data-year="1997"] .feature-item span,
.timeline-card[data-year="2002"] .feature-item span,
.timeline-card[data-year="2018"] .feature-item span,
.timeline-card[data-year="2019"] .feature-item span,
.timeline-card[data-year="2020"] .feature-item span,
.timeline-card[data-year="2026"] .feature-item span,
.timeline-card[data-year="2022"] .feature-item span {
    color: #005284;
}

.timeline-card[data-year="1997"] .feature-icon,
.timeline-card[data-year="2002"] .feature-icon,
.timeline-card[data-year="2018"] .feature-icon,
.timeline-card[data-year="2019"] .feature-icon,
.timeline-card[data-year="2020"] .feature-icon,
.timeline-card[data-year="2026"] .feature-icon,
.timeline-card[data-year="2022"] .feature-icon {
    background: rgba(227, 159, 81, 0.22);
    color: #E39F51;
}


/* =========================================================
   DUAL GLASSMORPHIC BOXES FOR SLIDE 4 (PADHOGE TOH BADHOGE & LANGUAGE CLASSES)
========================================================= */

.timeline-card-dual {
    justify-content: flex-start !important;
    align-items: center !important;
}

.timeline-dual-boxes-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-left: 2%;
    margin-right: auto;
    max-width: 580px;
    width: 100%;
    z-index: 3;
    position: relative;
    justify-content: center;
}

.timeline-card-dual .card-content-mini {
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    padding: 18px 26px !important;
    border-radius: 20px !important;
    box-shadow: 0 14px 35px rgba(0, 82, 132, 0.13) !important;
}

.timeline-card-dual .card-content-mini .card-header-badge {
    margin-bottom: 6px !important;
    gap: 10px !important;
}

.timeline-card-dual .card-content-mini .year-badge {
    padding: 3px 12px !important;
    font-size: 13px !important;
}

.timeline-card-dual .card-content-mini .card-category {
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
}

.timeline-card-dual .card-content-mini h2 {
    font-size: clamp(20px, 2vw, 26px) !important;
    margin-bottom: 6px !important;
    line-height: 1.2 !important;
}

.timeline-card-dual .card-content-mini .card-desc {
    font-size: clamp(12.5px, 1vw, 14px) !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
}

.timeline-card-dual .card-content-mini .card-features {
    gap: 8px !important;
}

.timeline-card-dual .card-content-mini .feature-item {
    padding: 8px 18px !important;
    border-radius: 50px !important;
}

.timeline-card-dual .card-content-mini .feature-item strong {
    font-size: 12px !important;
}

.timeline-card-dual .card-content-mini .feature-item span {
    font-size: 11px !important;
}

.timeline-card.active .card-mini-top {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.15s;
}

.timeline-card.active .card-mini-bottom {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.28s;
}

.timeline-card[data-year="2020"] .timeline-dual-boxes-container {
    gap: 16px;
    max-width: 600px;
}

.timeline-card[data-year="2020"] .card-content-mini {
    padding: 22px 28px !important;
    text-decoration: none !important;
    display: block !important;
    color: inherit !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease !important;
}

.timeline-card[data-year="2020"] .card-content-mini:hover {
    transform: translateY(-3px) scale(1.01) !important;
    box-shadow: 0 18px 45px rgba(0, 82, 132, 0.2) !important;
    background: rgba(255, 255, 255, 0.65) !important;
}

.timeline-card[data-year="2020"] .card-header-badge {
    margin-bottom: 8px !important;
}

.timeline-card[data-year="2020"] .year-badge {
    padding: 4px 16px !important;
    font-size: 13.5px !important;
}

.timeline-card[data-year="2020"] .card-content-mini h2 {
    font-size: clamp(20px, 1.9vw, 24px) !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
    color: #005284 !important;
}

.timeline-card[data-year="2020"] .card-content-mini .card-desc {
    margin-bottom: 0 !important;
    font-size: clamp(13px, 1.05vw, 14.5px) !important;
    line-height: 1.55 !important;
    color: #005284 !important;
}

.timeline-card[data-year="2026"] .timeline-dual-boxes-container {
    gap: 16px;
    max-width: 600px;
}

.timeline-card[data-year="2026"] .card-content-mini {
    padding: 22px 28px !important;
}

.timeline-card[data-year="2026"] .card-header-badge {
    margin-bottom: 8px !important;
}

.timeline-card[data-year="2026"] .year-badge {
    padding: 4px 16px !important;
    font-size: 13.5px !important;
}

.timeline-card[data-year="2026"] .card-content-mini h2 {
    font-size: clamp(20px, 1.9vw, 24px) !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
}



/* =========================================================
   SECTION 3: 3D ROTATING NEURON BRAIN
========================================================= */

.impact {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    overflow: hidden;
    background: #010714;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.space-universe-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.neuron-brain-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: default;
}

.brain-center-overlay {
    position: absolute;
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
    max-width: 680px;
    padding: 0 20px;
}

.brain-badge {
    display: inline-block;
    padding: 6px 22px;
    background: rgba(227, 159, 81, 0.16);
    border: 1.5px solid rgba(227, 159, 81, 0.65);
    border-radius: 30px;
    color: #E39F51;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(227, 159, 81, 0.25);
}

.brain-center-overlay h2 {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(227, 159, 81, 0.35);
}

.brain-center-overlay p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}


/* =========================================================
   SLIDE 3: MEDITATION RESEARCH (LEFT TEXT, RIGHT IMAGE, CENTER 3D BRAIN)
========================================================= */

.impact-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1560px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    box-sizing: border-box;
    pointer-events: none;
}

.impact-left-text.clean-text-only {
    max-width: 380px;
    pointer-events: auto;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    margin-left: 1.5%;
}

.impact-left-text.clean-text-only h2 {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: clamp(34px, 3.6vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 25px rgba(227, 159, 81, 0.35);
}

.impact-left-text.clean-text-only .impact-subheading {
    font-size: clamp(16px, 1.3vw, 20px);
    font-weight: 600;
    color: #E39F51;
    line-height: 1.55;
    letter-spacing: 0.5px;
    margin: 0;
    text-shadow: 0 2px 14px rgba(227, 159, 81, 0.5);
}

.impact-right-image-card.raw-image-only {
    max-width: 380px;
    width: 100%;
    pointer-events: auto;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    margin-right: 1.5%;
}

.impact-right-image-card.raw-image-only img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: transparent;
    border: none;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.6));
}

@media (max-width: 992px) {
    .impact-content-wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding-top: 80px;
    }
    .impact-left-text.clean-text-only, 
    .impact-right-image-card.raw-image-only {
        max-width: 100%;
        margin: 0;
        text-align: center;
    }
}


/* =========================================================
   GLOBAL FLUID GLASS CURSOR SYSTEM
========================================================= */

.fluid-glass-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    margin-top: -32px;
    margin-left: -32px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                margin 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.3s ease;
    opacity: 0;
}

.fluid-glass-cursor.active {
    opacity: 1;
}

.fluid-glass-inner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px) saturate(170%) brightness(1.14) contrast(1.08);
    -webkit-backdrop-filter: blur(6px) saturate(170%) brightness(1.14) contrast(1.08);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 16px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(227, 159, 81, 0.25);
    transition: all 0.3s ease;
    overflow: hidden;
}

.fluid-glass-specular {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 42%;
    height: 36%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    transform: rotate(-30deg);
}

.fluid-glass-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    margin-left: -3px;
    background: #E39F51;
    border-radius: 50%;
    box-shadow: 0 0 10px #E39F51, 0 0 20px #E39F51;
    transition: transform 0.25s ease, background 0.25s ease;
}

/* Hover States for Interactive Elements */
.fluid-glass-cursor.hover-interactive {
    width: 96px;
    height: 96px;
    margin-top: -48px;
    margin-left: -48px;
}

.fluid-glass-cursor.hover-interactive .fluid-glass-inner {
    background: rgba(227, 159, 81, 0.14);
    border-color: rgba(227, 159, 81, 0.88);
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.4),
        inset 0 0 24px rgba(227, 159, 81, 0.55),
        0 0 35px rgba(227, 159, 81, 0.45);
    backdrop-filter: blur(9px) saturate(190%) brightness(1.28);
    -webkit-backdrop-filter: blur(9px) saturate(190%) brightness(1.28);
}

.fluid-glass-cursor.hover-interactive .fluid-glass-dot {
    transform: scale(1.8);
    background: #ffffff;
    box-shadow: 0 0 15px #ffffff, 0 0 25px #E39F51;
}

/* Fluid Liquid Trail Micro-Particles */
.fluid-trail-particle {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 159, 81, 0.6) 0%, rgba(57, 180, 240, 0.4) 50%, rgba(255, 255, 255, 0) 70%);
    box-shadow: 0 0 12px rgba(227, 159, 81, 0.4);
    z-index: 99998;
    will-change: transform, opacity;
    animation: fluidParticleFade 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fluidParticleFade {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 0.75;
    }
    100% {
        transform: scale(2.4) translate3d(0, 10px, 0);
        opacity: 0;
    }
}


/* =========================================
   HERO ORBIT EFFECT
   ========================================= */

.hero-orbit {
    position: absolute;
    width: 700px;
    height: 520px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

/* ORBIT RINGS */
.orbit-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(227, 159, 81, 0.28);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
}

/* Large outer orbit */
.orbit-ring-1 {
    width: 680px;
    height: 430px;
}

/* Medium orbit */
.orbit-ring-2 {
    width: 560px;
    height: 350px;
    border-color: rgba(227, 159, 81, 0.20);
}

/* Small inner orbit */
.orbit-ring-3 {
    width: 410px;
    height: 260px;
    border-color: rgba(227, 159, 81, 0.16);
}


/* =========================================
   ORBIT DOTS
   ========================================= */

.orbit-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #E39F51;

    box-shadow:
        0 0 6px rgba(227, 159, 81, 0.9),
        0 0 18px rgba(227, 159, 81, 0.65),
        0 0 35px rgba(227, 159, 81, 0.35);

    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Dot 1 */
.orbit-dot-1 {
    left: 50%;
    top: 50%;
    animation: orbitOne 9s linear infinite;
}

/* Dot 2 */
.orbit-dot-2 {
    left: 50%;
    top: 50%;
    animation: orbitTwo 13s linear infinite;
    animation-delay: -4s;
}

/* Dot 3 */
.orbit-dot-3 {
    left: 50%;
    top: 50%;
    animation: orbitThree 17s linear infinite;
    animation-delay: -8s;
}


/* =========================================
   ORBIT ANIMATIONS
   ========================================= */

@keyframes orbitOne {
    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg)
            translateX(340px)
            scale(1);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg)
            translateX(340px)
            scale(1);
    }
}

@keyframes orbitTwo {
    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg)
            translateX(280px)
            scale(0.85);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg)
            translateX(280px)
            scale(0.85);
    }
}

@keyframes orbitThree {
    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg)
            translateX(205px)
            scale(0.7);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg)
            translateX(205px)
            scale(0.7);
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {
    .hero-orbit {
        width: 430px;
        height: 350px;
    }

    .orbit-ring-1 {
        width: 430px;
        height: 280px;
    }

    .orbit-ring-2 {
        width: 350px;
        height: 230px;
    }

    .orbit-ring-3 {
        width: 270px;
        height: 175px;
    }

    @keyframes orbitOne {
        from {
            transform:
                translate(-50%, -50%)
                rotate(0deg)
                translateX(215px);
        }
        to {
            transform:
                translate(-50%, -50%)
                rotate(360deg)
                translateX(215px);
        }
    }

    @keyframes orbitTwo {
        from {
            transform:
                translate(-50%, -50%)
                rotate(0deg)
                translateX(175px);
        }
        to {
            transform:
                translate(-50%, -50%)
                rotate(360deg)
                translateX(175px);
        }
    }

    @keyframes orbitThree {
        from {
            transform:
                translate(-50%, -50%)
                rotate(0deg)
                translateX(135px);
        }
        to {
            transform:
                translate(-50%, -50%)
                rotate(360deg)
                translateX(135px);
        }
    }
}


/* =========================================================
   SIX EXPRESSIONS / INITIATIVES SECTION (SLIDE 3)
========================================================= */

.initiatives {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    overflow: hidden;

    background: #f5f2e9;

    display: flex;
    align-items: center;

    color: #005284;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.initiatives-wrapper {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 60px 5.2%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


/* =========================================================
   LEFT INTRO CONTENT
========================================================= */

.initiatives-intro {
    width: 30%;
    max-width: 390px;

    flex-shrink: 0;

    position: relative;
    z-index: 5;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.initiatives-intro.expression-hidden {
    opacity: 0;
    transform: translateX(-40px);
}

.initiatives-intro.expression-visible {
    opacity: 1;
    transform: translateX(0);
}


.section-eyebrow {
    display: block;

    margin-bottom: 15px;

    font-family:
        'Glacial Indifference',
        'Poppins',
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #E39F51;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.initiatives-intro h2 {
    margin: 0 0 22px;

    font-family:
        'Glacial Indifference',
        'Poppins',
        sans-serif;

    font-size: clamp(32px, 3.2vw, 48px);

    line-height: 1.05;

    font-weight: 600;

    letter-spacing: -1px;

    color: #005284;
}

.initiatives-intro h2 span {
    color: #E39F51;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.initiatives-intro p {
    max-width: 340px;

    margin: 0 0 25px;

    font-family:
        'Poppins',
        Arial,
        sans-serif;

    font-size: 12px;

    line-height: 1.7;

    color: #5d6b76;
}


/* =========================================================
   EXPLORE LINK
========================================================= */

.explore-initiatives {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    font-family:
        'Glacial Indifference',
        'Poppins',
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    color: #005284;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.explore-initiatives span {
    font-size: 17px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}

.explore-initiatives:hover {
    color: #E39F51;

    gap: 14px;
}

.explore-initiatives:hover span {
    transform: translateX(4px);
}


/* =========================================================
   EXPRESSIONS TRACK
========================================================= */

.expressions-track {
    position: relative;

    width: 68%;

    min-height: 430px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;
}


/* =========================================================
   CONNECTING CURVE / LINE
========================================================= */

.expressions-track::before {
    content: "";

    position: absolute;

    left: 25px;
    right: 25px;

    top: 50%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(227, 159, 81, 0),
            rgba(227, 159, 81, 0.45),
            rgba(227, 159, 81, 0.25),
            rgba(227, 159, 81, 0.45),
            rgba(227, 159, 81, 0)
        );

    transform: rotate(-7deg);

    transform-origin: center;

    z-index: 0;
}


/* =========================================================
   EXPRESSION CARD
========================================================= */

.expression-card {
    position: relative;

    width: 15%;

    min-width: 125px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    z-index: 2;

    text-decoration: none;

    color: inherit;

    cursor: pointer;

    transition:
        transform 0.45s ease,
        opacity 0.6s ease;
}

.expression-card.expression-hidden {
    opacity: 0;
}

.expression-card.expression-visible {
    opacity: 1;
}

/* =========================================================
   INITIATIVE FLOATING CURSOR CAPSULE PILL ("VISIT NOW")
========================================================= */
.initiative-cursor-pill {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100005;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px 7px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 82, 132, 0.94) 0%, rgba(0, 82, 132, 0.94) 50%, rgba(0, 82, 132, 0.96) 100%);
    backdrop-filter: blur(16px) saturate(190%);
    -webkit-backdrop-filter: blur(16px) saturate(190%);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    box-shadow: 
        0 10px 28px rgba(0, 82, 132, 0.45),
        0 2px 8px rgba(227, 159, 81, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transform: translate(-50%, -140%) scale(0.65);
    transition: 
        opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.3s ease,
        border-color 0.3s ease;
    will-change: transform, opacity, left, top;
}

.initiative-cursor-pill.active {
    opacity: 1;
    transform: translate(-50%, -140%) scale(1);
}

.initiative-cursor-pill.linked {
    background: linear-gradient(135deg, rgba(227, 159, 81, 0.95) 0%, rgba(227, 159, 81, 0.96) 100%);
    color: #041b36;
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 12px 30px rgba(227, 159, 81, 0.5),
        0 2px 10px rgba(0, 82, 132, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.95);
}

.initiative-pill-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.initiative-cursor-pill.active .initiative-pill-arrow {
    transform: translateX(2px);
}

body.has-initiative-hover #fluid-glass-cursor {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(0.6) !important;
}


/* =========================================================
   ALTERNATING CARD POSITIONS
========================================================= */

.expression-1 {
    transform: translateY(35px);
}

.expression-2 {
    transform: translateY(-75px);
}

.expression-3 {
    transform: translateY(20px);
}

.expression-4 {
    transform: translateY(-65px);
}

.expression-5 {
    transform: translateY(25px);
}

.expression-6 {
    transform: translateY(-45px);
}

.expression-card.expression-hidden.expression-1 { transform: translateY(65px); }
.expression-card.expression-hidden.expression-2 { transform: translateY(-105px); }
.expression-card.expression-hidden.expression-3 { transform: translateY(50px); }
.expression-card.expression-hidden.expression-4 { transform: translateY(-95px); }
.expression-card.expression-hidden.expression-5 { transform: translateY(55px); }
.expression-card.expression-hidden.expression-6 { transform: translateY(-75px); }


/* =========================================================
   IMAGE CIRCLE
========================================================= */

.expression-image {
    position: relative;

    width: 78px;
    height: 78px;

    border-radius: 50%;

    overflow: hidden;

    background: #d7d3c8;

    border: 3px solid
        rgba(255, 255, 255, 0.85);

    box-shadow:
        0 8px 25px
        rgba(31, 51, 68, 0.16);

    margin-bottom: 12px;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.expression-image::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.20),
            transparent 55%
        );

    pointer-events: none;
}

.expression-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


/* =========================================================
   HOVER IMAGE
========================================================= */

.expression-card:hover {
    transform:
        translateY(-10px)
        scale(1.04);
}

.expression-card:hover .expression-image {
    transform: scale(1.08);

    box-shadow:
        0 14px 35px
        rgba(31, 51, 68, 0.25);
}

.expression-card:hover .expression-image img {
    transform: scale(1.08);
}


/* =========================================================
   NUMBER
========================================================= */

.expression-number {
    position: absolute;

    top: 0;
    right: calc(50% - 55px);

    width: 20px;
    height: 20px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #005284;

    color: #ffffff;

    font-family:
        'Poppins',
        Arial,
        sans-serif;

    font-size: 7px;

    font-weight: 700;

    z-index: 5;

    box-shadow:
        0 3px 10px
        rgba(22, 59, 97, 0.25);
}


/* =========================================================
   CARD TITLE
========================================================= */

.expression-card h3 {
    margin: 0 0 5px;

    font-family:
        'Glacial Indifference',
        'Poppins',
        sans-serif;

    font-size: 13px;

    line-height: 1.15;

    font-weight: 700;

    color: #005284;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.expression-card p {
    margin: 0;

    max-width: 135px;

    font-family:
        'Poppins',
        Arial,
        sans-serif;

    font-size: 8px;

    line-height: 1.5;

    color: #6d777c;
}


/* =========================================================
   RESPONSIVE — 1200px
========================================================= */

@media (max-width: 1200px) {

    .initiatives-wrapper {
        gap: 30px;
    }

    .initiatives-intro {
        width: 28%;
    }

    .expressions-track {
        width: 72%;
    }
}

@media (max-width: 992px) {
    .initiatives-wrapper {
        flex-direction: column;
        justify-content: center;
        padding-top: 80px;
    }
    .initiatives-intro, .expressions-track {
        width: 100%;
        max-width: 100%;
    }
    .expressions-track {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .expression-card {
        width: 28%;
        transform: none !important;
    }
}


/* =========================================================
   ENHANCED TYPOGRAPHY & GLOBAL STYLES
========================================================= */
body {
    font-family: 'Outfit', 'Plus Jakarta Sans', 'Poppins', sans-serif;
}


/* =========================================================
   SLIDE 4: INITIATIVES & SIX EXPRESSIONS WIREFRAME DASHBOARD
========================================================= */

.initiatives-slide-four {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 86px 4% 22px;
    background-image: url('../images/slide4_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #005284;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    overflow: hidden;
    box-sizing: border-box;
}

/* Main Content Wrapper (Free of outer bounding box) */
.slide-four-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1260px;
    height: 100%;
    max-height: calc(100vh - 100px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* ---------------------------------------------------------
   TOPBAR: 4 Nav Pills (Left)
--------------------------------------------------------- */
.slide-four-topbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 12px;
    gap: 16px;
    flex-shrink: 0;
}

/* 4 Nav Pills Container */
.topbar-pills-group {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.78);
    padding: 5px 7px;
    border-radius: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 6px 22px rgba(0, 82, 132, 0.10);
}

.nav-pill-btn {
    background: transparent;
    color: #005284;
    border: none;
    outline: none;
    padding: 7px 20px;
    border-radius: 20px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-pill-btn:not(.active) {
    color: #334155;
    opacity: 0.85;
}

.nav-pill-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #005284;
    transform: translateY(-1px);
    opacity: 1;
}

.nav-pill-btn.active {
    background: #005284;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 82, 132, 0.28);
}

/* ---------------------------------------------------------
   MAIN GRID (LEFT COLUMN + RIGHT SLATE PANEL)
--------------------------------------------------------- */
.slide-four-grid {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 12px;
    align-items: stretch;
}

/* ---------------------------------------------------------
   LEFT COLUMN (TOP-ALIGNED SHELF + TESTIMONIAL BLOCK)
--------------------------------------------------------- */
.slide-left-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    gap: 14px;
}

/* ---------------------------------------------------------
   TOP 3-BOX SHELF (Top Aligned with Right Panel)
--------------------------------------------------------- */
.slide-shelf-container {
    position: relative;
    margin: 0;
    padding-right: 12px;
    z-index: 10;
}

.image-boxes-row {
    display: flex;
    gap: 16px;
    margin: 0;
}

/* Individual Image Slot Box */
.image-slot-box {
    flex: 1;
    min-width: 0;
}

.image-slot-wrapper {
    position: relative;
    aspect-ratio: 16 / 11;
    max-height: 175px;
    min-height: 100px;
    width: 100%;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.95);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 82, 132, 0.12);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-slot-box:hover .image-slot-wrapper {
    transform: translateY(-4px) scale(1.02);
    border-color: #E39F51;
    box-shadow:
        0 16px 32px rgba(0, 82, 132, 0.18),
        0 0 20px rgba(245, 158, 11, 0.3);
}

/* Image styling */
.slot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.image-slot-box:hover .slot-image {
    transform: scale(1.08);
}

.slot-image.img-fallback {
    display: none;
}

/* Placeholder UI if image fails or before image is placed */
.slot-placeholder-ui {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    padding: 8px;
}

.slot-image.img-fallback + .slot-placeholder-ui {
    display: flex;
}

/* Hover overlay banner */
.slot-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 10px 8px;
    background: linear-gradient(to top, rgba(0, 82, 132, 0.92) 0%, transparent 100%);
    color: #ffffff;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.image-slot-box:hover .slot-hover-overlay {
    opacity: 1;
    transform: translateY(0);
}

.slot-badge {
    font-size: 8.5px;
    font-weight: 800;
    background: #E39F51;
    color: #005284;
    padding: 2px 5px;
    border-radius: 3px;
}

.slot-hover-overlay h4 {
    font-size: 10.5px;
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------------------------------------------------------
   SHELF ROTATION CONTROLS (Dots + Next/Prev Arrows)
--------------------------------------------------------- */
.shelf-rotation-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 4px;
}

.shelf-dots-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shelf-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 82, 132, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.shelf-dot:hover {
    background: rgba(0, 82, 132, 0.5);
    transform: scale(1.2);
}

.shelf-dot.active {
    width: 24px;
    border-radius: 6px;
    background: #005284;
    box-shadow: 0 2px 8px rgba(0, 82, 132, 0.3);
}

.shelf-nav-arrows {
    display: flex;
    align-items: center;
    gap: 6px;
}

.shelf-arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.85);
    color: #005284;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 82, 132, 0.1);
    transition: all 0.25s ease;
    padding: 0;
}

.shelf-arrow-btn:hover {
    background: #005284;
    color: #ffffff;
    border-color: #005284;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 82, 132, 0.25);
}

/* ---------------------------------------------------------
   BOTTOM TESTIMONIAL TEXT BLOCK (JOINED FLUSH WITH BIG FRAME)
--------------------------------------------------------- */
.slide-testimonial-block {
    margin-top: auto;
    margin-right: -6px;
    background: rgba(255, 251, 240, 0.94);
    border: 2px solid rgba(227, 159, 81, 0.55);
    border-radius: 20px 6px 6px 20px;
    padding: 22px 26px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 14px 40px rgba(227, 159, 81, 0.28);
    position: relative;
    z-index: 10;
    transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slide-testimonial-block:hover {
    box-shadow: 0 18px 45px rgba(0, 82, 132, 0.18);
}

/* Speech Pointer Tab connecting directly to the Big Portrait Frame */
.testimonial-speech-pointer {
    position: absolute;
    top: 50%;
    right: -13px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 13px solid rgba(255, 251, 240, 0.94);
    z-index: 15;
    transition: border-left-color 0.4s ease;
    pointer-events: none;
    filter: drop-shadow(3px 0 2px rgba(0, 82, 132, 0.10));
}

.testimonial-quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #E39F51;
    background: rgba(227, 159, 81, 0.16);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.slide-testimonial-quote-scroll {
    max-height: 125px;
    overflow-y: auto;
    padding-right: 6px;
    margin-bottom: 12px;
}

.slide-testimonial-quote-scroll::-webkit-scrollbar {
    width: 4px;
}

.slide-testimonial-quote-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 82, 132, 0.2);
    border-radius: 4px;
}

.slide-testimonial-quote {
    font-size: clamp(13px, 1.25vw, 15px);
    line-height: 1.6;
    color: #005284;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    letter-spacing: 0.1px;
    transition: color 0.4s ease, opacity 0.35s ease, transform 0.35s ease;
}

.slide-testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid rgba(0, 82, 132, 0.12);
    padding-top: 10px;
    transition: opacity 0.35s ease;
}

.testimonial-author-name {
    font-size: 14px;
    font-weight: 800;
    color: #005284;
    letter-spacing: 0.2px;
    transition: color 0.4s ease;
}

.testimonial-author-role {
    font-size: 12px;
    font-weight: 600;
    color: #E39F51;
    line-height: 1.35;
    transition: color 0.4s ease;
}

/* ---------------------------------------------------------
   RIGHT COLUMN PANEL (Featured Big Box with Bottom Gradient)
--------------------------------------------------------- */
.slide-right-panel {
    position: relative;
    background: #005284;
    border: 2px solid rgba(227, 159, 81, 0.55);
    border-radius: 6px 24px 24px 6px;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow:
        0 20px 50px rgba(0, 82, 132, 0.22),
        0 0 28px rgba(227, 159, 81, 0.28);
    overflow: hidden;
    box-sizing: border-box;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 5;
}

/* Featured Delegate Image Container */
.featured-delegate-image-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 22px;
}

.featured-delegate-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Bottom-left subtle gradient overlay */
.featured-delegate-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 70px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0) 100%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    box-sizing: border-box;
}

.featured-delegate-caption {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.featured-caption-name {
    font-size: clamp(18px, 1.7vw, 24px);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
}

.featured-caption-role {
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 600;
    color: #E39F51;
    margin: 0;
    line-height: 1.35;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* Fade transitions for dynamic update */
.anim-fade-out {
    opacity: 0 !important;
    transform: translateY(6px);
}

.anim-fade-in {
    opacity: 1 !important;
    transform: translateY(0);
}

/* ---------------------------------------------------------
   RESPONSIVENESS (Slide 4)
--------------------------------------------------------- */
@media (max-width: 1024px) {
    .initiatives-slide-four {
        height: auto;
        min-height: 100vh;
        max-height: none;
        overflow-y: auto;
        padding: 90px 4% 40px;
    }

    .slide-four-content-wrapper {
        max-height: none;
        height: auto;
    }

    .slide-four-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .slide-right-panel {
        min-height: 240px;
    }

    .panel-floating-badge.badge-top {
        margin-top: 10px;
    }

    .panel-floating-badge.badge-bottom {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .slide-four-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .topbar-pills-group {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .image-boxes-row {
        gap: 8px;
    }

    .slide-testimonial-block {
        padding: 18px 20px;
    }

    .slide-testimonial-quote {
        font-size: 13px;
        line-height: 1.55;
    }
}

/* =========================================================
   SIX EXPRESSIONS / INITIATIVES SECTION (SLIDE 3)
========================================================= */

/* =========================================================
   SIX EXPRESSIONS / INITIATIVES SECTION (SLIDE 3)
========================================================= */

.initiatives {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    background-image: url('../images/25463637.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005284;
    box-sizing: border-box;
}

/* =========================================================
   MAIN WRAPPER (CENTERED LAYOUT)
========================================================= */

.initiatives-wrapper.centered-layout {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 85px 4% 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    height: 100%;
    box-sizing: border-box;
}

/* =========================================================
   CENTERED TITLE
========================================================= */

.initiatives-header {
    text-align: center;
    width: 100%;
    z-index: 5;
    margin-bottom: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.initiatives-title {
    margin: 0 auto;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(34px, 3.4vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.6px;
    font-weight: 700;
    color: #005284;
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.95), 0 2px 8px rgba(255, 255, 255, 0.9);
}

.initiatives-title span {
    display: inline-block;
    color: #E39F51;
    font-family: 'Fraunces', Georgia, serif;
    margin-left: 8px;
}

/* =========================================================
   EXPRESSIONS FULL-WIDTH TRACK & SIGMOID WAVE
========================================================= */

.expressions-track.full-width-track {
    position: relative;
    width: 100%;
    max-width: 1500px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 auto;
}

/* SVG Sigmoid Wave Background */
.expressions-wave-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

/* Remove old straight pseudo line */
.expressions-track::before {
    display: none;
}

/* =========================================================
   EXPRESSION CARD (HIGH QUALITY RESPONSIVE UI)
========================================================= */

.expression-card {
    position: relative;
    flex: 1;
    max-width: 225px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 5;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}

/* =========================================================
   ALTERNATING SIGMOID POSITIONS (ALIGNED WITH WAVE CRESTS & TROUGHS)
========================================================= */

.expression-1 { transform: translateY(85px); }
.expression-2 { transform: translateY(-85px); }
.expression-3 { transform: translateY(85px); }
.expression-4 { transform: translateY(-85px); }
.expression-5 { transform: translateY(85px); }
.expression-6 { transform: translateY(-85px); }

/* Animation Reveal Classes */
.expression-hidden {
    opacity: 0;
    filter: blur(4px);
}

.expression-visible {
    opacity: 1 !important;
    filter: blur(0px) !important;
}

/* =========================================================
   IMAGE WRAPPER & BLURRY ROAMING ORBIT DOT
========================================================= */

.expression-image-wrap {
    position: relative;
    width: 168px;
    height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    z-index: 6;
}

.expression-orbit-ring {
    display: none !important;
}

.expression-orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 
        0 0 12px 4px rgba(255, 230, 150, 0.95),
        0 0 24px 8px rgba(227, 159, 81, 0.65),
        0 0 35px 12px rgba(227, 159, 81, 0.4);
    filter: blur(0.8px);
    top: 50%;
    left: 50%;
    margin: -5px 0 0 -5px;
    animation: cardDotSpin 9s linear infinite;
    pointer-events: none;
}

.expression-2 .expression-orbit-dot { animation-duration: 7.5s; animation-direction: reverse; }
.expression-4 .expression-orbit-dot { animation-duration: 8.5s; animation-direction: reverse; }
.expression-6 .expression-orbit-dot { animation-duration: 8s; animation-direction: reverse; }

@keyframes cardDotSpin {
    from { transform: rotate(0deg) translate(90px) rotate(0deg); }
    to   { transform: rotate(360deg) translate(90px) rotate(-360deg); }
}

.expression-image {
    position: relative;
    width: 152px;
    height: 152px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    border: 4px solid rgba(255, 255, 255, 0.96);
    box-shadow: 
        0 14px 35px rgba(0, 82, 132, 0.18),
        0 0 22px rgba(227, 159, 81, 0.35);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease;
    z-index: 6;
}

.expression-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 55%);
    pointer-events: none;
}

.expression-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effect & Piano Audio Glow */
.expression-card:hover,
.expression-card.piano-active,
.expression-card.wave-piano-pulse {
    transform: translateY(-6px) scale(1.04);
}

.expression-card:hover .expression-image,
.expression-card.piano-active .expression-image,
.expression-card.wave-piano-pulse .expression-image {
    transform: scale(1.08);
    box-shadow: 0 18px 40px rgba(0, 82, 132, 0.26), 0 0 28px rgba(227, 159, 81, 0.7);
}

.expression-card:hover .expression-image img,
.expression-card.piano-active .expression-image img,
.expression-card.wave-piano-pulse .expression-image img {
    transform: scale(1.08);
}

/* =========================================================
   NUMBER BADGE (HIDDEN PER USER REQUEST)
========================================================= */

.expression-number {
    display: none !important;
}

/* =========================================================
   CARD TYPOGRAPHY (HIGH CONTRAST & VISIBILITY)
========================================================= */

.expression-card h3 {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.22;
    font-weight: 700;
    color: #005284;
    max-width: 190px;
    text-shadow: 0 0 14px #ffffff, 0 1px 4px #ffffff;
}

.expression-card p {
    position: relative;
    z-index: 10;
    margin: 5px auto 0;
    max-width: 180px;
    font-family: 'Glacial Indifference', 'Poppins', Arial, sans-serif;
    font-size: 13.5px;
    line-height: 1.35;
    color: #005284;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.95), 0 1px 3px rgba(255, 255, 255, 0.95);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
    .initiatives-wrapper.centered-layout {
        padding: 80px 3% 30px;
        gap: 15px;
    }
    .expressions-track.full-width-track {
        min-height: 460px;
        gap: 10px;
    }
    .expression-card {
        min-width: 125px;
    }
    .expression-image-wrap {
        width: 110px;
        height: 110px;
    }
    .expression-image {
        width: 100px;
        height: 100px;
    }
    .expression-card h3 {
        font-size: 16px;
    }
    .expression-card p {
        font-size: 12px;
    }
}

/* =========================================================
   SECTION 4: STANDALONE FOUNDER SLIDE
========================================================= */

.founder-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: transparent;
}

.founder-slide-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/77447467.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.founder-portrait-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    height: clamp(520px, 86vh, 850px);
    max-height: calc(100vh - 65px);
    max-width: 46vw;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.founder-portrait-img {
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 15px 35px rgba(0, 82, 132, 0.12));
}

.founder-slide-overlay {
    display: none;
}

.founder-slide-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: calc(100vw - min(46vw, clamp(520px, 86vh, 850px) * 0.968));
    margin-left: 0;
    margin-right: auto;
    padding: clamp(90px, 12vh, 135px) clamp(20px, 3vw, 40px) 35px clamp(20px, 4vw, 60px);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.founder-slide-content {
    max-width: 660px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 5;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.founder-top-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

/* Category Navigation Pill Bar (Solid Gold Accented Theme) */
.founder-category-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 8px;
    background: #ffffff;
    border: 1.5px solid #E39F51;
    border-radius: 30px;
    box-shadow: 0 4px 18px rgba(0, 82, 132, 0.08), 0 2px 8px rgba(227, 159, 81, 0.15);
    margin: 0 auto;
}

.founder-tab-btn {
    padding: 7px 16px;
    border-radius: 22px;
    border: 1px solid transparent;
    background: transparent;
    color: #005284;
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    white-space: nowrap;
}

.founder-tab-btn:hover {
    color: #E39F51;
    background: rgba(227, 159, 81, 0.12);
}

.founder-tab-btn.active {
    background: #E39F51;
    border: 1px solid #E39F51;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(227, 159, 81, 0.4);
}

/* Bottom Action Bar for More Info Button */
.founder-bottom-nav {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.founder-explore-full-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #E39F51;
    border: 1.5px solid #E39F51;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 6px 20px rgba(227, 159, 81, 0.35);
}

.founder-explore-full-btn:hover {
    background: #005284;
    border-color: #005284;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 82, 132, 0.35);
}

.founder-explore-full-btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.25s ease;
}

.founder-explore-full-btn:hover svg {
    transform: translateX(4px);
}

.founder-slide-content h2 {
    color: #005284;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(28px, 3.2vw, 42px);
    margin: 0 auto 8px;
    line-height: 1.18;
    font-weight: 700;
    text-align: center;
}

.founder-designation-text {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 700;
    color: #E39F51;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 0 auto 20px;
    text-align: center;
    padding: 0;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Tab Panels */
.founder-tab-panels {
    position: relative;
    min-height: 290px;
    width: 100%;
}

.founder-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.founder-tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.founder-panel-title {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #E39F51;
    margin: 0 auto 10px;
    text-align: center;
}

.founder-slide-desc {
    color: #005284;
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.15vw, 16px);
    line-height: 1.65;
    margin: 0 auto 14px;
    text-align: center;
    max-width: 640px;
}

.founder-slide .founder-badge {
    background: rgba(227, 159, 81, 0.15);
    border: 1.5px solid #E39F51;
    color: #E39F51;
    font-size: 13px;
    box-shadow: none;
}

.founder-slide .founder-cat {
    color: #E39F51;
    font-weight: 700;
    font-size: 11px;
}

.founder-slide .founder-feature {
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 82, 132, 0.18);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 82, 132, 0.08);
}

.founder-slide .founder-feature strong {
    color: #005284;
}

.founder-slide .founder-feature span {
    color: #005284;
}

.founder-slide .feature-icon {
    background: rgba(227, 159, 81, 0.22);
    color: #E39F51;
}

/* Scrollable List for Keynotes & Awards */
.founder-scrollable-list {
    max-height: 275px;
    overflow-y: auto;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.founder-scrollable-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
    width: 0;
    height: 0;
}

.founder-info-card {
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 82, 132, 0.14);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 4px 16px rgba(0, 82, 132, 0.05);
}

.info-card-header {
    margin-bottom: 10px;
}

.info-tag {
    display: inline-block;
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: none;
    color: #005284;
    background: none !important;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.founder-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.founder-bullet-list li {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.45;
    color: #005284;
    position: relative;
    padding-left: 16px;
}

.founder-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #E39F51;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
}

.founder-card-p {
    margin: 0;
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #005284;
}

/* Books Grid */
.founder-books-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.founder-book-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid #E39F51;
    border-radius: 30px;
    padding: 10px 18px;
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #005284;
    box-shadow: 0 4px 16px rgba(0, 82, 132, 0.06), 0 2px 8px rgba(227, 159, 81, 0.15);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.founder-book-pill:hover {
    transform: translateY(-2px);
    background: #ffffff;
    border-color: #005284;
    box-shadow: 0 8px 24px rgba(0, 82, 132, 0.15);
}

.book-icon {
    font-size: 16px;
}

@media (max-width: 1024px) {
    .founder-portrait-wrap {
        max-width: 42vw;
        height: clamp(440px, 72vh, 620px);
    }
    .founder-slide-content {
        max-width: 52vw;
    }
}

@media (max-width: 900px) {
    .founder-top-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .founder-books-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .founder-slide {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        display: block;
    }
    .founder-slide-container {
        padding: 85px 16px 40px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .founder-portrait-wrap {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        max-width: 85%;
        height: 320px;
        margin: 0 auto 20px;
        justify-content: center;
    }
    .founder-portrait-img {
        object-position: center bottom;
    }
    .founder-slide-content {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* =========================================================
   SECTION 7: NEWS & MEDIA COVERAGE SLIDE
========================================================= */

.news-slide {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 80px 5% 30px;
    background-image: url('../images/slide4_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.news-slide-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    height: 100%;
    max-height: calc(100vh - 110px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.news-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.news-main-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 700;
    color: #005284;
    margin: 0 0 2px;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

.news-subtitle {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: clamp(13px, 1.05vw, 15px);
    font-weight: 500;
    color: #005284;
    margin: 0;
    max-width: 600px;
}

/* 4 News Cards Grid */
.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.news-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    border-radius: 18px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.news-card-link:hover {
    transform: translateY(-5px);
}

.news-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 82, 132, 0.10);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.news-card-link:hover .news-card {
    border-color: rgba(227, 159, 81, 0.6);
    box-shadow: 0 16px 36px rgba(0, 82, 132, 0.16), 0 0 18px rgba(227, 159, 81, 0.2);
}

.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #e2e8f0;
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card-link:hover .news-card-img {
    transform: scale(1.06);
}

.news-source-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 82, 132, 0.88);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.news-card-body {
    padding: 14px 16px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    gap: 8px;
}

.news-headline {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(13px, 1.02vw, 15.5px);
    font-weight: 600;
    color: #005284;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 82, 132, 0.08);
}

.news-read-more {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #E39F51;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.news-card-link:hover .news-read-more {
    color: #E39F51;
}

.news-arrow-icon {
    width: 16px;
    height: 16px;
    color: #E39F51;
    transition: transform 0.3s ease;
}

.news-card-link:hover .news-arrow-icon {
    transform: translate(3px, -3px);
    color: #E39F51;
}

@media (max-width: 1180px) {
    .news-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 680px) {
    .news-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .news-image-wrapper {
        height: 140px;
    }
}

/* =========================================================
   SECTION 8 (FINAL): CONTACT US SLIDE
========================================================= */

.contact-slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: clamp(80px, 9vh, 95px) 4% 24px;
    background: #003B54;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vh, 32px);
    margin: auto;
    text-align: center;
}

.contact-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 780px;
}

.contact-pill-tag {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    background: rgba(227, 159, 81, 0.15);
    border: 1.2px solid #E39F51;
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #E39F51;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.contact-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(26px, 2.6vw, 38px);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.contact-quote {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: clamp(16px, 1.2vw, 19px);
    font-weight: 500;
    color: #E39F51;
    margin: 2px 0 0;
    padding: 0;
    border: none;
    letter-spacing: 0.3px;
}

.contact-subtitle {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: clamp(13.5px, 1vw, 15px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    line-height: 1.5;
    max-width: 640px;
}

/* 4 Contact Cards Grid - 2x2 Layout */
.contact-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 960px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.2px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.12);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 159, 81, 0.7);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.25);
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(227, 159, 81, 0.15);
    border: 1.2px solid #E39F51;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E39F51;
    flex-shrink: 0;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.contact-card:hover .contact-icon-box {
    transform: scale(1.08);
    background: #E39F51;
    color: #003B54;
}

.contact-icon-box svg {
    width: 22px;
    height: 22px;
}

.contact-card-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.contact-card-label {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    color: #E39F51;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-card-text h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-card-text p {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-card-clickable {
    cursor: pointer;
    position: relative;
    user-select: none;
}

.contact-card-clickable:focus-visible {
    outline: 2px solid #E39F51;
    outline-offset: 2px;
}

.contact-card-action-icon {
    margin-left: auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(227, 159, 81, 0.14);
    border: 1px solid rgba(227, 159, 81, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E39F51;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.contact-card-action-icon svg {
    width: 15px;
    height: 15px;
    transition: transform 0.25s ease;
}

.contact-card-clickable:hover .contact-card-action-icon {
    background: #E39F51;
    color: #003B54;
    transform: scale(1.08);
}

.contact-card-clickable:hover .contact-card-action-icon svg {
    transform: translateX(2px);
}

/* Footer Line */
.contact-footer-bar {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 14px;
    width: 100%;
    max-width: 960px;
    margin-top: 4px;
}

.contact-footer-bar p {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 991px) {
    .contact-slide {
        height: auto;
        min-height: 100vh;
        padding: 90px 4% 30px;
        overflow-y: auto;
    }
    .contact-cards-container {
        grid-template-columns: 1fr;
    }
    .contact-card-text h4,
    .contact-card-text p {
        white-space: normal;
    }
}

/* =========================================================
   SLIDE 1 (INDEX PAGE) — VERTICAL / MOBILE SCREEN ONLY
   Horizontal desktop code is completely preserved & locked.
========================================================= */
@media (orientation: portrait), (max-width: 768px) {
    /* Slide 1 Mobile Sky & Ambient Background */
    .hero .hero-photo {
        background-image: url('../images/slide1_mobile_bg.png') !important;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }

    /* Slide 1 Foreground Student Cutout - Full bleed touching left & right screen borders with zero side gaps */
    .hero .hero-mobile-fg {
        display: block !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: clamp(320px, 58vh, 660px) !important;
        max-height: 60vh !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 10 !important;
        pointer-events: none !important;
        overflow: hidden !important;
        line-height: 0 !important;
    }

    .hero .hero-mobile-fg-img {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        object-position: center top !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Content positioned cleanly centered between the navbar logo bottom and the student image top */
    .hero .hero-content {
        position: absolute !important;
        top: clamp(65px, 8.5vh, 88px) !important;
        bottom: clamp(320px, 58vh, 660px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 4px clamp(12px, 4vw, 24px) !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        transform: none !important;
        -webkit-transform: none !important;
        z-index: 20 !important;
        pointer-events: none !important;
    }

    .hero .hero-content > * {
        pointer-events: auto !important;
    }

    /* Title styling: Google Sans font with dynamic fluid mobile scaling */
    .hero .hero-title,
    .hero .hero-title span {
        font-family: 'Google Sans', 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif !important;
        font-size: clamp(19px, 5.4vw + 0.35vh, 38px) !important;
        line-height: 1.16 !important;
        font-weight: 800 !important;
        letter-spacing: -0.02em !important;
        margin: 0 auto clamp(8px, 1.5vh, 18px) auto !important;
        width: 100% !important;
        text-align: center !important;
    }

    .hero .title-awakened {
        display: block !important;
        text-align: center !important;
        color: #005284 !important;
        -webkit-text-fill-color: #005284 !important;
        white-space: nowrap !important;
        text-shadow: 0 1px 12px rgba(255, 255, 255, 0.95) !important;
    }

    /* "A Peaceful World" in one single line */
    .hero .title-line-second {
        display: block !important;
        text-align: center !important;
        white-space: nowrap !important;
        color: #E39F51 !important;
        -webkit-text-fill-color: #E39F51 !important;
        text-shadow: 0 1px 12px rgba(255, 255, 255, 0.95) !important;
    }

    .hero .title-peaceful,
    .hero .title-world {
        display: inline !important;
        color: #E39F51 !important;
        -webkit-text-fill-color: #E39F51 !important;
    }

    /* Remove subtext content on mobile/vertical view */
    .hero .hero-subtext {
        display: none !important;
    }

    /* Video Option Button for Vertical / Mobile Screen - Fluid Scaling */
    .hero .hero-actions-row {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
        width: auto !important;
    }

    .hero .watch-video-btn {
        display: inline-flex !important;
        align-items: center !important;
        gap: clamp(6px, 1.8vw, 12px) !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 4px 8px !important;
        box-shadow: none !important;
        cursor: pointer !important;
        transition: transform 0.25s ease, filter 0.25s ease !important;
    }

    .hero .watch-video-btn:active {
        transform: scale(0.96) !important;
    }

    .hero .watch-video-icon {
        width: clamp(24px, 5.8vw, 36px) !important;
        height: clamp(24px, 5.8vw, 36px) !important;
        display: block !important;
        flex-shrink: 0 !important;
    }

    .hero .watch-video-text {
        font-family: 'Google Sans', 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
        font-size: clamp(13px, 3.2vw + 0.2vh, 17.5px) !important;
        font-weight: 700 !important;
        color: #E39F51 !important;
        letter-spacing: 0.3px !important;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 1px 4px rgba(255, 255, 255, 0.9) !important;
    }

    /* Hide desktop decorations on mobile */
    .hero .hero-rings,
    .hero .hero-orbit {
        display: none !important;
    }
}

/* =========================================================
   HERO WATCH VIDEO POP-UP MODAL STYLES
========================================================= */
.hero-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.hero-video-modal.modal-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-modal-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 82, 132, 0.65) 0%, rgba(3, 10, 22, 0.92) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-modal-dialog {
    position: relative;
    z-index: 10;
    max-width: 650px;
    width: 92%;
    margin: auto;
    border-radius: 20px;
    background: #ffffff;
    border: 1.5px solid rgba(227, 159, 81, 0.45);
    box-shadow: 
        0 25px 70px rgba(0, 82, 132, 0.4),
        0 0 25px rgba(227, 159, 81, 0.25);
    overflow: hidden;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-video-modal.modal-open .hero-modal-dialog {
    transform: scale(1) translateY(0);
}

.hero-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 30;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(227, 159, 81, 0.35);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: #005284;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 82, 132, 0.15);
}

.hero-modal-close:hover {
    background: #005284;
    border-color: #E39F51;
    color: #E39F51;
    transform: rotate(90deg) scale(1.08);
}

.hero-modal-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Media Area (Thumbnail & Preview) */
.hero-modal-media-col {
    position: relative;
    width: 100%;
    background: #041b36;
    overflow: hidden;
}

.hero-modal-thumb-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 320px;
    background: #020c19;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.hero-modal-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.hero-modal-thumb-wrapper:hover .hero-modal-thumb-img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.hero-modal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.hero-modal-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(227, 159, 81, 0.96) 0%, rgba(227, 159, 81, 0.96) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005284;
    box-shadow: 
        0 8px 24px rgba(0, 82, 132, 0.4),
        0 0 25px rgba(227, 159, 81, 0.65);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    pointer-events: none;
}

.hero-modal-play-badge svg {
    width: 26px;
    height: 26px;
    margin-left: 3px;
}

.hero-modal-thumb-wrapper:hover .hero-modal-play-badge {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 
        0 12px 30px rgba(0, 82, 132, 0.5),
        0 0 35px rgba(227, 159, 81, 0.9);
}

/* Info Column */
.hero-modal-info-col {
    padding: 24px 28px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
}

.hero-modal-title {
    font-family: 'Fraunces', 'Outfit', serif;
    font-size: clamp(19px, 2.4vw, 23px);
    font-weight: 700;
    color: #005284;
    line-height: 1.35;
    margin-bottom: 20px;
    max-width: 540px;
    letter-spacing: -0.2px;
}

.hero-modal-btn-row {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.hero-watch-now-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #E39F51 0%, #E39F51 100%);
    color: #005284;
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: 0.3px;
    padding: 11px 26px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(227, 159, 81, 0.38);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.hero-watch-now-action-btn svg {
    width: 17px;
    height: 17px;
    transition: transform 0.25s ease;
}

.hero-watch-now-action-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 26px rgba(227, 159, 81, 0.5);
}

.hero-watch-now-action-btn:hover svg {
    transform: scale(1.15);
}

.hero-explore-sparks-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #005284;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1.5px solid rgba(0, 82, 132, 0.25);
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-explore-sparks-link svg {
    width: 15px;
    height: 15px;
    transition: transform 0.25s ease;
}

.hero-explore-sparks-link:hover {
    background: #f4f7fa;
    border-color: #005284;
    transform: translateY(-2px);
}

.hero-explore-sparks-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .hero-modal-info-col {
        padding: 20px 18px 22px;
    }

    .hero-modal-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .hero-modal-btn-row {
        gap: 10px;
    }

    .hero-watch-now-action-btn,
    .hero-explore-sparks-link {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   INITIATIVES LIST POP-UP MODAL STYLES
========================================================= */
.initiatives-modal {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s ease;
}

.initiatives-modal.modal-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.initiatives-modal-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 59, 84, 0.72) 0%, rgba(3, 15, 28, 0.94) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.initiatives-modal-dialog {
    position: relative;
    z-index: 10;
    max-width: 580px;
    width: 92%;
    margin: auto;
    border-radius: 24px;
    background: #ffffff;
    border: 1.5px solid rgba(227, 159, 81, 0.45);
    box-shadow: 
        0 25px 70px rgba(0, 59, 84, 0.42),
        0 0 30px rgba(227, 159, 81, 0.22);
    overflow: hidden;
    padding: 32px 32px 28px;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.initiatives-modal.modal-open .initiatives-modal-dialog {
    transform: scale(1) translateY(0);
}

.initiatives-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 30;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(227, 159, 81, 0.35);
    background: rgba(244, 247, 250, 0.95);
    backdrop-filter: blur(8px);
    color: #003B54;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 59, 84, 0.12);
}

.initiatives-modal-close:hover {
    background: #003B54;
    border-color: #E39F51;
    color: #E39F51;
    transform: rotate(90deg) scale(1.08);
}

.initiatives-modal-header {
    text-align: center;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.initiatives-modal-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(227, 159, 81, 0.14);
    border: 1px solid rgba(227, 159, 81, 0.5);
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #005284;
}

.initiatives-modal-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(22px, 2.4vw, 27px);
    font-weight: 700;
    color: #003B54;
    margin: 0;
    line-height: 1.25;
}

.initiatives-modal-subtitle {
    font-family: 'Glacial Indifference', 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #5a738e;
    margin: 0;
    max-width: 440px;
    line-height: 1.45;
}

.initiatives-modal-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.initiative-modal-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    background: #f8fafc;
    border: 1.2px solid rgba(0, 59, 84, 0.12);
    border-radius: 14px;
    text-decoration: none;
    color: #003B54;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 15.5px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.initiative-modal-item:hover {
    background: linear-gradient(135deg, rgba(227, 159, 81, 0.08) 0%, rgba(0, 82, 132, 0.05) 100%);
    border-color: #E39F51;
    color: #005284;
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(227, 159, 81, 0.18);
}

.initiative-modal-item .initiative-item-name {
    flex: 1;
    padding-right: 12px;
}

.initiative-modal-item .initiative-item-arrow {
    width: 18px;
    height: 18px;
    color: #E39F51;
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.25s ease;
}

.initiative-modal-item:hover .initiative-item-arrow {
    transform: translateX(3px);
    color: #005284;
}

@media (max-width: 600px) {
    .initiatives-modal-dialog {
        padding: 24px 20px 22px;
        width: 94%;
        border-radius: 20px;
    }

    .initiatives-modal-title {
        font-size: 20px;
    }

    .initiative-modal-item {
        padding: 12px 16px;
        font-size: 14.5px;
    }
}









