/* ========================================
   MISSION PAGE - SPECIFIC STYLES
   ======================================== 
   
   This file contains styles ONLY for the Mission page.
   Global styles (navbar, footer, buttons, etc.) are in style.css
   
   ======================================== */

/* ========================================
   HERO BANNER (Static image with overlay)
   ======================================== */
.page-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
    overflow: visible;
}

.title-line-1 {
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
    overflow: visible;
}

.title-line-2 {
    color: #ffffff;
    display: inline-block;
    background-color: #000000;
    padding: 0.5rem 1rem 0.5rem 0;
    margin-left: -0.25rem;
    overflow: visible;
}

/* Hero Subtitle - Descriptive text below title */
.hero-subtitle {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin-top: 1.5rem;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ========================================
   SLG CHALLENGE SECTION - PREMIUM REDESIGN
   Dramatic animated section with cards and stats
   ======================================== */

.slg-challenge-section {
    position: relative;
    background: #000000;
    padding: 8rem 1rem;
    overflow: hidden;
}

/* Animated Background Elements */
.slg-challenge-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.challenge-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

.challenge-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.challenge-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.3) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    animation: orbFloat1 15s ease-in-out infinite;
}

.challenge-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: orbFloat2 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 30px) scale(1.1); }
    66% { transform: translate(-30px, 50px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, -30px) scale(1.05); }
    66% { transform: translate(30px, -40px) scale(0.9); }
}

.challenge-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(34, 211, 238, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 100px 100px, 120px 120px, 80px 80px, 90px 90px, 110px 110px;
    animation: particleDrift 30s linear infinite;
}

@keyframes particleDrift {
    0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 100px 100px, -120px 120px, 80px -80px, -90px 90px, 110px -110px; }
}

/* Section Header */
.challenge-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.challenge-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #22d3ee;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.challenge-eyebrow.visible {
    opacity: 1;
    transform: translateY(0);
}

