/* ============================================
   CHIEDZA CHILD CARE - STANDARDIZED CSS
   Version: 1.0
   ============================================ */

/* ============================================
   1. CSS VARIABLES (Root Level)
   ============================================ */

:root {
    /* Primary Colors */
    --color-primary: #1e3a2f;
    --color-primary-light: #2d5a4a;
    --color-primary-dark: #152c24;
    --color-secondary: #f4b942;
    --color-secondary-light: #f9d56e;
    --color-secondary-dark: #e8a735;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-off-white: #fef9f0;
    --color-cream: #fff5e6;
    --color-light-gray: #f5f5f5;
    --color-gray: #e0e0e0;
    --color-dark-gray: #4a4a4a;
    --color-black: #1e2a3e;
    
    /* Text Colors */
    --text-dark: #1e3a2f;
    --text-medium: #2d5a4a;
    --text-light: #4a6658;
    --text-white: #ffffff;
    
    /* Background Gradients */
    --bg-primary: linear-gradient(145deg, var(--color-off-white), var(--color-cream));
    --bg-secondary: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    --bg-accent: linear-gradient(145deg, #eef3ea, #e8f0e7);
    --bg-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    
    /* Spacing Variables */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;
    
    /* Container Widths */
    --container-sm: 800px;
    --container-md: 1024px;
    --container-lg: 1200px;
    --container-xl: 1400px;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-xxl: 3rem;
    --radius-round: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.05);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-Index Layers */
    --z-bottom: -1;
    --z-normal: 1;
    --z-top: 10;
    --z-overlay: 100;
    --z-modal: 1000;
}

/* ============================================
   2. GLOBAL RESET & BASE STYLES
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.nav-links a {
    font-size: 1.2rem !important;
}

.logo img {
    height: 10vh !important;
    /* min-height: 40px; */
    /* max-height: 60px; */
    width: auto;
    transition: transform 0.3s ease;
}

/* ============================================
   3. TYPOGRAPHY SYSTEM
   ============================================ */

h1, .h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

h2, .h2 {
    font-size: 2.5rem !important;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h3, .h3 {
    font-size: 2rem !important;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
}

h4, .h4 {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.4;
}

p {
    font-size: 1.3rem !important;
    line-height: 1.6;
    color: var(--text-medium);
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

/* ============================================
   4. CONTAINER SYSTEM (Centered Content)
   ============================================ */

.container {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* Container Variants */
.container-sm {
    max-width: var(--container-sm);
}

.container-md {
    max-width: var(--container-md);
}

.container-lg {
    max-width: var(--container-lg);
}

.container-fluid {
    max-width: 100%;
    padding: 0 var(--spacing-md);
}

/* ============================================
   5. BACKGROUND VARIANTS
   ============================================ */

/* Primary Background (Default) */
.bg-primary {
    background: var(--bg-primary);
}

/* Secondary Background (Dark Green) */
.bg-secondary {
    background: var(--bg-secondary);
    color: var(--text-white);
}

.bg-secondary .section-title,
.bg-secondary h1, .bg-secondary h2, .bg-secondary h3 {
    color: var(--text-white);
}

.bg-secondary p {
    color: rgba(255, 255, 255, 0.9);
}

/* Accent Background (Light Green Gradient) */
.bg-accent {
    background: var(--bg-accent);
}

/* Glass Background */
.bg-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
}

/* Solid Color Variants */
.bg-white {
    background: var(--color-white);
}

.bg-cream {
    background: var(--color-cream);
}

.bg-off-white {
    background: var(--color-off-white);
}

/* ============================================
   6. SECTION SPACING (Standardized)
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
}

/* Reduced spacing for smaller screens */
@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
    }
}

/* Section spacing variants */
.section-padding-sm {
    padding: var(--spacing-lg) 0;
}

.section-padding-md {
    padding: var(--spacing-xl) 0;
}

.section-padding-lg {
    padding: var(--spacing-xxl) 0;
}

.section-padding-none {
    padding: 0;
}

/* ============================================
   7. GLASSMORPHISM COMPONENTS
   ============================================ */

.glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
}

.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 240, 0.4);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.35);
}

/* ============================================
   8. BUTTON SYSTEM
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-round);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--text-white);
    padding: 5px;
    border-radius: 7px;
    font-size: 0.7rem;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--color-primary);
    /*transform: translateY(-2px);*/
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 5px;
    border-radius: 7px;
    font-size: 0.7rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--color-secondary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid black;
    color: black;
    padding: 5px;
    border-radius: 7px;
    font-size: 0.7rem;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--text-white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* ============================================
   9. TITLE DIVIDERS
   ============================================ */

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-light));
    margin: var(--spacing-sm) auto 0;
    border-radius: 3px;
}

