/* ===================================================================
   LANDING.CSS - Premium Landing Page Sections
   Scroll-based reveal, glassmorphism, animated stats, micro-animations
   =================================================================== */

/* ======== Wrapper ======== */
body {
    padding: 0 !important;
    /* Forces edge-to-edge layout by negating global 24px padding */
}

.landing-wrapper {
    position: relative;
}

/* ======== Section Base ======== */
.landing-initiatives-section {
    background: #121746;
    /* Official Navy Blue */
    position: relative;
    padding: 20px 0;
}

.landing-initiatives-section .section-title {
    color: #ffffff;
}

.landing-initiatives-section .section-label {
    background: rgba(72, 128, 173, 0.15);
    /* Celestial offset */
    color: #4880ad;
}

.landing-initiatives-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.initiative-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
}

.initiative-card h4 {
    color: #ffffff;
}

.initiative-card p {
    color: rgba(255, 255, 255, 0.65);
}

.landing-section {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.landing-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.landing-inner-wide {
    max-width: 1520px;
    padding: 0 48px;
}

/* ======== Section Labels & Titles ======== */
.section-label {
    display: table;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-glow-soft);
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 16px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
}

/* ======== Glow Orbs (Ambient Background Lights) ======== */
.landing-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    animation: glowDrift 10s ease-in-out infinite alternate;
}

@keyframes glowDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -15px) scale(1.05);
    }

    100% {
        transform: translate(-10px, 10px) scale(0.97);
    }
}

.landing-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -120px;
    right: -180px;
}

.landing-glow-2 {
    width: 420px;
    height: 420px;
    background: #8b5cf6;
    bottom: -120px;
    left: -120px;
    animation-delay: 3s;
}

.landing-glow-3 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.06;
    animation: none;
}

/* ===================================================================
   HERO DIVIDER SECTION
   =================================================================== */
/* Merged Hero Styles */
.hero-unboxed-section {
    padding: 80px 40px 60px;
    min-height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none !important;
    margin: 0;
}

#loggedOutView {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

#loggedOutView > :not(.hero-particles-canvas) {
    position: relative;
    z-index: 1;
}

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

@media (max-width: 900px) {
    .hero-unboxed-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 30px;
    }

    .hero-text-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-mega-title,
    .hero-mega-subtitle {
        text-align: center !important;
    }

    .hero-visual-side {
        display: none !important;
    }
}

.landing-hero-divider {
    display: none;
    /* Merged into main hero */
}


/* ===================================================================
   ABOUT / VISION & MISSION SECTION
   =================================================================== */
.landing-about-section {
    background: #ffffff;
    /* Branded White */
    color: #121746;
}

.landing-about-section .section-title {
    color: #121746;
}

.landing-about-section .section-label {
    background: rgba(18, 23, 70, 0.08);
    color: #121746;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-text-panel .section-title {
    font-size: 2.4rem;
    margin-bottom: 32px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.vision-block,
.mission-block {
    background: rgba(72, 128, 173, 0.02);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(72, 128, 173, 0.08);
    margin-bottom: 0;
}


.about-visual-panel {
    display: flex;
    justify-content: center;
}

.about-logo-card {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 28px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-logo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(72, 128, 173, 0.06), transparent 50%);
    pointer-events: none;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.about-logo-card:hover::before {
    opacity: 1;
}

.about-logo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 32px 80px rgba(72, 128, 173, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.about-logo-card img {
    max-width: 180px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.06));
    transition: transform 0.5s ease;
}

.about-logo-card:hover img {
    transform: scale(1.05);
}