.challenge-title {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.challenge-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.challenge-title .title-highlight {
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 50%, #22d3ee 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s ease infinite;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.challenge-title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #22d3ee, transparent);
    margin: 0 auto;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.challenge-title-underline.visible {
    opacity: 1;
    transform: scaleX(1);
}

/* Main Grid Layout */
.challenge-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* SLG Cards Column */
.slg-cards-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Individual SLG Card */
.slg-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.slg-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.slg-card:nth-child(1) { transition-delay: 0.1s; }
.slg-card:nth-child(2) { transition-delay: 0.2s; }
.slg-card:nth-child(3) { transition-delay: 0.3s; }

.slg-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateX(10px);
}

/* Card Glow Effect */
.slg-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.slg-card:hover .slg-card-glow {
    opacity: 1;
}

/* Animated Border */
.slg-card-border {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, rgba(34, 211, 238, 0.5) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.slg-card:hover .slg-card-border {
    opacity: 1;
}

/* Card Content Layout */
.slg-card-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Letter Styling */
.slg-card-letter-wrap {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slg-card-letter {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 5rem;
    line-height: 1;
    color: #22d3ee;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
    transition: all 0.4s ease;
}

.slg-card-letter-shadow {
    position: absolute;
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 5rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(34, 211, 238, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(5px, 5px);
    z-index: 1;
}

.slg-card:hover .slg-card-letter {
    text-shadow: 0 0 50px rgba(34, 211, 238, 0.8);
    transform: scale(1.1);
}

/* Card Text */
.slg-card-text {
    flex: 1;
}

.slg-card-text h3 {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.slg-card:hover .slg-card-text h3 {
    color: #22d3ee;
}

.slg-card-text p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Card Icon */
.slg-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.slg-card-icon i {
    width: 24px;
    height: 24px;
    color: #22d3ee;
}

.slg-card:hover .slg-card-icon {
    background: rgba(34, 211, 238, 0.2);
    border-color: rgba(34, 211, 238, 0.4);
    transform: scale(1.1);
}

/* Challenge Description Column */
.challenge-description-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Description Box */
.challenge-description {
    position: relative;
    background: linear-gradient(135deg, rgba(1, 26, 56, 0.8) 0%, rgba(15, 43, 77, 0.6) 100%);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(34, 211, 238, 0.15);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.challenge-description.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Quote Mark */
.challenge-quote-mark {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 1;
    color: rgba(34, 211, 238, 0.1);
    pointer-events: none;
}

/* Description Text */
.challenge-lead {
    font-size: 1.35rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.challenge-lead strong {
    color: #22d3ee;
    font-weight: 600;
}

.challenge-body {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.challenge-body em {
    color: #22d3ee;
    font-style: normal;
    font-weight: 500;
}

/* Challenge Stats */
.challenge-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.challenge-stat {
    text-align: center;
}

.challenge-stat-number {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 3rem;
    color: #22d3ee;
    line-height: 1;
    display: inline;
}

.challenge-stat-suffix {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 2rem;
    color: #22d3ee;
    vertical-align: top;
}

.challenge-stat-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Visual Element */
.challenge-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.challenge-visual.visible {
    opacity: 1;
    transform: scale(1);
}

.challenge-visual-frame {
    position: relative;
    z-index: 2;
}

.challenge-visual-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(34, 211, 238, 0.3));
    animation: visualFloat 6s ease-in-out infinite;
}

@keyframes visualFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.challenge-visual-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Orbiting Elements */
.challenge-visual-orbits {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(34, 211, 238, 0.2);
    border-radius: 50%;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    animation: orbitSpin 20s linear infinite;
}

.orbit-2 {
    width: 280px;
    height: 280px;
    animation: orbitSpin 30s linear infinite reverse;
}

.orbit-3 {
    width: 360px;
    height: 360px;
    animation: orbitSpin 40s linear infinite;
}

.orbit::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #22d3ee;
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.8);
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Bottom CTA */
.challenge-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.challenge-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-challenge-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-challenge-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-challenge-cta:hover {
    border-color: #22d3ee;
    color: #22d3ee;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 211, 238, 0.2);
}

.btn-challenge-cta:hover::before {
    opacity: 1;
}

.btn-challenge-cta span {
    position: relative;
    z-index: 1;
}

.btn-challenge-cta i {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.btn-challenge-cta:hover i {
    animation: none;
    transform: translateY(3px);
}

/* ========================================
   SLG CHALLENGE - RESPONSIVE STYLES
   ======================================== */

@media (min-width: 1024px) {
    .challenge-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
    
    .challenge-description-column {
        position: sticky;
        top: 120px;
    }
}

@media (max-width: 1023px) {
    .slg-challenge-section {
        padding: 5rem 1rem;
    }
    
    .challenge-title {
        font-size: 4rem;
    }
    
    .challenge-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .challenge-stat-number {
        font-size: 2.5rem;
    }
    
    .challenge-visual {
        min-height: 250px;
    }
    
    .orbit-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .slg-challenge-section {
        padding: 4rem 1rem;
    }
    
    .challenge-header {
        margin-bottom: 3rem;
    }
    
    .challenge-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .challenge-grid {
        gap: 3rem;
    }
    
    .slg-card {
        padding: 1.5rem;
    }
    
    .slg-card-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .slg-card-letter-wrap {
        width: 60px;
        height: 60px;
    }
    
    .slg-card-letter,
    .slg-card-letter-shadow {
        font-size: 4rem;
    }
    
    .slg-card-text h3 {
        font-size: 1.5rem;
    }
    
    .slg-card-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .slg-card-icon i {
        width: 20px;
        height: 20px;
    }
    
    .challenge-description {
        padding: 2rem;
    }
    
    .challenge-quote-mark {
        font-size: 5rem;
        top: 1rem;
        left: 1.5rem;
    }
    
    .challenge-lead {
        font-size: 1.15rem;
    }
    
    .challenge-body {
        font-size: 1rem;
    }
    
    .challenge-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }
    
    .challenge-stat {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }
    
    .challenge-stat-label {
        margin-top: 0;
    }
    
    .challenge-visual {
        min-height: 200px;
    }
    
    .challenge-visual-img {
        max-width: 200px;
    }
    
    .orbit-2,
    .orbit-3 {
        display: none;
    }
    
    .orbit-1 {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .challenge-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .challenge-title {
        font-size: 2.5rem;
    }
    
    .slg-card-letter,
    .slg-card-letter-shadow {
        font-size: 3rem;
    }
    
    .slg-card-text h3 {
        font-size: 1.25rem;
    }
    
    .slg-card-text p {
        font-size: 0.875rem;
    }
    
    .challenge-stat-number {
        font-size: 2rem;
    }
    
    .challenge-stat-suffix {
        font-size: 1.5rem;
    }
    
    .btn-challenge-cta {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   MISSION CORE SECTION
   ======================================== */
.mission-core-section {
    background-color: #011A38;
    padding: 6rem 1rem;
    text-align: center;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.mission-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.mission-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.mission-text:last-child {
    margin-bottom: 0;
}

/* ========================================
   VISION SECTION
   ======================================== */
.vision-section {
    background-color: #f4f7f9;
    padding: 6rem 1rem;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
}

.vision-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.vision-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.vision-heading {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #011A38;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.vision-heading-highlight {
    color: #22d3ee;
    display: block;
}

.vision-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 1rem;
}

.vision-text:first-of-type {
    margin-top: 1.5rem;
}

.vision-text strong {
    color: #011A38;
    font-weight: 700;
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.stat-card {
    background: #ffffff;
    padding: 1.5rem;
    border-left: 4px solid #011A38;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-left-width: 6px;
}

.stat-card-accent {
    border-left-color: #22d3ee;
}

.stat-card-accent:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdff 100%);
}

.stat-number {
    display: block;
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 2.5rem;
    color: #011A38;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #888888;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.vision-image {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.vision-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.vision-img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: filter 0.3s ease;
}

.vision-img:hover {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}

/* ========================================
   PEOPLE SECTION
   Dark blue background (#011A38) with white text
   Flipped layout - image on left, content on right
   Alternates with Vision section above it
   ======================================== */
.people-section {
    background-color: #011A38; /* UPDATED: Dark blue background */
    padding: 6rem 1rem;
}

/* People Grid - Flipped layout (image left, content right) */
.people-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
}

/* People Image - Left side */
.people-image {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.people-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.people-img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: filter 0.3s ease;
}

.people-img:hover {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}

/* People Content - Right side */
.people-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.people-content.visible {
    opacity: 1;
    transform: translateX(0);
}

/* People Heading */
.people-heading {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff; /* UPDATED: White text */
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

/* People Heading Highlight - "People" in cyan */
.people-heading-highlight {
    color: #22d3ee; /* Cyan color */
    display: block;
}

/* People Text Paragraphs */
.people-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9); /* UPDATED: White text with slight transparency */
    margin-bottom: 1rem;
}

.people-text:first-of-type {
    margin-top: 1.5rem;
}

/* People Statistics Cards Container */
.people-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

/* Individual People Stat Card - Semi-transparent with white text */
.people-stat-card {
    background: rgba(255, 255, 255, 0.1); /* UPDATED: Semi-transparent white background */
    padding: 1.5rem;
    border-left: 4px solid rgba(255, 255, 255, 0.3); /* UPDATED: Semi-transparent white border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.people-stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effect for people stat cards */
.people-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-left-width: 6px;
    background: rgba(255, 255, 255, 0.15); /* Slightly more opaque on hover */
}

/* Accent card - cyan border */
.people-stat-card-accent {
    border-left-color: #22d3ee; /* Cyan border */
}

.people-stat-card-accent:hover {
    background: rgba(34, 211, 238, 0.1); /* Cyan tint on hover */
}

/* Stat Number - White text */
.people-stat-number {
    display: block;
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 2.5rem;
    color: #ffffff; /* UPDATED: White text */
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Stat Label - White text */
.people-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8); /* UPDATED: White text with transparency */
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* ========================================
   CORE CAPABILITIES SECTION
   Grid of 6 capability cards showing service offerings
   Light gray background
   ======================================== */
.capabilities-section {
    background-color: #f4f7f9;
    padding: 6rem 1rem;
}

.capabilities-heading {
    color: #011A38;
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 3rem;
    line-height: 1;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Individual capability card */
.capability-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #011A38; /* Dark blue accent border */
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.capability-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effect - lift card and change border to cyan */
.capability-item:hover {
    transform: translateY(-5px);
    border-left-color: #22d3ee;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.capability-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #011A38;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    line-height: 1.3;
}

.capability-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   12-MONTH ROADMAP SECTION
   ======================================== */
.roadmap-section {
    background-color: #011A38;
    padding: 6rem 1rem;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.roadmap-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.roadmap-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.roadmap-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #22d3ee;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.roadmap-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.roadmap-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.roadmap-icon i {
    width: 30px;
    height: 30px;
    color: #22d3ee;
}

.roadmap-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.roadmap-item-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-section {
    background-color: #ffffff;
    padding: 6rem 1rem;
}

.values-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #011A38;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.values-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

.value-card {
    background: #f4f7f9;
    padding: 2.5rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Value Icon Wrapper - Gradient with hover rotation effect */
.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22d3ee 0%, #011A38 100%); /* UPDATED: Cyan to dark blue gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease; /* Added transition for smooth rotation */
}

/* Hover effect - Rotate icon wrapper */
.value-card:hover .value-icon-wrapper {
    transform: rotate(360deg); /* Full rotation on card hover */
    box-shadow: 0 8px 20px rgba(34, 211, 238, 0.4); /* Cyan glow */
}

.value-icon-wrapper i {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #011A38;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
}

/* ========================================
   CALL TO ACTION SECTION
   Off-white/silver background with League Gothic font
   Appears on every page
   ======================================== */
.cta-section {
    background: #e8e8e8;
    padding: 6rem 1rem;
    position: relative;
}

.cta-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.cta-heading {
    font-family: 'League Gothic', 'Impact', 'Arial Black', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    line-height: 0.95;
    color: #000000;
    text-transform: lowercase;
    letter-spacing: -0.02em;
}

.cta-heading br {
    display: block;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #000000;
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-cta-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 1.25rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   FADE-IN ANIMATION UTILITY CLASS
   ======================================== */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet and Desktop */
@media (min-width: 768px) {
    .hero-cta-buttons {
        flex-wrap: nowrap;
    }
    
    .slg-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
    
    .vision-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
    }
    
    /* People grid - FLIPPED layout (image left 0.8fr, content right 1.2fr) */
    .people-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 4rem;
    }
    
    .vision-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .people-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 7rem;
        line-height: 1.25;
    }
    
    .title-line-1 {
        margin-bottom: 0.5rem;
    }
    
    .slg-title {
        font-size: 3.5rem;
    }
    
    .mission-heading {
        font-size: 4rem;
    }
    
    .vision-heading {
        font-size: 3.5rem;
    }
    
    .roadmap-title {
        font-size: 4rem;
    }
    
    .roadmap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-heading {
        font-size: 7rem;
    }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .hero-title {
        font-size: 3rem;
        line-height: 1.3;
    }
    
    .title-line-1 {
        margin-bottom: 0.5rem;
    }
    
    .title-line-2 {
        padding: 0.4rem 0.5rem 0.4rem 0;
    }
    
    .btn-hero-outline {
        width: 100%;
        text-align: center;
    }
    
    .hero-content-wrapper {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .slg-title {
        font-size: 2rem;
    }
    
    .acronym-item {
        gap: 0.75rem; /* TIGHTER spacing on mobile */
    }
    
    .letter {
        font-size: 2.5rem;
        min-width: 50px;
    }
    
    .word {
        font-size: 1.5rem;
    }
    
    .mission-heading {
        font-size: 2rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .vision-heading {
        font-size: 2rem;
        line-height: 0.95;
    }
    
    .vision-text {
        font-size: 1rem;
    }
    
    .vision-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    /* People section mobile styles */
    .people-heading {
        font-size: 2rem;
        line-height: 0.95;
    }
    
    .people-text {
        font-size: 1rem;
    }
    
    .people-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .people-stat-card {
        padding: 1.25rem;
    }
    
    .people-stat-number {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .roadmap-title {
        font-size: 2rem;
    }
    
    .roadmap-subtitle {
        font-size: 1rem;
    }
    
    .values-heading {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 4rem 1rem;
    }
    
    .cta-heading {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .title-line-1 {
        margin-bottom: 0.5rem;
    }
    
    .title-line-2 {
        padding: 0.4rem 0.5rem 0.4rem 0;
    }
    
    .btn-hero-outline {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    .slg-title {
        font-size: 1.75rem;
    }
    
    .acronym-item {
        gap: 0.5rem; /* EVEN TIGHTER spacing on very small screens */
    }
    
    .letter {
        font-size: 2rem;
    }
    
    .word {
        font-size: 1.25rem;
    }
    
    .mission-heading {
        font-size: 1.75rem;
    }
    
    .vision-heading {
        font-size: 1.75rem;
        line-height: 1;
    }
    
    .vision-text {
        font-size: 0.95rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .roadmap-title {
        font-size: 1.75rem;
    }
    
    .values-heading {
        font-size: 1.75rem;
    }
    
    .cta-heading {
        font-size: 3rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}

/* Footer Logo Image */
.footer-logo-image {
    height: 40px;
    width: 320px;
    display: block;
    transition: opacity 0.2s ease;
}

.footer-logo-image:hover {
    opacity: 0.8;
}

.footer-logo a {
    display: inline-block;
}

/* Mobile Logo Sizing - Reduce by 30% on mobile */
@media (max-width: 768px) {
    .logo img,
    .footer-logo-image {
        height: 28px !important;
        width: auto;
    }
}
/* ========================================
   INLINE SEARCH BAR (Expandable)
   ======================================== */
.inline-search-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
}

.inline-search-input {
    width: 0;
    opacity: 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.5rem 0;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.inline-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Search icon button */
.search-icon-btn {
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.search-icon-btn i {
    width: 1.25rem;
    height: 1.25rem;
    transition: color 0.3s ease;
}

.search-icon-btn:hover i {
    color: #22d3ee;
}

/* EXPANDED STATE */
.inline-search-container.expanded .inline-search-input {
    width: 180px;
    opacity: 1;
    border-bottom-color: #22d3ee;
    padding-right: 0.5rem;
    pointer-events: auto;
    margin-right: 0.5rem;
}

.inline-search-container.expanded .search-icon-btn {
    transform: translateX(-10px);
}

.inline-search-container.expanded .search-icon-btn i {
    color: #22d3ee;
}

/* ========================================
   SEARCH EXPANDED STATE - Fade out nav items
   ======================================== */

/* When search is expanded, fade out all nav links */
.nav-links.search-active > a,
.nav-links.search-active > .spacer,
.nav-links.search-active > .btn-get-started {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Keep the search container visible */
.nav-links.search-active .inline-search-container {
    opacity: 1;
    pointer-events: auto;
}

/* Make search bar wider when nav items are hidden */
.nav-links.search-active .inline-search-container.expanded .inline-search-input {
    width: 320px;
}

/* Smooth transition for nav links when NOT in search mode */
.nav-links > a,
.nav-links > .spacer,
.nav-links > .btn-get-started {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.2s ease;
}

/* Mobile: Hide inline search, use mobile menu search instead */
@media (max-width: 767px) {
    .inline-search-container {
        display: none;
    }
}