/* ===== ORUN.IO - INSANE DEMO STYLES ===== */

:root {
    /* Original ORUN.IO color palette */
    --primary: #00D4FF;
    --secondary: #2ECC71;
    --accent: #E0A82E;
    --highlight: #FF6B35;
    --dark: #0D1B2A;
    --darker: #1C1C1E;
    --light: #F5F5F5;
    --text-gray: #DADADA;
    --teal-primary: #00BFA6;
    --teal-dark: #008B7A;
    --teal-light: #00D4B8;
    
    /* Gradients */
    --gradient-cyan: linear-gradient(135deg, #00D4FF 0%, #0099CC 50%, #006699 100%);
    --gradient-ochre: linear-gradient(135deg, #E0A82E 0%, #D4A017 50%, #B8860B 100%);
    --gradient-primary: linear-gradient(135deg, #00BFA6 0%, #00D4B8 50%, #00E5CC 100%);
    --gradient-secondary: linear-gradient(135deg, #2ECC71 0%, #27AE60 50%, #1E8449 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #E55A2B 50%, #CC4A21 100%);
    --gradient-dark: linear-gradient(135deg, #0D1B2A 0%, #1C1C1E 50%, #2C2C2E 100%);
    --gradient-light: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 50%, #DADADA 100%);
    
    /* Shadows */
    --shadow-primary: 0 8px 32px rgba(0, 191, 166, 0.3);
    --shadow-secondary: 0 4px 16px rgba(46, 204, 113, 0.2);
    --shadow-accent: 0 6px 24px rgba(255, 107, 53, 0.25);
    
    /* Border radius */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    margin: 0;
    font-family: 'Inter', 'Poppins', 'Montserrat', sans-serif;
    background: #ffffff;
    color: #222;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0D1B2A 0%, #1C1C1E 50%, #2C2C2E 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.loading-text {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00BFA6 0%, #00D4B8 50%, #00E5CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(0, 191, 166, 0.5);
    animation: textGradient 3s ease-in-out infinite;
}

.loading-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* 3D Globe Loader */
.globe-loader-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-globe {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(0, 191, 166, 0.4),
        0 0 60px rgba(0, 191, 166, 0.2);
}


/* Loading Status */
.loading-status {
    margin-top: 2rem;
    text-align: center;
}

.status-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 400;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.loading-dots .dot {
    width: 6px;
    height: 6px;
    background: #00BFA6;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}


/* Status text transitions */
.status-text {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Full-Page Slides - Completely Isolated */
.slide {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    padding: 1rem;
    box-sizing: border-box;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    transform: translateY(0);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* Ensure body takes full height and disable scrolling */
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
}

/* ===== SLIDE BACKGROUNDS ===== */
/* ODD NUMBERS = WHITE BACKGROUNDS */
.slide:nth-of-type(1) { 
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 166, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    color: #222; 
} /* Hero - White */
.slide:nth-of-type(3) { 
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 166, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    color: #222; 
} /* Stats - White */
.slide:nth-of-type(5) { 
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 166, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    color: #222; 
} /* Problem - White */
.slide:nth-of-type(7) { 
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 166, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    color: #222; 
} /* Satellite - White */
.slide:nth-of-type(9) { 
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 166, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    color: #222; 
} /* Community - White */
.slide:nth-of-type(11) { 
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 166, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    color: #222; 
} /* CTA - White */

/* EVEN NUMBERS = DARK BACKGROUNDS */
.slide:nth-of-type(2) { 
    background-color: #000000 !important;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 204, 113, 0.06) 0%, transparent 50%) !important;
    color: #ffffff !important; 
} /* Earth - Black */
.slide:nth-of-type(4) { 
    background-color: #000000 !important;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 204, 113, 0.06) 0%, transparent 50%) !important;
    color: #ffffff !important; 
} /* Projects - Black */
.slide:nth-of-type(6) { 
    background-color: #000000 !important;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 204, 113, 0.06) 0%, transparent 50%) !important;
    color: #ffffff !important; 
} /* Solution - Black */
.slide:nth-of-type(8) { 
    background-color: #000000 !important;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 204, 113, 0.06) 0%, transparent 50%) !important;
    color: #ffffff !important; 
} /* AI - Black */
.slide:nth-of-type(10) { 
    background-color: #000000 !important;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 204, 113, 0.06) 0%, transparent 50%) !important;
    color: #ffffff !important; 
} /* Blockchain - Black */

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Subtle Particle Background - DISABLED */
#particles-js,
.particles-container {
    display: none;
}

/* Vanta.js Container - DISABLED */
.vanta-container {
    display: none;
}

/* Neural Network Style Floating Lines */
.neural-network {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Neural network nodes - ENHANCED */
.neural-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(0, 191, 166, 1) 0%, rgba(0, 191, 166, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: pulseNode 3s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 191, 166, 0.6);
    z-index: 1;
}

/* Neural network connections - ENHANCED */
.neural-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 191, 166, 0.8) 50%, transparent 100%);
    transform-origin: left center;
    animation: flowConnection 4s ease-in-out infinite;
    box-shadow: 0 0 4px rgba(0, 191, 166, 0.4);
    z-index: 1;
}

/* Different opacity for light vs dark slides */
.slide:nth-of-type(1) .neural-node,
.slide:nth-of-type(3) .neural-node,
.slide:nth-of-type(5) .neural-node,
.slide:nth-of-type(7) .neural-node,
.slide:nth-of-type(9) .neural-node,
.slide:nth-of-type(11) .neural-node {
    background: radial-gradient(circle, rgba(0, 191, 166, 0.4) 0%, rgba(0, 191, 166, 0.2) 50%, transparent 100%);
}

.slide:nth-of-type(1) .neural-connection,
.slide:nth-of-type(3) .neural-connection,
.slide:nth-of-type(5) .neural-connection,
.slide:nth-of-type(7) .neural-connection,
.slide:nth-of-type(9) .neural-connection,
.slide:nth-of-type(11) .neural-connection {
    background: linear-gradient(90deg, transparent 0%, rgba(0, 191, 166, 0.5) 50%, transparent 100%);
    box-shadow: 0 0 3px rgba(0, 191, 166, 0.3);
}

.slide:nth-of-type(2) .neural-node,
.slide:nth-of-type(4) .neural-node,
.slide:nth-of-type(6) .neural-node,
.slide:nth-of-type(8) .neural-node,
.slide:nth-of-type(10) .neural-node {
    background: radial-gradient(circle, rgba(0, 191, 166, 0.6) 0%, rgba(0, 191, 166, 0.3) 50%, transparent 100%);
}

.slide:nth-of-type(2) .neural-connection,
.slide:nth-of-type(4) .neural-connection,
.slide:nth-of-type(6) .neural-connection,
.slide:nth-of-type(8) .neural-connection,
.slide:nth-of-type(10) .neural-connection {
    background: linear-gradient(90deg, transparent 0%, rgba(0, 191, 166, 0.4) 50%, transparent 100%);
}

/* Special reduced opacity for Earth slide */
.slide:nth-of-type(2) .neural-node {
    background: radial-gradient(circle, rgba(0, 191, 166, 0.3) 0%, rgba(0, 191, 166, 0.15) 50%, transparent 100%);
}

.slide:nth-of-type(2) .neural-connection {
    background: linear-gradient(90deg, transparent 0%, rgba(0, 191, 166, 0.2) 50%, transparent 100%);
}

@keyframes pulseNode {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes flowConnection {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

/* Alternative: CSS-based floating interconnected lines using pseudo-elements */
.floating-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-lines::before,
.floating-lines::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(0, 191, 166, 0.1) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(0, 212, 255, 0.08) 50%, transparent 51%);
    background-size: 40px 40px, 60px 60px;
    animation: floatLinesAdvanced 30s linear infinite;
}

.floating-lines::after {
    animation-delay: -15s;
    background-image: 
        linear-gradient(90deg, transparent 49%, rgba(46, 204, 113, 0.06) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(224, 168, 46, 0.05) 50%, transparent 51%);
    background-size: 80px 80px, 100px 100px;
}

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

/* Add subtle background patterns to all slides */

/* Enhanced particles for all slides - DISABLED */
#particles-js canvas,
.particles-container canvas {
    display: none;
}

/* Ensure slides have relative positioning for particles */
/* Removed duplicate .slide rule - using the main one above */

/* Subtle particle canvas styling - DISABLED */
#particles-js canvas,
.particles-container canvas {
    display: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(4rem, 15vw, 20rem);
    font-weight: 900;
    line-height: 0.8;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 0 0 20px var(--primary);
    opacity: 1;
    transform: scale(1) translateZ(50px);
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 191, 166, 0.3));
    animation: float3D 6s ease-in-out infinite;
    background: linear-gradient(45deg, 
        #2c3e50 0%, 
        #34495e 25%, 
        #2c3e50 50%, 
        #3498db 75%, 
        #2c3e50 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 8s ease-in-out infinite, float3D 6s ease-in-out infinite;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== HERO TITLE COLORS ===== */
/* ODD NUMBERS = WHITE BACKGROUNDS = DARK TEXT */
.slide:nth-of-type(1) .hero-title,
.slide:nth-of-type(3) .hero-title,
.slide:nth-of-type(5) .hero-title,
.slide:nth-of-type(7) .hero-title,
.slide:nth-of-type(9) .hero-title,
.slide:nth-of-type(11) .hero-title {
    background: linear-gradient(90deg, #003366, #0077cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* EVEN NUMBERS = DARK BACKGROUNDS = LIGHT TEXT */
.slide:nth-of-type(2) .hero-title,
.slide:nth-of-type(4) .hero-title,
.slide:nth-of-type(6) .hero-title,
.slide:nth-of-type(8) .hero-title,
.slide:nth-of-type(10) .hero-title {
    background: linear-gradient(90deg, #00aaff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1rem auto;
    color: #444;
    line-height: 1.6;
    font-weight: 500;
    transform: translateZ(40px);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 12;
}

/* ===== HERO SUBTITLE COLORS ===== */
/* ODD NUMBERS = WHITE BACKGROUNDS = DARK TEXT */
.slide:nth-of-type(1) .hero-subtitle,
.slide:nth-of-type(3) .hero-subtitle,
.slide:nth-of-type(5) .hero-subtitle,
.slide:nth-of-type(7) .hero-subtitle,
.slide:nth-of-type(9) .hero-subtitle,
.slide:nth-of-type(11) .hero-subtitle {
    color: #333;
}

/* EVEN NUMBERS = DARK BACKGROUNDS = LIGHT TEXT */
.slide:nth-of-type(2) .hero-subtitle,
.slide:nth-of-type(4) .hero-subtitle,
.slide:nth-of-type(6) .hero-subtitle,
.slide:nth-of-type(8) .hero-subtitle,
.slide:nth-of-type(10) .hero-subtitle {
    color: #ffffff;
}

.hero-subtitle-secondary {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
    transform: translateZ(35px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 11;
}

/* ===== HERO SUBTITLE SECONDARY COLORS ===== */
/* ODD NUMBERS = WHITE BACKGROUNDS = DARK TEXT */
.slide:nth-of-type(1) .hero-subtitle-secondary,
.slide:nth-of-type(3) .hero-subtitle-secondary,
.slide:nth-of-type(5) .hero-subtitle-secondary,
.slide:nth-of-type(7) .hero-subtitle-secondary,
.slide:nth-of-type(9) .hero-subtitle-secondary,
.slide:nth-of-type(11) .hero-subtitle-secondary {
    color: #555;
}

/* EVEN NUMBERS = DARK BACKGROUNDS = LIGHT TEXT */
.slide:nth-of-type(2) .hero-subtitle-secondary,
.slide:nth-of-type(4) .hero-subtitle-secondary,
.slide:nth-of-type(6) .hero-subtitle-secondary,
.slide:nth-of-type(8) .hero-subtitle-secondary,
.slide:nth-of-type(10) .hero-subtitle-secondary {
    color: #cccccc;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    margin: 0.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    transform: translateY(0) translateZ(30px);
    position: relative;
    z-index: 15;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-primary);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Primary (orange accent) */
.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-accent);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

/* Secondary (teal) */
.btn-secondary {
    background: var(--gradient-primary);
    color: #fff;
    border: 2px solid transparent;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-primary);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.02);
}

/* Navigation Dots */
.nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-dot:hover {
    background: rgba(0, 191, 166, 0.6);
    transform: scale(1.2);
}

.nav-dot.active {
    background: #00bfa6;
    box-shadow: 0 0 15px rgba(0, 191, 166, 0.8);
    transform: scale(1.3);
}

/* Slide Counter */
.slide-counter {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 600;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 191, 166, 0.8);
    box-shadow: 0 0 20px rgba(0, 191, 166, 0.3);
}

/* Animations */
@keyframes textGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 3D Floating Animation */
@keyframes float3D {
    0%, 100% { transform: scale(1) translateZ(50px) translateY(0px); }
    50% { transform: scale(1.02) translateZ(60px) translateY(-10px); }
}

/* Slide animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Pulse animation for interactive elements */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 191, 166, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 191, 166, 0);
    }
}

/* Shimmer effect for loading states */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Bounce animation for buttons */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

/* ===== OTHER SLIDE CONTENT STYLING ===== */

/* Earth Section - Side by Side Layout */
.earth-section {
    display: grid;
    grid-template-columns: 2.2fr 1fr; /* Increased globe space back to original */
    grid-template-rows: 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem;
    height: 100vh;
    width: 100vw;
}

#earth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 800px; /* Reduced from 1000px */
    max-height: 700px; /* Reduced from 900px */
    z-index: 5;
    transform: translateZ(40px);
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    position: relative;
    cursor: grab;
    transition: transform 0.3s ease;
}