.about-logo-label {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.about-logo-sublabel {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ===================================================================
   PROGRAMS SECTION
   =================================================================== */
.landing-programs-section {
    background: #4880ad;
    /* Branded Celestial Blue */
    background: linear-gradient(180deg, #4880ad 0%, #3a6b94 100%);
    position: relative;
}

.landing-programs-section .section-title {
    color: #ffffff;
}

.landing-programs-section .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.landing-programs-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.landing-programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.program-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px 20px;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 120%, rgba(72, 128, 173, 0.08), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.program-card:hover::before {
    opacity: 1;
}

.program-card:hover::after {
    opacity: 1;
}

.program-icon {
    font-size: 1.8rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.program-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 4px;
    position: relative;
    z-index: 1;
}

.program-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}



/* ===================================================================
   STATS / WHY NEXT ACADEMY SECTION
   =================================================================== */
.landing-stats-section {
    background: #eaeaea;
    /* Branded Light Grey */
}

.landing-stats-section .section-title,
.landing-stats-section .section-subtitle {
    color: #121746;
    /* Branded Navy Text */
}

.landing-stats-section .section-label {
    background: rgba(18, 23, 70, 0.08);
    color: #121746;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    flex: 1 1 200px;
    max-width: 320px;
    text-align: center;
    padding: 16px 10px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(72, 128, 173, 0.035) 0%, rgba(139, 92, 246, 0.035) 100%);
    border: 1px solid rgba(72, 128, 173, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    border-color: rgba(72, 128, 173, 0.18);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(72, 128, 173, 0.1);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    display: inline;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    display: inline;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ===================================================================
   INITIATIVES SECTION
   =================================================================== */
.landing-initiatives-section {
    background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
    position: relative;
}

.landing-initiatives-section .landing-inner > .scroll-reveal:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.initiative-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 16px 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.initiative-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.initiative-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(72, 128, 173, 0.15) 0%, rgba(139, 92, 246, 0.12) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.initiative-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.initiative-card:hover .initiative-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(72, 128, 173, 0.2);
}

.initiative-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 4px 0 10px;
}

.initiative-content p {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin: 0;
}

/* ===================================================================
   CTA SECTION
   =================================================================== */
.landing-cta-section {
    background: linear-gradient(135deg, rgba(18, 23, 70, 0.03) 0%, rgba(72, 128, 173, 0.03) 100%);
    background-color: #fafbff;
    padding: 20px 0 30px;
}

.cta-card {
    background: linear-gradient(135deg, #121746 0%, #4880ad 100%);
    border-radius: 28px;
    padding: 36px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(72, 128, 173, 0.3);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.12), transparent 50%);
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 60%);
    pointer-events: none;
}

.cta-card h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-btn {
    padding: 16px 42px !important;
    font-size: 1.05rem !important;
    border-radius: 14px !important;
    font-weight: 600 !important;
}

.cta-buttons .btn-primary {
    background: white !important;
    color: var(--primary-dark) !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15) !important;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2) !important;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.12) !important;
    color: white !important;
    border: 1.5px solid rgba(255, 255, 255, 0.28) !important;
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    transform: translateY(-4px) !important;
}

/* ===================================================================
   SCROLL REVEAL ANIMATIONS
   Transition lives on the base class. JS hides elements instantly
   (with transition disabled via inline style), then re-enables
   transition after a frame. Observer removes is-hidden on scroll.
   =================================================================== */