.title-divider-left {
    margin: var(--spacing-sm) 0 0 0;
}

/* ============================================
   10. SECTION HEADER
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header-left {
    text-align: left;
}

/* ============================================
   11. RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    h1, .h1 {
        font-size: 3rem;
    }
    
    h2, .h2 {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1, .h1 {
        font-size: 2.2rem;
    }
    
    h2, .h2 {
        font-size: 1.8rem;
    }
    
    h3, .h3 {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    h1, .h1 {
        font-size: 1.8rem;
    }
    
    h2, .h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
    }
}

/* ============================================
   12. UTILITY CLASSES
   ============================================ */

/* Text Colors */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-white { color: var(--text-white); }
.text-dark { color: var(--text-dark); }
.text-medium { color: var(--text-medium); }
.text-light { color: var(--text-light); }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Spacing Utilities */
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* Flex Utilities */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-column { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: var(--spacing-xs); }
.gap-2 { gap: var(--spacing-sm); }
.gap-3 { gap: var(--spacing-md); }

/* Grid Utilities */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive Grid */
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   13. ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn var(--transition-slow) forwards;
}

.animate-slide-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============================================
   14. EXISTING COMPONENT STYLES
   (Hero, Stats, Pillars, etc.)
   ============================================ */

/* Import or keep your existing component styles below */
/* Make sure they use the CSS variables defined above */

/* Stats Section - Standardized */
.stats-section {
    background: var(--bg-primary);
}

/* Pillars Section */
.pillars-section {
    background: var(--bg-accent);
}

/* Keep your existing component styles but update colors to use variables */









/* ============================================
   STATS SECTION - Reusable Component
   Can be used on any page with consistent styling
   ============================================ */