#earth-container:active {
    cursor: grabbing;
}

#earth-container:hover {
    transform: translateZ(40px) scale(1.02);
}

/* Globe interaction cues */
.globe-interaction-cues {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    z-index: 10;
}

.interaction-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #00bfa6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 166, 0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.hint-icon, .scroll-icon {
    font-size: 14px;
}

#earth-container:hover .interaction-hint,
#earth-container:hover .scroll-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile interaction cues */
@media (max-width: 768px) {
    .interaction-hint {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .interaction-hint .hint-text {
        display: none;
    }
    
    .interaction-hint .hint-icon::after {
        content: " Touch to explore";
        font-size: 10px;
    }
    
    .scroll-hint {
        font-size: 9px;
        padding: 4px 8px;
    }
}

/* Three.js canvas styling */
#earth-container canvas {
    border-radius: 20px;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    mix-blend-mode: normal;
}

/* Globe controls styling */
.globe-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.globe-btn {
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.1) 0%, rgba(0, 191, 166, 0.05) 100%);
    color: #00BFA6;
    border: 1px solid rgba(0, 191, 166, 0.3);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 191, 166, 0.1);
}

.globe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.1), transparent);
    transition: left 0.3s ease;
}

.globe-btn:hover::before {
    left: 100%;
}