.scroll-reveal {
    will-change: opacity, transform;
    transition:
        opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.is-hidden {
    opacity: 0;
    transform: translateY(35px);
}

.scroll-reveal.delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal.delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal.delay-3 {
    transition-delay: 0.3s;
}

.scroll-reveal.delay-4 {
    transition-delay: 0.4s;
}

/* ===================================================================
   RESPONSIVE DESIGN
   =================================================================== */
@media (max-width: 992px) {
    .landing-inner-wide {
        padding: 0 32px;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-hero-title {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cta-card {
        padding: 56px 40px;
    }

    .cta-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .landing-section {
        padding: 64px 0;
    }

    .landing-inner {
        padding: 0 20px;
    }

    .landing-inner-wide {
        padding: 0 20px;
    }

    .landing-hero-divider {
        padding: 80px 0 72px;
    }

    .landing-hero-title {
        font-size: 2.4rem;
    }

    .landing-hero-subtitle {
        font-size: 1rem;
    }

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

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

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-suffix {
        font-size: 1.5rem;
    }

    .stat-item {
        padding: 24px 12px;
    }

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

    .section-title {
        font-size: 1.9rem;
    }

    .cta-card {
        padding: 44px 24px;
        border-radius: 20px;
    }

    .cta-card h3 {
        font-size: 1.7rem;
    }

    .cta-card p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 14px 32px !important;
        font-size: 0.95rem !important;
    }

    .landing-badge {
        font-size: 0.7rem;
        padding: 8px 18px;
    }

    .program-card {
        padding: 32px 24px 28px;
    }

    .about-logo-card {
        padding: 40px 32px;
    }

    .about-logo-card img {
        max-width: 140px;
    }
}

/* ======== National Initiatives Section ======== */
.landing-national-section {
    position: relative;
    background: #4880ad;
    /* Celestial Blue for variety */
    background: linear-gradient(160deg, #4880ad 0%, #3a6b94 50%, #4880ad 100%);
    padding: 30px 0;
}

.landing-national-section .section-title {
    color: #ffffff;
}

.landing-national-section .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* ======== National Initiatives Carousel ======== */
.national-carousel-container {
    position: relative;
    margin-top: 50px;
    padding: 0 60px;
    /* Space for buttons */
}

.national-carousel-viewport {
    overflow: hidden;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.national-carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.national-card {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    min-height: 280px;
    position: relative;
    gap: 40px;
}

/* Glassmorphism Nav Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(18, 23, 70, 0.4);
    /* Navy Glass for contrast on Celestial bg */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(18, 23, 70, 0.5);
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.carousel-nav-btn svg {
    stroke: white !important;
    width: 44px;
    height: 44px;
    stroke-width: 3px;
    transition: transform 0.3s ease;
}

.carousel-nav-btn:hover {
    background: rgba(18, 23, 70, 0.6);
    border-color: #121746;
    box-shadow: 0 0 35px rgba(18, 23, 70, 0.4);
    transform: translateY(-50%) scale(1.15);
}

.carousel-nav-btn:hover svg {
    transform: scale(1.1);
}

.carousel-nav-btn.prev {
    left: -30px;
}

.carousel-nav-btn.next {
    right: -30px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* ======== Saudi Initiative Section — Cinematic Editorial ======== */

/* ---- Section Shell ---- */
.landing-saudi-section {
    position: relative;
    overflow: hidden;
    background: #0a0e2a;
    padding: 0 0 80px;
}

/* ---- Animated Orbital Rings ---- */
@keyframes saudiOrbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.saudi-orbital {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(72, 128, 173, 0.08);
    pointer-events: none;
    z-index: 0;
}

.saudi-orbital--1 {
    width: 700px;
    height: 700px;
    top: 10%;
    left: 60%;
    animation: saudiOrbit 80s linear infinite;
}

.saudi-orbital--2 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 20%;
    border-color: rgba(72, 128, 173, 0.06);
    animation: saudiOrbit 60s linear infinite reverse;
}

.saudi-orbital--3 {
    width: 900px;
    height: 900px;
    top: 30%;
    left: 40%;
    border-color: rgba(72, 128, 173, 0.04);
    animation: saudiOrbit 120s linear infinite;
}

/* ---- Hero Banner ---- */
.saudi-hero {
    position: relative;
    z-index: 1;
    padding: 80px 0 60px;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(72, 128, 173, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 85% 20%, rgba(18, 23, 70, 0.6) 0%, transparent 60%);
}

.saudi-hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.saudi-hero__copy {
    position: relative;
    z-index: 2;
}

/* Exclusive Badge with animated pulse dot */
.saudi-badge-exclusive {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(72, 128, 173, 0.12);
    border: 1px solid rgba(72, 128, 173, 0.3);
    color: #a8d4f7;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

@keyframes saudiBadgePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.6);
    }
}

.saudi-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4880ad;
    box-shadow: 0 0 12px rgba(72, 128, 173, 0.6);
    animation: saudiBadgePulse 2s ease-in-out infinite;
}

/* Title */
.saudi-hero__title {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
}

.saudi-hero__title-accent {
    background: linear-gradient(135deg, #4880ad, #7abce6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.saudi-hero__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(200, 215, 235, 0.85);
    max-width: 560px;
    margin: 0 0 28px;
}

/* Tags */
.saudi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.saudi-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d0dff0;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.saudi-tag:hover {
    background: rgba(72, 128, 173, 0.12);
    border-color: rgba(72, 128, 173, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.saudi-tag__icon {
    font-size: 0.95rem;
}

/* ---- Integrated Hero Media (right column) ---- */
.saudi-hero__media {
    position: relative;
    min-width: 0;
    z-index: 2;
}

/* ---- Mission Callout ---- */
.saudi-mission {
    position: relative;
    display: flex;
    gap: 0;
    margin: 28px 0 32px;
    padding: 24px 24px 24px 28px;
    border-radius: 20px;
    background: rgba(72, 128, 173, 0.06);
    border: 1px solid rgba(72, 128, 173, 0.12);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.saudi-mission:hover {
    border-color: rgba(72, 128, 173, 0.25);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.saudi-mission__accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #4880ad, #7abce6);
    border-radius: 4px 0 0 4px;
    box-shadow: 0 0 20px rgba(72, 128, 173, 0.4);
}

.saudi-mission__body {
    min-width: 0;
}

.saudi-mission__program {
    display: block;
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #7abce6, #4880ad, #a8d4f7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: saudiGradientShift 6s ease-in-out infinite;
}

@keyframes saudiGradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.saudi-mission p {
    margin: 0;
    color: rgba(200, 215, 235, 0.8);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ---- Stat Chips (inside theater) ---- */
.saudi-theater__chips {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

@keyframes saudiChipPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.saudi-chip {
    flex: 1;
    padding: 14px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(72, 128, 173, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    animation: saudiChipPulse 4s ease-in-out infinite;
}

.saudi-chip:nth-child(2) {
    animation-delay: -1.3s;
}

.saudi-chip:nth-child(3) {
    animation-delay: -2.6s;
}

.saudi-chip:hover {
    background: rgba(72, 128, 173, 0.1);
    border-color: rgba(72, 128, 173, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.saudi-chip__num {
    display: block;
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.saudi-chip__label {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(168, 212, 247, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .saudi-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .saudi-pillars {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .saudi-hero {
        padding: 60px 0 40px;
    }

    .saudi-hero__title {
        font-size: clamp(1.8rem, 5vw, 2.6rem);
    }

    .saudi-pillars {
        grid-template-columns: 1fr;
    }

    .saudi-theater {
        padding: 20px;
        border-radius: 24px;
    }

    .saudi-theater__screen {
        border-radius: 18px;
    }
}

/* ---- Feature Pillars ---- */
.saudi-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.saudi-pillar {
    position: relative;
    padding: 36px 28px 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
}

.saudi-pillar:hover {
    border-color: rgba(72, 128, 173, 0.3);
    background: rgba(72, 128, 173, 0.06);
    transform: translateY(-6px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(72, 128, 173, 0.15) inset;
}

.saudi-pillar__glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(72, 128, 173, 0.2) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.saudi-pillar:hover .saudi-pillar__glow {
    opacity: 1;
}

.saudi-pillar__index {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 20px;
    transition: color 0.5s ease;
}

.saudi-pillar:hover .saudi-pillar__index {
    color: #ffffff;
}

.saudi-pillar__kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(72, 128, 173, 0.12);
    color: #7abce6;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.saudi-pillar__title {
    margin: 0 0 10px;
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}

.saudi-pillar__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(200, 215, 235, 0.7);
}

/* ---- Cinematic Video Theater ---- */
.saudi-theater {
    position: relative;
    z-index: 1;
    padding: 24px;
    border-radius: 28px;
    background: rgba(18, 23, 70, 0.5);
    border: 1px solid rgba(72, 128, 173, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.saudi-theater__header {
    margin-bottom: 20px;
}

.saudi-theater__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.saudi-theater__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(72, 128, 173, 0.15);
    border: 1px solid rgba(72, 128, 173, 0.25);
    color: #a8d4f7;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.saudi-theater__region {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d0dff0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.saudi-theater__screen {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #050a1a;
    aspect-ratio: 16 / 9;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.saudi-theater__screen iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.saudi-theater__caption {
    margin-top: 16px;
}

.saudi-theater__caption strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: #ffffff;
    font-family: var(--font-display, 'Outfit', sans-serif);
}

.saudi-theater__caption p {
    margin: 0;
    color: rgba(200, 215, 235, 0.7);
    line-height: 1.6;
    font-size: 0.88rem;
}

.national-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.national-image-wrapper {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 30px;
    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, 0.05),
        0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.national-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.national-card:hover .national-image {
    transform: scale(1.08) rotate(-2deg);
}

.national-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.national-content h4 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: white;
    margin: 0 0 15px 0;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.national-content h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #121746, transparent);
    /* Navy Blue Accent on Celestial background */
    border-radius: 2px;
}

.national-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .national-card {
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        text-align: center;
    }

    .national-image-wrapper {
        width: 250px;
        height: 250px;
        padding: 30px;
    }

    .national-content h4 {
        font-size: 2.2rem;
    }

    .national-content h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .national-carousel-container {
        padding: 0;
    }

    .carousel-nav-btn {
        width: 56px;
        height: 56px;
    }

    .carousel-nav-btn svg {
        width: 28px;
        height: 28px;
    }

    .national-card {
        padding: 30px 20px;
    }

    .national-image-wrapper {
        width: 200px;
        height: 200px;
    }
}

/* ======== Success Partners Slider ======== */
.landing-partners-section {
    position: relative;
    padding: 20px 0 30px 0;
    margin-top: 0;
    background: #ffffff;
    /* Branded White */
}

.landing-partners-section .landing-inner {
    max-width: 1560px;
}

.landing-partners-section .section-title {
    color: #121746;
    /* Navy Text */
}

.landing-partners-section .section-label {
    background: rgba(18, 23, 70, 0.08);
    color: #121746;
}

.partners-slider {
    width: 100%;
    margin-top: 30px;
    position: relative;
    padding: 22px 76px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3), 0 20px 40px rgba(0, 0, 0, 0.2);
}

.partners-slider::before,
.partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.partners-track {
    display: flex;
    width: fit-content;
    align-items: center;
}

.partners-viewport {
    overflow: hidden;
    width: 100%;
}

.partners-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #121746;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    transition: transform 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.partners-nav-btn::before {
    content: none;
}

.partners-nav-btn:hover {
    color: #000000;
    transform: translateY(-50%) scale(1.05);
    opacity: 0.78;
}

.partners-nav-btn:active {
    transform: translateY(-50%) scale(0.96);
}

.partners-nav-btn svg {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    stroke: #121212;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    filter: none;
}

.partners-nav-btn--prev svg {
    transform: translate(-47%, -50%);
}

.partners-nav-btn--next svg {
    transform: translate(-53%, -50%);
}

.partners-nav-btn--prev {
    left: 14px;
}

.partners-nav-btn--next {
    right: 14px;
}

.partner-logo {
    width: 270px;
    height: 110px;
    padding: 0 20px;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f4f7fa 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle shimmer sweep on hover */
.partner-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 0.7s ease;
}

.partner-logo:hover::after {
    left: 200%;
}

.partner-logo img {
    max-width: 210px;
    max-height: 105px;
    filter: opacity(0.92);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: contain;
    position: relative;
    z-index: 1;
    mix-blend-mode: multiply;
    background: transparent;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(72, 128, 173, 0.4), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: #ffffff;
}

.partner-logo:hover img {
    filter: opacity(1);
    transform: scale(1.08);

}

/* Staggered Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease-out) forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 15));
        /* 270 width + 30 margin = 300px */
    }
}

@media (max-width: 768px) {
    .partners-slider {
        padding: 18px 50px;
    }

    .partners-slider::before,
    .partners-slider::after {
        width: 58px;
    }

    .partners-nav-btn {
        width: 40px;
        height: 40px;
    }

    .partners-nav-btn--prev {
        left: 10px;
    }

    .partners-nav-btn--next {
        right: 10px;
    }

    .partner-logo {
        width: 228px;
        height: 98px;
        margin: 0 10px;
    }

    .partner-logo img {
        max-width: 180px;
        max-height: 88px;
    }
}

/* ===================================================================
   CONTACT SECTION (HOMEPAGE)
   =================================================================== */
.landing-contact-section {
    background: #ffffff;
    /* Branded White */
    position: relative;
    padding: 30px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: #f8fafc;
    border: 1px solid rgba(72, 128, 173, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(72, 128, 173, 0.1);
    border-color: var(--primary);
}

.contact-top {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 1.2rem;
    background: rgba(72, 128, 173, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.contact-details h4 {
    font-size: 1rem;
    margin: 0 0 4px;
    color: #121746;
}

.contact-details p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-secondary);
}

.contact-link {
    font-size: 0.8rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-map-wrapper {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    height: 120px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Remove decorative shadows/glows for cleaner professional look */
.landing-glow-orb {
    display: none !important;
}

.hero-abstract-glow {
    display: none !important;
}