.stats-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Background Variants */
.stats-section--light {
    background: linear-gradient(145deg, #fef9f0, #fff5e6);
}

.stats-section--dark {
    background: linear-gradient(145deg, #1e3a2f, #2d5a4a);
    color: white;
}

.stats-section--dark .stat-card {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.stats-section--dark .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.stats-section--dark .stat-number {
    color: #f4b942;
}

.stats-section--gradient {
    background: linear-gradient(135deg, #1e3a2f 0%, #2d5a4a 50%, #3d7a62 100%);
    color: white;
}

.stats-section--gradient .stat-card {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Stats Header */
.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-header .section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f4b942;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stats-header .section-title {
    font-size: 2.5rem;
    color: #1e3a2f;
    margin-bottom: 1rem;
}

.stats-section--dark .stats-header .section-title,
.stats-section--gradient .stats-header .section-title {
    color: white;
}

.stats-header .title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f4b942, #f9d56e);
    margin: 1rem auto 0;
    border-radius: 3px;
}

/* Stats Grid - Responsive columns based on number of items */
.stats-grid {
    display: grid;
    gap: 2rem;
    margin: 0 auto;
}

/* Dynamic column count based on stats quantity */
.stats-grid--1 {
    grid-template-columns: 1fr;
    max-width: 300px;
}

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

.stats-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
}

.stats-grid--4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
}

/* Individual Stat Card */
.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

/* Icon Wrapper */
.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(244, 185, 66, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Icon - No constant heartbeat, only on hover */
.stat-icon {
    font-size: 2.5rem;
    color: #f4b942;
    transition: all 0.3s ease;
}

/* Heartbeat Animation only on hover */
.stat-card:hover .stat-icon {
    animation: heartbeat 0.6s ease-in-out;
    transform-origin: center;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Stat Number */
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a2f;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Stat Label */
.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #2d5a4a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Optional Description Text */
.stat-description {
    font-size: 0.85rem;
    color: #4a6658;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Dark theme adjustments for description */
.stats-section--dark .stat-description,
.stats-section--gradient .stat-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Decorative Elements */
.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 185, 66, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
    
    .stats-grid--3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 3rem 0;
    }
    
    .stats-grid--2,
    .stats-grid--3,
    .stats-grid--4 {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .stats-header .section-title {
        font-size: 1.8rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-header .section-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Animation for stats when they come into view */
.stat-card.animated {
    animation: statCardAppear 0.6s ease forwards;
}

@keyframes statCardAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print styles */
@media print {
    .stats-section {
        background: none;
        color: black;
        padding: 1rem 0;
    }
    
    .stat-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        background: none;
    }
    
    .stat-icon-wrapper {
        background: none;
    }
}

/* Smooth transition for the icon wrapper shape */
.stat-icon-wrapper {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Multiple shape variations on hover for more organic feel */
.stat-card:hover .stat-icon-wrapper {
    animation: organicShape 0.6s ease-in-out forwards;
}

@keyframes organicShape {
    0% {
        border-radius: 50%;
    }
    50% {
        border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}








/* ============================================
   ABOUT STORY SECTION
   From Under a Tree to Transforming Lives
   ============================================ */

.about-story-section {
    padding: 5rem 0;
    background: linear-gradient(145deg, #fef9f0, #fff5e6);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.about-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 185, 66, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-story-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 58, 47, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-story--split {
    gap: 3rem;
}

/* Image Section */
.about-story-image {
    position: relative;
}

.image-wrapper {
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(30, 58, 47, 0.9), rgba(45, 90, 74, 0.9));
    color: white;
    padding: 0.8rem;
    text-align: center;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

.image-caption i {
    margin-right: 0.5rem;
    color: #f4b942;
}

.floating-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #f4b942;
    color: #1e3a2f;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    animation: floatingBadge 2s ease-in-out infinite;
}

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

.floating-badge i {
    margin-right: 0.5rem;
}

/* Content Section */
.about-story-content .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-story-content .section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.about-story-content .title-divider {
    margin: 1rem 0 0 0;
}

/* Story Timeline */
.story-timeline {
    position: relative;
    margin: 2rem 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #f4b942, #2d5a4a);
    border-radius: 3px;
}

.marker-dot {
    position: absolute;
    top: 0;
    left: -6px;
    width: 15px;
    height: 15px;
    background: #f4b942;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

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

.timeline-content {
    padding-left: 2rem;
}

.story-paragraph {
    margin-bottom: 2rem;
    position: relative;
}

.story-year {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #f4b942;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-paragraph p {
    color: #2d5a4a;
    line-height: 1.8;
    font-size: 1rem;
}

.story-paragraph strong {
    color: #1e3a2f;
    font-weight: 700;
}

/* Stat Highlight */
.story-stat-highlight {
    background: linear-gradient(135deg, rgba(244, 185, 66, 0.15), rgba(30, 58, 47, 0.1));
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    margin: 2rem 0;
    border: 1px solid rgba(244, 185, 66, 0.3);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f4b942;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 0.9rem;
    color: #2d5a4a;
    line-height: 1.4;
}

/* Mission Statement */
.story-mission-statement {
    background: rgba(30, 58, 47, 0.05);
    border-left: 4px solid #f4b942;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 1rem 1rem 0;
}

.story-mission-statement i {
    font-size: 2rem;
    color: #f4b942;
    opacity: 0.5;
    margin-bottom: 0.5rem;
    display: block;
}

.story-mission-statement p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d5a4a;
    font-style: italic;
}

.story-mission-statement strong {
    color: #1e3a2f;
    font-style: normal;
}

/* CTA Button */
.story-cta {
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-story-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-story-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .floating-badge {
        top: -10px;
        right: -10px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .about-story-section {
        padding: 3rem 0;
    }
    
    .about-story-content .section-title {
        font-size: 1.8rem;
    }
    
    .story-paragraph p {
        font-size: 0.95rem;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
    
    .story-mission-statement p {
        font-size: 1rem;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .timeline-content {
        padding-left: 1.5rem;
    }
    
    .story-year {
        font-size: 1rem;
    }
    
    .story-stat-highlight {
        padding: 1rem;
    }
    
    .highlight-number {
        font-size: 1.5rem;
    }
}







/* ============================================
   FULL ABOUT US SECTION
   Organization Background + Journey Timeline
   ============================================ */

.about-full-section {
    padding: 5rem 0;
    background: linear-gradient(145deg, #fef9f0, #fff5e6);
    position: relative;
    overflow: hidden;
}

.about-full-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse at top, rgba(244, 185, 66, 0.08), transparent);
    pointer-events: none;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a2f;
    margin: 1rem 0;
}

.about-title .highlight {
    color: #f4b942;
    position: relative;
}

.about-title .highlight::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(244, 185, 66, 0.3);
    z-index: -1;
}

.pvo-badge {
    display: inline-block;
    background: #00a0da !important;
    color: white !important;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* About Grid Cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 185, 66, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-icon i {
    font-size: 1.8rem;
    color: #f4b942;
}

.about-card h3 {
    font-size: 1.5rem;
    color: #1e3a2f;
    margin-bottom: 1rem;
}

.about-card p {
    color: #2d5a4a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-tag, .sdg-badge {
    background: rgba(244, 185, 66, 0.1);
    padding: 0.8rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

.about-tag i, .sdg-badge i {
    color: #f4b942;
    margin-right: 0.5rem;
}

/* Crisis Stats */
.crisis-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

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

.crisis-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f4b942;
}

.crisis-label {
    font-size: 0.8rem;
    color: #2d5a4a;
}

/* Journey Section */
.journey-section {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(244, 185, 66, 0.2);
}

.journey-header {
    text-align: center;
    margin-bottom: 3rem;
}

.journey-header i {
    font-size: 3rem;
    color: #f4b942;
    margin-bottom: 1rem;
}

.journey-header h2 {
    font-size: 2rem;
    color: #1e3a2f;
    margin-bottom: 0.5rem;
}

.journey-header p {
    color: #2d5a4a;
}

/* Horizontal Timeline */
.timeline-horizontal {
    overflow-x: auto;
    padding: 2rem 0;
}

.timeline-track {
    display: flex;
    gap: 2rem;
    min-width: min-content;
    padding: 0 1rem;
}

.timeline-node {
    flex: 1;
    min-width: 250px;
    position: relative;
    padding-top: 2rem;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background: #f4b942;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(244, 185, 66, 0.3);
}

.timeline-node::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 16px;
    right: -2rem;
    height: 2px;
    background: linear-gradient(90deg, #f4b942, #2d5a4a);
}

.timeline-node:last-child::before {
    display: none;
}

.today-dot {
    background: #1e3a2f;
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(30, 58, 47, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(30, 58, 47, 0);
    }
}

.timeline-year {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f4b942;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: #1e3a2f;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #2d5a4a;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.timeline-stat {
    font-size: 0.8rem;
    color: #f4b942;
    font-weight: 600;
}

.timeline-stat i {
    margin-right: 0.3rem;
}

.highlight-stat {
    color: #1e3a2f;
    background: rgba(244, 185, 66, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    display: inline-block;
}

/* Impact Summary */
.impact-summary {
    margin-bottom: 3rem;
}

.impact-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.impact-summary-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(244, 185, 66, 0.2);
    transition: all 0.3s ease;
}

.impact-summary-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
}

.summary-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f4b942;
}

.summary-label {
    font-size: 0.85rem;
    color: #2d5a4a;
    font-weight: 600;
    margin-top: 0.3rem;
}

.summary-sub {
    font-size: 0.7rem;
    color: #4a6658;
    margin-top: 0.2rem;
}

/* About CTA */
.about-cta {
    margin-top: 2rem;
}

.cta-inner {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(244, 185, 66, 0.15), rgba(30, 58, 47, 0.1));
    border-radius: 2rem;
}

.cta-inner i {
    font-size: 3rem;
    color: #f4b942;
    margin-bottom: 1rem;
}

.cta-inner h3 {
    font-size: 1.8rem;
    color: #1e3a2f;
    margin-bottom: 0.5rem;
}

.cta-inner p {
    color: #2d5a4a;
    margin-bottom: 1.5rem;
}

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

/* Responsive */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .journey-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-full-section {
        padding: 3rem 0;
    }
    
    .timeline-node {
        min-width: 280px;
    }
    
    .impact-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-inner {
        padding: 2rem;
    }
    
    .cta-inner h3 {
        font-size: 1.3rem;
    }
    
    .crisis-stats {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .timeline-node {
        min-width: 260px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .about-card {
        padding: 1.5rem;
    }
}


/* Sun Rays - Appear at midday */
.sun-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.1s linear;
}










/* Stats Section with JS-Driven Smooth Day/Night Cycle */
.stats-section--gradient {
    position: relative;
    padding: 10%;
    overflow: hidden;
    transition: background 0.05s linear;
}

/* Fixed background image overlay */
.stats-section--gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../../chiedza/public/images/education/science-experiment.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

/* The Sun - animated by JS */
.stats-section--gradient .sun-core {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.05s linear, transform 0.05s linear, background 0.05s linear, box-shadow 0.05s linear;
}

/* Sun aura - animated by JS */
.stats-section--gradient .sun-aura {
    position: absolute;
    top: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    transition: opacity 0.05s linear, transform 0.05s linear, filter 0.05s linear;
}

/* Opposite end glow - animated by JS */
.stats-section--gradient .opposite-glow {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(30, 80, 50, 0.12) 0%, transparent 75%);
    filter: blur(60px);
    transition: background 0.05s linear, filter 0.05s linear;
}

/* Content container - Above all effects */
.stats-section--gradient .container {
    position: relative;
    z-index: 10;
}

/* Stats grid layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Stat Card base styling */
.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.1s linear, border-color 0.1s linear;
}

.stat-card:hover {
    transform: translateY(-8px);
}

/* Icon wrapper */
.stat-icon-wrapper {
    display: inline-block;
    margin-bottom: 1rem;
}

.stat-icon {
    font-size: 3rem;
    display: inline-block;
    transition: color 0.05s linear, filter 0.05s linear;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    transition: color 0.05s linear, text-shadow 0.05s linear;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.05s linear;
}

.stat-description {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    transition: color 0.05s linear;
}

/* Section header styles */
.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f4b942;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.2rem;
    color: #1e3a2f;
    margin-bottom: 1rem;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f4b942, #f9d56e);
    margin: 1rem auto 0;
    border-radius: 3px;
}

/* Stats section background variants */
.stats-section--gradient {
    background: linear-gradient(135deg, #0a1a15 0%, #0f2a20 50%, #0d2018 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-section--gradient {
        padding: 3rem 0;
    }
    
    .sun-core {
        width: 200px !important;
        height: 200px !important;
        top: -60px !important;
        left: -60px !important;
    }
    
    .sun-aura {
        width: 280px !important;
        height: 280px !important;
        top: -80px !important;
        left: -80px !important;
    }
}

.custom-btn {
    background-color: #f4b942 !important;
    color: #00a0da !important;
    padding: 0px 10px 0 10px;
    font-size: 1.3rem;
}



.page-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100% !important;
}

.hero-title .highlight {
    color: #ffbe00 !important;
}

.highlight {
    color: #ffbe00 !important;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 160, 218, 0.4) !important;
    backdrop-filter: blur(10px);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem !important;
    font-weight: 600;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}


.hero-title {
    font-size: 5rem !important;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}













/* Why Vocational Training Section */
.vocational-section {
    margin-bottom: 3rem;
}

.vocational-wrapper {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 160, 218, 0.08), rgba(255, 190, 0, 0.06));
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 160, 218, 0.1);
}