.globe-btn:hover {
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.2) 0%, rgba(0, 191, 166, 0.1) 100%);
    border-color: rgba(0, 191, 166, 0.6);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 191, 166, 0.2);
}

.globe-btn:active {
    transform: translateY(0) scale(1.02);
}

/* High DPI and Retina Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .earth-overlay {
        background: rgba(0, 0, 0, 0.9);
        border: 1px solid rgba(0, 191, 166, 0.6);
    }
    
    .stat-item, .action-item {
        background: rgba(0, 191, 166, 0.25);
        border: 1px solid rgba(0, 191, 166, 0.6);
    }
    
    .stat-value {
        color: var(--teal-light);
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Earth section mobile optimizations */
    .earth-section {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        gap: 1rem;
        padding: 1rem;
    }
    
    #earth-container {
        max-height: 60vh;
        order: 1;
        border-radius: var(--border-radius);
        overflow: hidden;
    }
    
    .earth-overlay {
        order: 2;
        padding: 1rem;
        margin-top: 0;
        max-height: 40vh;
        overflow-y: auto;
        background: rgba(0, 0, 0, 0.9);
        border: 1px solid rgba(0, 191, 166, 0.6);
        gap: 1rem;
    }
    
    .monitoring-features {
        display: none; /* Hide on mobile to save space */
    }
    
    .data-source-info {
        margin-top: 1rem;
        padding-top: 0.5rem;
    }
    
    .globe-controls {
        gap: 0.5rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .globe-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        min-width: 80px;
        flex: 1;
        touch-action: manipulation;
    }
    
    /* Optimize canvas for mobile */
    #earth-container canvas {
        image-rendering: optimizeSpeed;
        image-rendering: -moz-crisp-edges;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
    }
    
    /* Hero section mobile improvements */
    .hero-title {
        font-size: clamp(3rem, 12vw, 8rem);
        line-height: 0.9;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    
    .hero-subtitle-secondary {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Navigation dots mobile */
    .nav-dots {
        right: 15px;
        gap: 10px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Slide counter mobile */
    .slide-counter {
        bottom: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Stats section mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Projects section mobile */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .project-card {
        padding: 2rem;
    }
    
    .projects-content {
        padding: 3rem 1rem;
    }
    
    .projects-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 2rem;
    }
    
    .project-info h3 {
        font-size: 1.5rem;
    }
    
    .project-info p {
        font-size: 1rem;
    }
    
    /* Section titles mobile */
    .section-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Slide content mobile */
    .slide-content {
        padding: 0 1rem;
    }
    
    .slide-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }
    
    .bullet-point {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    /* CTA section mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .earth-section {
        padding: 0.5rem;
    }
    
    #earth-container {
        max-height: 50vh;
    }
    
    .earth-overlay {
        padding: 1rem;
    }
    
    .globe-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        min-width: 70px;
    }
}

.earth-overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 191, 166, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: translateZ(60px);
    z-index: 15;
    max-width: 100%;
    height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #00BFA6 rgba(0, 0, 0, 0.3);
    gap: 1.5rem;
}

/* Custom scrollbar for webkit browsers */
.earth-overlay::-webkit-scrollbar {
    width: 6px;
}

.earth-overlay::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.earth-overlay::-webkit-scrollbar-thumb {
    background: #00BFA6;
    border-radius: 3px;
}

.earth-overlay::-webkit-scrollbar-thumb:hover {
    background: #00D4B8;
}

/* Climate Actions */
.climate-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.5rem;
    flex-shrink: 0;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    background: rgba(0, 191, 166, 0.2);
    border: 1px solid rgba(0, 191, 166, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.action-item:hover,
.action-item:focus {
    background: rgba(0, 191, 166, 0.3);
    border-color: rgba(0, 191, 166, 0.7);
    transform: translateX(5px);
    outline: 2px solid var(--teal-light);
    outline-offset: 2px;
}

.action-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.action-text {
    font-size: clamp(0.8rem, 2.2vw, 1rem);
    font-weight: 500;
    color: #ffffff;
}

/* New overlay elements */
.overlay-header {
    width: 100%;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 191, 166, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 191, 166, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
    animation: pulse 2s infinite;
}

.status-dot.active {
    background: #00BFA6;
    box-shadow: 0 0 10px rgba(0, 191, 166, 0.5);
}

.status-text {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

.stat-trend {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.2rem;
}

.monitoring-features {
    width: 100%;
}

.features-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(0, 191, 166, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 191, 166, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 191, 166, 0.1);
    border-color: rgba(0, 191, 166, 0.3);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.feature-content {
    flex: 1;
}

.feature-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.feature-detail {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.data-source-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 191, 166, 0.2);
}

.source-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.source-label {
    color: rgba(255, 255, 255, 0.7);
}

.source-value {
    color: #00BFA6;
    font-weight: 500;
}

.earth-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    text-align: left;
    margin-bottom: 1.5rem;
    color: #ffffff;
    transform: translateZ(50px);
    filter: drop-shadow(0 10px 20px rgba(0, 191, 166, 0.3));
    animation: float3D 6s ease-in-out infinite;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.earth-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    text-align: left;
    color: #e0e0e0;
    transform: translateZ(40px);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 12;
    line-height: 1.4;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Responsive Design for Earth Section */
@media (max-width: 768px) {
    .earth-section {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    #earth-container {
        max-width: 400px;
        max-height: 400px;
        order: 1;
    }
    
    .earth-overlay {
        order: 2;
        margin-top: 0;
        padding: 2rem 1.5rem;
    }
    
    .earth-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        text-align: center;
    }
    
    .earth-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        text-align: center;
    }
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    transform: translateZ(30px);
    position: relative;
    z-index: 12;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transform: translateZ(20px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--light);
    font-weight: 500;
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    transform: translateZ(50px);
    filter: drop-shadow(0 10px 20px rgba(0, 191, 166, 0.3));
    animation: float3D 6s ease-in-out infinite;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    transform: translateZ(40px);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 12;
}

/* Slide Content */
.slide-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    transform: translateZ(30px);
    position: relative;
    z-index: 12;
}

.slide-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    transform: translateZ(50px);
    filter: drop-shadow(0 10px 20px rgba(0, 191, 166, 0.3));
    animation: float3D 6s ease-in-out infinite;
}

.slide-bullets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bullet-point {
    font-size: 1.2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transform: translateZ(20px);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

/* Projects Section */
/* Projects Section Styling */
.projects-section {
    position: relative;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.projects-content {
    text-align: center;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.projects-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 191, 166, 0.5);
    position: relative;
    letter-spacing: -0.02em;
}

.projects-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00BFA6, transparent);
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    transform: translateZ(30px);
    position: relative;
    z-index: 12;
}

.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    transform: translateZ(20px);
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #00BFA6;
    transition: all 0.3s ease;
}

/* Color-coded accents for different project types */
.project-card:nth-child(1)::before {
    background: linear-gradient(180deg, #4CAF50, #2E7D32);
}

.project-card:nth-child(2)::before {
    background: linear-gradient(180deg, #2196F3, #1565C0);
}

.project-card:nth-child(3)::before {
    background: linear-gradient(180deg, #FFC107, #F57C00);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.project-card:nth-child(1):hover::before {
    width: 6px;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
}

.project-card:nth-child(2):hover::before {
    width: 6px;
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.6);
}

.project-card:nth-child(3):hover::before {
    width: 6px;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
}

/* Project Card Content Styling */
.project-image {
    text-align: center;
    margin-bottom: 2rem;
}

.project-placeholder {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

.project-card:hover .project-placeholder {
    transform: scale(1.1);
}

.project-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.project-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.project-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.project-stats span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Progress indicators */
.project-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 0 0 20px 20px;
}

.project-card:nth-child(1)::after {
    background: linear-gradient(90deg, transparent, #4CAF50, transparent);
}

.project-card:nth-child(2)::after {
    background: linear-gradient(90deg, transparent, #2196F3, transparent);
}

.project-card:nth-child(3)::after {
    background: linear-gradient(90deg, transparent, #FFC107, transparent);
}

/* Problem and Solution Sections */
.problem-content,
.solution-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    transform: translateZ(30px);
    position: relative;
    z-index: 12;
}

.problem-text,
.solution-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.solution-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transform: translateZ(20px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.highlight-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    transform: translateZ(30px);
    position: relative;
    z-index: 12;
}

.cta-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    transform: translateZ(50px);
    filter: drop-shadow(0 10px 20px rgba(0, 191, 166, 0.3));
    animation: float3D 6s ease-in-out infinite;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    transform: translateZ(40px);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-dots {
        right: 15px;
    }
}

/* Enhanced Earth Content Styles */
.earth-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    flex: 1;
}

/* Climate Statistics */
.climate-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    width: 100%;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00bfa6, #4fc3f7, #66bb6a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.stat-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon svg {
    transform: scale(1.1);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-value.positive {
    color: #66bb6a;
}

.stat-value.negative {
    color: #ff6b6b;
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-trend {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.stat-location {
    font-size: 0.8rem;
    color: #00bfa6;
    font-weight: 500;
    opacity: 0.8;
}

/* Specific stat item styling */
.temperature-stat:hover .stat-icon svg {
    fill: #ff8a80;
}

.rainfall-stat:hover .stat-icon svg {
    fill: #81d4fa;
}

.vegetation-stat:hover .stat-icon svg {
    fill: #a5d6a7;
}

/* Data status styling */
.data-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 166, 0.3);
    font-size: 0.9rem;
}

.last-updated {
    color: #00bfa6;
    font-weight: 600;
}

.data-sources {
    color: #ffffff;
    opacity: 0.8;
}

.stat-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #00BFA6;
}

.stat-label {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.9;
    font-weight: 500;
}

/* Technical Monitoring Info */
.monitoring-info {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.2rem;
    border: 1px solid rgba(0, 191, 166, 0.2);
}

.monitoring-info h3 {
    color: #00BFA6;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.tech-specs {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem;
    background: rgba(0, 191, 166, 0.05);
    border-radius: 6px;
    border-left: 3px solid #00BFA6;
}

.spec-label {
    color: #ffffff;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.spec-value {
    color: #00BFA6;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Data Sources */
.data-sources {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    padding: 0.8rem;
    border: 1px solid rgba(0, 191, 166, 0.1);
    margin-top: 1rem;
}

.data-sources p {
    margin: 0.3rem 0;
    font-size: 0.75rem;
    color: #ffffff;
    opacity: 0.8;
}

.data-sources strong {
    color: #00BFA6;
}

/* Target Users Section */
.target-users-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 166, 0.3);
}

.users-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #00bfa6, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.user-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 191, 166, 0.5);
}

.user-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 10px rgba(0, 191, 166, 0.3));
}

.user-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.user-desc {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Project Metrics Section */
.project-metrics {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 166, 0.3);
}

.metrics-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #00bfa6, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 191, 166, 0.5);
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 10px rgba(0, 191, 166, 0.3));
}