.vocational-header {
    text-align: center;
    margin-bottom: 2rem;
}

.vocational-icon {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.vocational-icon i {
    font-size: 2.5rem;
    color: #ffbe00;
}

.vocational-title {
    font-size: 2rem;
    color: #1e3a2f;
    margin-bottom: 0.5rem;
}

.vocational-title .highlight {
    color: #00A0DA;
}

.vocational-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Text Side */
.vocational-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vocational-description {
    color: #2d5a4a;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Benefits */
.vocational-benefits {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 160, 218, 0.08);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.benefit:hover {
    background: rgba(0, 160, 218, 0.15);
    transform: translateY(-2px);
}

.benefit i {
    color: #00A0DA;
    font-size: 1rem;
}

.benefit span {
    font-size: 0.85rem;
    color: #1e3a2f;
    font-weight: 500;
}

/* Image Side */
.vocational-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.vocational-image:hover img {
    transform: scale(1.03);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 160, 218, 0.9), rgba(0, 160, 218, 0.7));
    color: white;
    padding: 0.8rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}

.image-caption i {
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .vocational-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vocational-image {
        order: -1;
        max-height: 300px;
    }
    
    .vocational-image img {
        max-height: 300px;
    }
    
    .vocational-benefits {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .vocational-wrapper {
        padding: 1.5rem;
    }
    
    .vocational-title {
        font-size: 1.5rem;
    }
    
    .vocational-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit {
        width: 100%;
        justify-content: center;
    }
    
    .vocational-image {
        max-height: 220px;
    }
    
    .vocational-image img {
        max-height: 220px;
    }
}

@media (max-width: 480px) {
    .vocational-wrapper {
        padding: 1rem;
    }
    
    .vocational-title {
        font-size: 1.2rem;
    }
    
    .vocational-description {
        font-size: 0.85rem;
    }
}




.vocational-wrapper {
    text-align: left !important;
}


.service-card p {
    text-align: left !important;
}