.metric-value {
    color: #00bfa6;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.metric-desc {
    color: #cccccc;
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Mobile responsive for new content */
@media (max-width: 768px) {
    .climate-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .users-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 0.8rem;
        background: rgba(0, 191, 166, 0.25);
        border: 1px solid rgba(0, 191, 166, 0.6);
    }
    
    .action-item {
        background: rgba(0, 191, 166, 0.25);
        border: 1px solid rgba(0, 191, 166, 0.6);
        padding: 0.8rem;
    }
    
    .stat-label, .action-text {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .project-summary {
        padding: 1rem;
    }
    
    .project-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .data-sources {
        padding: 0.8rem;
    }
}

/* Enhanced Stats Section - Matching Projects Style */
.stats-section {
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Add subtle background pattern */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 166, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 193, 7, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.stats-content {
    text-align: center;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.stats-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #003366;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 51, 102, 0.3);
    position: relative;
    letter-spacing: -0.02em;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00BFA6, transparent);
    border-radius: 2px;
}

.stats-subtitle {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    transform: translateZ(30px);
    position: relative;
    z-index: 12;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transform: translateZ(20px);
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #00BFA6;
    transition: all 0.3s ease;
}

/* Color-coded accents for different stat types */
.stat-card:nth-child(1)::before {
    background: linear-gradient(180deg, #4CAF50, #2E7D32);
}

.stat-card:nth-child(2)::before {
    background: linear-gradient(180deg, #2196F3, #1565C0);
}

.stat-card:nth-child(3)::before {
    background: linear-gradient(180deg, #FFC107, #F57C00);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.stat-card:nth-child(1):hover::before {
    width: 6px;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
}

.stat-card:nth-child(2):hover::before {
    width: 6px;
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.6);
}

.stat-card:nth-child(3):hover::before {
    width: 6px;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
}

/* Stat Card Content Styling */
.stat-image {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.stat-placeholder {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-placeholder {
    transform: scale(1.1);
}

.threejs-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.stat-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.stat-info p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.stat-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.metric {
    text-align: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Orbitron', monospace;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
}

.verification-proof {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(0, 191, 166, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.verification-icon {
    font-size: 1.2rem;
}

.stats-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-stat {
    text-align: center;
}

.summary-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Orbitron', monospace;
}

.summary-label {
    display: block;
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* Varied card styles for different metrics */
.stat-card:nth-child(1) {
    border-color: rgba(0, 191, 166, 0.3);
}

.stat-card:nth-child(2) {
    border-color: rgba(255, 107, 107, 0.3);
}

.stat-card:nth-child(3) {
    border-color: rgba(255, 193, 7, 0.3);
}

.stat-card:nth-child(4) {
    border-color: rgba(138, 43, 226, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.1) 0%, rgba(0, 191, 166, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 191, 166, 0.3);
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.05) 0%, #ffffff 100%);
}

.stat-card:nth-child(1):hover {
    border-color: rgba(0, 191, 166, 0.8);
    box-shadow: 0 30px 60px rgba(0, 191, 166, 0.2), 0 0 0 1px rgba(0, 191, 166, 0.3);
}

.stat-card:nth-child(2):hover {
    border-color: rgba(255, 107, 107, 0.8);
    box-shadow: 0 30px 60px rgba(255, 107, 107, 0.2), 0 0 0 1px rgba(255, 107, 107, 0.3);
}

.stat-card:nth-child(3):hover {
    border-color: rgba(255, 193, 7, 0.8);
    box-shadow: 0 30px 60px rgba(255, 193, 7, 0.2), 0 0 0 1px rgba(255, 193, 7, 0.3);
}

.stat-card:nth-child(4):hover {
    border-color: rgba(138, 43, 226, 0.8);
    box-shadow: 0 30px 60px rgba(138, 43, 226, 0.2), 0 0 0 1px rgba(138, 43, 226, 0.3);
}

.stat-card:active {
    transform: translateY(-10px) scale(0.98);
}

/* Enhanced Stat Card Elements */
.stat-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    border-radius: 50%;
    color: #ffffff;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 191, 166, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Varied number colors for different cards */
.stat-card:nth-child(1) .stat-number {
    color: #00BFA6;
    text-shadow: 0 0 20px rgba(0, 191, 166, 0.3);
}

.stat-card:nth-child(2) .stat-number {
    color: #FF6B6B;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.stat-card:nth-child(3) .stat-number {
    color: #FFC107;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.stat-card:nth-child(4) .stat-number {
    color: #8A2BE2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.stat-label {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #555;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.stat-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 191, 166, 0.1);
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--teal-primary);
    font-weight: 600;
    border: 1px solid rgba(0, 191, 166, 0.2);
}

/* Varied trend colors for different cards */
.stat-card:nth-child(2) .stat-trend {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.2);
}

.stat-card:nth-child(3) .stat-trend {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.2);
}

.stat-card:nth-child(4) .stat-trend {
    background: rgba(138, 43, 226, 0.1);
    color: #8a2be2;
    border-color: rgba(138, 43, 226, 0.2);
}

.trend-icon {
    font-size: 1rem;
}

.stat-chart {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0.3rem;
    height: 40px;
    margin-top: 1rem;
}

.chart-bar {
    width: 8px;
    background: linear-gradient(to top, var(--teal-primary), var(--teal-light));
    border-radius: 4px 4px 0 0;
    animation: growUp 1.5s ease-out forwards;
    transform-origin: bottom;
}

/* Varied chart styles for different cards */
.stat-card:nth-child(2) .chart-bar {
    background: linear-gradient(to top, #ff6b6b, #ff8e8e);
}

.stat-card:nth-child(3) .chart-bar {
    background: linear-gradient(to top, #ffc107, #ffd54f);
}

.stat-card:nth-child(4) .chart-bar {
    background: linear-gradient(to top, #8a2be2, #a855f7);
}

/* Alternative chart styles */
.stat-card:nth-child(1) .stat-chart {
    /* Bar chart for projects */
}

.stat-card:nth-child(2) .stat-chart {
    /* Line chart style for people */
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 107, 0.1) 30%, rgba(255, 107, 107, 0.1) 70%, transparent 70%);
    border-radius: 20px;
    position: relative;
}

.stat-card:nth-child(2) .stat-chart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e, #ff6b6b);
    border-radius: 1px;
    animation: lineGrow 2s ease-out forwards;
}

.stat-card:nth-child(3) .stat-chart {
    /* Circular progress for money */
    background: conic-gradient(from 0deg, #ffc107 0deg, #ffc107 216deg, rgba(255, 193, 7, 0.2) 216deg);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: relative;
}

.stat-card:nth-child(3) .stat-chart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
}

.stat-card:nth-child(4) .stat-chart {
    /* Sparkline style for CO2 */
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(138, 43, 226, 0.05));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.stat-card:nth-child(4) .stat-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes lineGrow {
    from { width: 0; }
    to { width: 80%; }
}

@keyframes sparkle {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes growUp {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}


/* Stats Footer */
.stats-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 191, 166, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 191, 166, 0.1);
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.data-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 166, 0.1);
}

.source-icon {
    font-size: 1.3rem;
    color: var(--teal-primary);
}

.view-details-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 191, 166, 0.3);
    position: relative;
    overflow: hidden;
}

.view-details-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.view-details-btn:hover::before {
    left: 100%;
}

.view-details-btn:hover {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal-primary));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 191, 166, 0.4);
}

.view-details-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.view-details-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.view-details-btn:hover svg {
    transform: translateX(3px);
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Trend Indicators */
.trend-indicator {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 0;
    right: 0;
}

.trend-up {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.trend-arrow {
    font-size: 1rem;
    animation: trendPulse 2s infinite;
}

.trend-value {
    font-size: 0.75rem;
}

@keyframes trendPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Info Buttons */
.info-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 191, 166, 0.2);
    border: 1px solid rgba(0, 191, 166, 0.4);
    color: #00BFA6;
    font-size: 0.7rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.info-btn:hover {
    background: rgba(0, 191, 166, 0.3);
    transform: scale(1.1);
}

/* Tooltip */
.info-btn[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    max-width: 200px;
    white-space: normal;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.info-btn[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

/* Card Footer */
.card-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 191, 166, 0.2);
}

.click-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    transition: all 0.3s ease;
}

.stat-card:hover .click-hint {
    color: #00BFA6;
    transform: translateX(5px);
}

/* Custom Icon Animations */
.icon-projects {
    position: relative;
    width: 60px;
    height: 60px;
}

.project-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FF6B6B;
    border-radius: 50%;
    animation: projectPulse 2s infinite;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.6);
}

.project-dot:nth-child(1) {
    top: 10px;
    left: 20px;
    animation-delay: 0s;
}

.project-dot:nth-child(2) {
    top: 30px;
    left: 10px;
    animation-delay: 0.5s;
}

.project-dot:nth-child(3) {
    top: 30px;
    right: 10px;
    animation-delay: 1s;
}

.project-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF6B6B, transparent);
    animation: projectFlow 3s infinite;
}

.project-line:nth-child(4) {
    top: 20px;
    left: 15px;
    width: 30px;
    transform: rotate(45deg);
    animation-delay: 0.2s;
}

.project-line:nth-child(5) {
    top: 20px;
    right: 15px;
    width: 30px;
    transform: rotate(-45deg);
    animation-delay: 0.7s;
}

@keyframes projectPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

@keyframes projectFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* People Icon */
.icon-people {
    position: relative;
    width: 60px;
    height: 60px;
}

.person-circle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #4ECDC4;
    border-radius: 50%;
    animation: personFloat 2.5s infinite;
    box-shadow: 0 0 12px rgba(78, 205, 196, 0.6);
}

.person-circle:nth-child(1) {
    top: 15px;
    left: 15px;
    animation-delay: 0s;
}

.person-circle:nth-child(2) {
    top: 15px;
    right: 15px;
    animation-delay: 0.8s;
}

.person-circle:nth-child(3) {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.6s;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: #4ECDC4;
    animation: connectionPulse 2s infinite;
}

.connection-line:nth-child(4) {
    top: 25px;
    left: 20px;
    width: 20px;
    transform: rotate(30deg);
    animation-delay: 0.3s;
}

.connection-line:nth-child(5) {
    top: 25px;
    right: 20px;
    width: 20px;
    transform: rotate(-30deg);
    animation-delay: 1.1s;
}

@keyframes personFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Investment Icon */
.icon-investment {
    position: relative;
    width: 60px;
    height: 60px;
}

.dollar-sign {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: #FFD93D;
    animation: dollarSpin 3s infinite;
    text-shadow: 0 0 15px rgba(255, 217, 61, 0.8);
}

.investment-wave {
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD93D, transparent);
    border-radius: 1px;
    animation: waveFlow 2s infinite;
}

.investment-wave:nth-child(2) {
    top: 20px;
    left: 10px;
    animation-delay: 0s;
}

.investment-wave:nth-child(3) {
    top: 30px;
    left: 10px;
    animation-delay: 0.5s;
}

.investment-wave:nth-child(4) {
    top: 40px;
    left: 10px;
    animation-delay: 1s;
}

@keyframes dollarSpin {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

@keyframes waveFlow {
    0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Resilience Icon */
.icon-resilience {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: end;
    justify-content: space-around;
    padding: 10px;
}

.resilience-bar {
    width: 6px;
    background: linear-gradient(to top, #6C5CE7, #A29BFE);
    border-radius: 3px;
    animation: barGrow 2s infinite;
    box-shadow: 0 0 8px rgba(108, 92, 231, 0.6);
}

.resilience-bar:nth-child(1) {
    height: 20px;
    animation-delay: 0s;
}

.resilience-bar:nth-child(2) {
    height: 30px;
    animation-delay: 0.2s;
}

.resilience-bar:nth-child(3) {
    height: 40px;
    animation-delay: 0.4s;
}

.resilience-bar:nth-child(4) {
    height: 35px;
    animation-delay: 0.6s;
}

.resilience-bar:nth-child(5) {
    height: 25px;
    animation-delay: 0.8s;
}

@keyframes barGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.2); }
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 191, 166, 0.8), 0 0 60px rgba(0, 191, 166, 0.4);
    background: linear-gradient(135deg, #00BFA6, #00D4B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-description {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Impact Summary */
.impact-summary {
    display: flex;
    justify-content: center;
    gap: 3rem;
    z-index: 10;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(0, 191, 166, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(0, 191, 166, 0.3);
    transition: all 0.3s ease;
}

.impact-item:hover {
    background: rgba(0, 191, 166, 0.2);
    transform: scale(1.05);
}

.impact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Impact Summary Icons */
.icon-globe {
    position: relative;
    width: 30px;
    height: 30px;
}

.globe-ring {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #FF6B6B;
    border-radius: 50%;
    animation: globeRotate 4s infinite linear;
}

.globe-ring:nth-child(2) {
    width: 20px;
    height: 20px;
    top: 5px;
    left: 5px;
    animation-direction: reverse;
    animation-duration: 3s;
}

.globe-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #FF6B6B;
    border-radius: 50%;
    animation: globePulse 2s infinite;
}

@keyframes globeRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes globePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.5); }
}

.icon-time {
    position: relative;
    width: 30px;
    height: 30px;
}

.time-circle {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #4ECDC4;
    border-radius: 50%;
}

.time-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 12px;
    background: #4ECDC4;
    transform-origin: bottom center;
    animation: timeTick 2s infinite;
}

.time-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #4ECDC4;
    border-radius: 50%;
}

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

.icon-verified {
    position: relative;
    width: 30px;
    height: 30px;
}

.check-circle {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #6C5CE7;
    border-radius: 50%;
    animation: checkPulse 2s infinite;
}

.check-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 6px;
    border-left: 2px solid #6C5CE7;
    border-bottom: 2px solid #6C5CE7;
    transform: translate(-50%, -60%) rotate(-45deg);
    animation: checkDraw 1.5s infinite;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes checkDraw {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.impact-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

/* Country Breakdown */
.country-breakdown {
    margin: 2rem 0;
    z-index: 10;
}

.breakdown-title {
    text-align: center;
    font-size: 1.5rem;
    color: #00BFA6;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.country-item {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 191, 166, 0.2);
    border-radius: 15px;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.country-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 191, 166, 0.4);
    box-shadow: 0 10px 25px rgba(0, 191, 166, 0.2);
}

.country-flag {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.country-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.country-projects {
    font-size: 0.8rem;
    color: #00BFA6;
    margin-bottom: 0.2rem;
}

.country-impact {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile responsive for stats */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .impact-summary {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 2rem 1rem;
    }
    
    .stats-title {
        font-size: 2.5rem;
    }
    
    .stats-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stats-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .stat-chart {
        height: 30px;
    }
    
    .chart-bar {
        width: 6px;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .country-item {
        padding: 1rem 0.8rem;
    }
    
    .impact-summary {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .impact-item {
        padding: 0.8rem 1.5rem;
    }
    
    .trend-indicator {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    .info-btn {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
}

/* Enhanced Slide Styles */
.projects-subtitle,
.problem-subtitle,
.solution-subtitle,
.satellite-subtitle,
.ai-subtitle,
.community-subtitle,
.blockchain-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.impact-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-primary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-primary);
}

.project-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.metric {
    text-align: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Orbitron', monospace;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
}

.verification-proof {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(0, 191, 166, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.verification-icon {
    font-size: 1.2rem;
}

.roi-indicator {
    text-align: center;
    margin-top: 1rem;
}

.roi-value {
    background: var(--gradient-accent);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.projects-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.summary-stat {
    text-align: center;
}

.summary-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Orbitron', monospace;
}

.summary-label {
    display: block;
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.african-context {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    border: 1px solid var(--highlight);
}

.context-stat {
    text-align: center;
}

.context-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--highlight);
    font-family: 'Orbitron', monospace;
}

.context-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.challenge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 0.5rem 0;
}

.challenge-icon {
    font-size: 1.5rem;
    color: var(--highlight);
}

.challenge-content {
    flex: 1;
}

.challenge-content strong {
    display: block;
    color: var(--light);
    margin-bottom: 0.25rem;
}

.challenge-content span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.urgency-timeline {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    border: 1px solid var(--highlight);
}

.urgency-timeline h3 {
    color: var(--highlight);
    margin-bottom: 1rem;
}

.solution-integration {
    margin: 2rem 0;
}

.integration-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.flow-step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    flex: 1;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 900;
}

.solution-details {
    margin-top: 1rem;
}

.detail {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin: 0.25rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 0.5rem 0;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.benefit-content {
    flex: 1;
}

.benefit-content strong {
    display: block;
    color: var(--light);
    margin-bottom: 0.25rem;
}

.benefit-content span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.implementation-timeline {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 191, 166, 0.1);
    border-radius: 20px;
    border: 1px solid var(--primary);
}

.timeline-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-align: center;
}

.satellite-purpose,
.ai-purpose,
.blockchain-purpose {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-style: italic;
}

.satellite-specs,
.ai-details,
.blockchain-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.spec {
    background: rgba(0, 191, 166, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    text-align: center;
}

.satellite-capabilities,
.ai-validation,
.blockchain-use-cases {
    margin: 2rem 0;
}

.capabilities-grid,
.validation-grid,
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.capability,
.validation-item,
.use-case-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.capability-icon,
.validation-icon,
.use-case-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.capability-content,
.validation-content,
.use-case-content {
    flex: 1;
}

.capability-content strong,
.validation-content strong,
.use-case-content strong {
    display: block;
    color: var(--light);
    margin-bottom: 0.25rem;
}

.capability-content span,
.validation-content span,
.use-case-content span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.satellite-performance,
.ai-metrics,
.blockchain-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.performance-stat,
.metric-item,
.trust-stat {
    text-align: center;
}

.performance-number,
.metric-number,
.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Orbitron', monospace;
}

.performance-label,
.metric-label,
.trust-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.coverage-map {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 191, 166, 0.1);
    border-radius: 20px;
    border: 1px solid var(--primary);
}

.ai-examples {
    margin: 2rem 0;
}

.example-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 0.5rem 0;
}

.example-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.example-text {
    color: var(--text-gray);
}

.community-empowerment,
.community-impact {
    margin: 2rem 0;
}

.empowerment-grid,
.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.empowerment-item,
.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.empowerment-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.empowerment-content {
    flex: 1;
}

.empowerment-content strong {
    display: block;
    color: var(--light);
    margin-bottom: 0.25rem;
}

.empowerment-content span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.impact-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Orbitron', monospace;
}

.impact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.testimonial.enhanced {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.testimonial-author {
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--light);
}

.author-role {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.blockchain-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.urgency-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--gradient-accent);
    color: var(--dark);
    border-radius: 50px;
    margin: 2rem 0;
    font-weight: 600;
}

.urgency-icon {
    font-size: 1.5rem;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.cta-option {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.cta-option h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-option p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.btn-tertiary {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--text-gray);
}

.btn-tertiary:hover {
    background: var(--text-gray);
    color: var(--dark);
}

.next-steps {
    text-align: center;
    margin: 2rem 0;
}

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 900;
}

.success-stories {
    margin: 2rem 0;
}

.story-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 191, 166, 0.1);
    border-radius: 12px;
    margin: 0.5rem 0;
}

.story-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.story-text {
    color: var(--text-gray);
    font-style: italic;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-text {
    color: var(--light);
    font-weight: 500;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 191, 166, 0.1);
    border-radius: 12px;
    border: 1px solid var(--primary);
}

.guarantee-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.guarantee-text {
    color: var(--light);
    font-weight: 500;
}

/* Mobile Responsiveness for Enhanced Elements */
@media (max-width: 768px) {
    .projects-content {
        padding: 1rem 0.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .project-card {
        padding: 1rem;
    }
    
    .projects-summary,
    .african-context,
    .satellite-performance,
    .ai-metrics,
    .blockchain-trust {
        grid-template-columns: 1fr;
    }
    
    .integration-flow,
    .timeline-steps,
    .steps-flow {
        flex-direction: column;
    }
    
    .flow-arrow,
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .capabilities-grid,
    .validation-grid,
    .use-case-grid,
    .empowerment-grid,
    .impact-grid,
    .blockchain-benefits {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid,
    .cta-options {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
}

/* Enhanced Slide 5 - Crisis Stats */
.crisis-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.crisis-stat {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.crisis-stat.primary {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.8);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.crisis-stat.secondary {
    border-color: #ffa726;
    background: rgba(255, 167, 38, 0.8);
    box-shadow: 0 0 20px rgba(255, 167, 38, 0.3);
}

.crisis-stat.gap {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.8);
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.3);
}

.crisis-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.crisis-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Impact Highlights */
.impact-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.highlight-card.critical {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.9);
}

.highlight-card.critical::before {
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
}

.highlight-card.urgent {
    border-color: #ffa726;
    background: rgba(255, 167, 38, 0.9);
}

.highlight-card.urgent::before {
    background: linear-gradient(90deg, transparent, #ffa726, transparent);
}

.highlight-card.opportunity {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.9);
}

.highlight-card.opportunity::before {
    background: linear-gradient(90deg, transparent, #4caf50, transparent);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.highlight-text {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Core Challenges */
.core-challenges {
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.challenges-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003366;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.challenge-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.challenge-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 191, 166, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.challenge-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.challenge-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.challenge-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.3;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness for Slide 5 */
@media (max-width: 768px) {
    .crisis-stats,
    .impact-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-card {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .crisis-number {
        font-size: 2rem;
    }
    
    .highlight-number {
        font-size: 1.5rem;
    }
}

/* Enhanced Problem Section Title Styling */
.problem-section .problem-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #003366 !important;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    letter-spacing: -0.02em;
}

.problem-section .problem-content p {
    font-size: 1.2rem;
    color: #333 !important;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.problem-section .challenges-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003366 !important;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.problem-section .challenge-card {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.problem-section .challenge-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333 !important;
    margin-bottom: 0.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.problem-section .challenge-desc {
    font-size: 0.85rem;
    color: #555 !important;
    line-height: 1.3;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===== INTERACTIVE SLIDE 6 STYLES ===== */

/* Interactive Flow */
.interactive-flow {
    margin: 1.5rem 0;
    width: 100%;
    max-width: 1200px;
}

.flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.flow-step {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    transform: translateY(0);
}

.flow-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 191, 166, 0.5);
    box-shadow: 0 20px 40px rgba(0, 191, 166, 0.2);
}

.step-visual {
    position: relative;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.flow-step:hover .step-icon {
    transform: scale(1.1);
}

.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 191, 166, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.flow-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.flow-step p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.step-indicator {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00BFA6, #00E5D4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 191, 166, 0.4);
}

.flow-connector {
    display: flex;
    align-items: center;
    position: relative;
}

.connector-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 191, 166, 0.5), rgba(0, 191, 166, 0.8));
    position: relative;
}

.connector-arrow {
    position: absolute;
    right: -15px;
    font-size: 1.5rem;
    color: #00BFA6;
    animation: arrowFlow 2s infinite;
}

@keyframes arrowFlow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Details Section */
.details-section {
    margin: 1.5rem 0;
    width: 100%;
    max-width: 1200px;
}

.details-toggle {
    text-align: center;
    margin-bottom: 1rem;
}

.toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.toggle-btn:hover {
    background: rgba(0, 191, 166, 0.2);
    border-color: rgba(0, 191, 166, 0.5);
    transform: translateY(-2px);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.details-content.active {
    max-height: 1000px;
}

/* Collapsible Items */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.collapsible-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.collapsible-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 191, 166, 0.3);
}

.item-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.item-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.solution-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.item-header h3 {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.expand-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(0, 191, 166, 0.2);
    border: 1px solid rgba(0, 191, 166, 0.5);
    color: #00BFA6;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expand-btn:hover {
    background: rgba(0, 191, 166, 0.3);
    transform: scale(1.1);
}

.expand-btn.active {
    transform: rotate(45deg);
}

.item-content {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.item-content.active {
    padding: 0 1rem 1rem;
    max-height: 200px;
}

.item-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
}

.solution-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.detail-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.detail-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    margin: 1.5rem 0;
    width: 100%;
    max-width: 1200px;
}

.benefits-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefits-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 191, 166, 0.5);
    box-shadow: 0 20px 40px rgba(0, 191, 166, 0.2);
}

.benefit-visual {
    position: relative;
    margin-bottom: 1rem;
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-glow {
    opacity: 1;
}

.benefit-content {
    margin-bottom: 0.8rem;
}

.benefit-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.benefit-content span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.benefit-metric {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: linear-gradient(135deg, #00BFA6, #00E5D4);
    color: #000;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 191, 166, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .flow-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-connector {
        transform: rotate(90deg);
    }
    
    .connector-line {
        width: 40px;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-carousel {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        min-width: auto;
        width: 100%;
    }
}

/* ===== ENHANCED SATELLITE SLIDE 7 STYLES ===== */

/* Satellite Animation Container */
.satellite-animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.satellite-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background: transparent;
}

.satellite-orbit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 191, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 191, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 191, 166, 0.05) 0%, transparent 70%);
    animation: orbitPulse 4s ease-in-out infinite;
}

@keyframes orbitPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Enhanced Satellite Grid */
.satellite-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    max-width: 100%;
}

.interactive-satellite {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
    max-height: 250px;
}

.interactive-satellite:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.satellite-visual {
    position: relative;
    margin-bottom: 1rem;
}

.satellite-icon {
    font-size: 3rem;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.interactive-satellite:hover .satellite-icon {
    transform: scale(1.1) rotate(10deg);
}

.satellite-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: satelliteGlow 2s ease-in-out infinite;
}

.interactive-satellite:hover .satellite-glow {
    opacity: 1;
}

@keyframes satelliteGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.satellite-signal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 191, 166, 0.3);
    border-radius: 50%;
    animation: signalPulse 3s ease-in-out infinite;
}

@keyframes signalPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.satellite-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.satellite-purpose {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.satellite-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.spec-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.spec {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.satellite-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(0, 191, 166, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 191, 166, 0.3);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00BFA6;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-text {
    font-size: 0.7rem;
    color: #00BFA6;
    font-weight: 600;
}

/* Enhanced Performance Stats */
.satellite-performance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    max-width: 100%;
}

.animated-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.animated-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 191, 166, 0.5);
    box-shadow: 0 15px 30px rgba(0, 191, 166, 0.2);
}

.stat-visual {
    position: relative;
    margin-bottom: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.animated-stat:hover .stat-icon {
    transform: scale(1.1);
}

.stat-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 191, 166, 0.3);
    border-radius: 50%;
    animation: statPulse 2s ease-in-out infinite;
}

@keyframes statPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.performance-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #00BFA6;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 191, 166, 0.3);
}

.performance-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.3;
}

/* Enhanced Coverage Section */
.interactive-coverage {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.interactive-coverage:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 191, 166, 0.5);
    box-shadow: 0 20px 40px rgba(0, 191, 166, 0.2);
}

.coverage-visual {
    position: relative;
    flex-shrink: 0;
}

.coverage-icon {
    font-size: 4rem;
    display: block;
    transition: transform 0.3s ease;
}

.interactive-coverage:hover .coverage-icon {
    transform: scale(1.1) rotate(5deg);
}

.coverage-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 191, 166, 0.3);
    border-radius: 50%;
    animation: coveragePulse 3s ease-in-out infinite;
}

@keyframes coveragePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.coverage-content {
    flex: 1;
}

.coverage-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.coverage-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.coverage-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.coverage-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.coverage-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00BFA6;
    margin-bottom: 0.3rem;
}

.coverage-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Large Screen Optimization */
@media (min-width: 1200px) {
    .satellite-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 0 2rem;
    }
    
    .satellite-performance {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .satellite-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .satellite-performance {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .interactive-coverage {
        flex-direction: column;
        text-align: center;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
    }
}
