/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1f2937;
    background-color: #ffffff;
    line-height: 1.5;
}

/* Hero Section Layout */
.hero-section {
    padding: 80px 20px 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f9fb 0%, #e6f2f6 100%);
}



.hero-container {
    width: 100%;
    max-width: 1200px; /* Matches Home Page */
    padding: 0 clamp(15px, 4vw, 40px); /* Matches Home Page fluid padding */
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Top Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 24px;
    background-color: #ffffff;
}

.icon-star {
    width: 16px;
    height: 16px;
}

/* Typography Styling */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #52b5d0;
    position: relative;
    display: inline-block;
}

.underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 12px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Call to Action Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background-color: #52b5d0;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(82, 181, 208, 0.3);
}

.btn-primary:hover {
    background-color: #439bb4;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    color: #111827;
}

/* Image Gallery Layout */
.hero-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1100px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Pushes the middle image down slightly to match the staggered look */
.center-item {
    transform: translateY(20px);
}

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

/* Responsive Design for Tablets and Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .hero-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .center-item {
        transform: none; /* Removes the offset on mobile so they stack cleanly */
    }

    .gallery-item {
        height: 250px;
    }
}

/* Base Resets & Variables */
:root {
    --blue: #0284c7;
    --blue-light: #e0f2fe;
    --green: #10b981;
    --green-light: #d1fae5;
    --teal: #14b8a6;
    --yellow: #f59e0b;
    --yellow-light: #fef3c7;
    --pink: #f43f5e;
    --pink-light: #ffe4e6;
    --dark: #1e293b;
    --darker: #0f172a;
    --gray: #64748b;
    --gray-light: #f8fafc;
    --border: #e2e8f0;
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: #ffffff;
}

.about-container {
    width: 100%;
    max-width: 1200px; /* Matches Home Page */
    /* Keeps the 40px top/bottom padding, but uses the fluid left/right padding */
    padding: 40px clamp(15px, 4vw, 40px); 
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
/* Typography Utilities */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--darker);
}
.section-desc {
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
}
.text-left { text-align: left; margin-left: 0; }
.text-blue { color: var(--blue); }
.text-green { color: var(--green); }
.text-yellow { color: var(--yellow); }
.text-pink { color: var(--pink); }

.text-blue-light { color: var(--blue-light); }
.text-green-light { color: var(--green-light); }
.text-yellow-light { color: var(--yellow-light); }
.text-pink-light { color: var(--pink-light); }

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-teal { background: var(--green-light); color: var(--teal); }
.solid-badge { background: var(--teal); color: white; display: table; margin: 0 auto 15px; }

/* 1. Who We Are */
.who-we-are {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}
.stat-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
}
.stat-card h3 { font-size: 1.8rem; font-weight: 700; line-height: 1.2; }
.stat-card p { font-size: 0.85rem; color: var(--gray); font-weight: 500;}
.border-blue { border-left: 3px solid var(--blue); }
.border-green { border-left: 3px solid var(--green); }
.border-yellow { border-left: 3px solid var(--yellow); }
.border-pink { border-left: 3px solid var(--pink); }

.approach-card {
    background: linear-gradient(135deg, #629ab3, #13966b);
    padding: 40px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}
.approach-card h3 { font-size: 1.5rem; margin-bottom: 25px; }
.check-list { list-style: none; }
.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    font-weight: 500;
}
.check-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    padding: 3px;
}

/* 2. Specialized Support */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.support-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.top-blue { border-top: 4px solid var(--blue); }
.top-green { border-top: 4px solid var(--green); }
.top-yellow { border-top: 4px solid var(--yellow); }

.icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.icon-wrap svg { width: 20px; height: 20px; }
.icon-blue { background: var(--blue-light); color: var(--blue); }
.icon-green { background: var(--green-light); color: var(--green); }
.icon-yellow { background: var(--yellow-light); color: var(--yellow); }
.icon-pink { background: var(--pink-light); color: var(--pink); }

.support-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.support-card p { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; }
.bullet-list { padding-left: 20px; font-size: 0.85rem; color: var(--gray); }
.bullet-list li { margin-bottom: 6px; }
.list-blue li::marker { color: var(--blue); }
.list-green li::marker { color: var(--green); }
.list-yellow li::marker { color: var(--yellow); }

/* 3. Vision Banner */
.vision-banner {
    display: flex;
    background: linear-gradient(90deg, #1e293b 0%, #0369a1 100%);
    border-radius: 16px;
    color: white;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3, 105, 161, 0.2);
}
.vision-left {
    padding: 40px;
    background: rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}
.icon-outline {
    width: 50px; height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.icon-outline svg { width: 24px; height: 24px; opacity: 0.8; }
.vision-right {
    padding: 40px;
    display: flex;
    align-items: center;
}
.vision-right p { font-size: 1.1rem; line-height: 1.8; }

/* 4. Mission Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}
.pillar-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
}
.border-left-blue { border-left: 4px solid var(--blue); }
.border-left-green { border-left: 4px solid var(--green); }
.border-left-yellow { border-left: 4px solid var(--yellow); }
.border-left-pink { border-left: 4px solid var(--pink); }

.pillar-text h3 { font-size: 1.05rem; margin-bottom: 5px; }
.pillar-text p { font-size: 0.9rem; color: var(--gray); }

/* 5. Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    margin-top: 40px;
}
.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.value-icon svg { width: 32px; height: 32px; }
.bg-green { background: #10b981; }
.bg-teal { background: #0ea5e9; }
.bg-yellow { background: #f59e0b; }
.bg-pink { background: #f43f5e; }

.value-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-item p { font-size: 0.85rem; color: var(--gray); padding: 0 10px; }

/* 6. Commitment */
.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}
.commit-card {
    padding: 30px;
    border: 1px solid;
    border-radius: 16px;
    background: white;
}
.border-card-blue { border-color: var(--blue-light); }
.border-card-pink { border-color: var(--pink-light); }
.border-card-green { border-color: var(--green-light); }
.border-card-yellow { border-color: var(--yellow-light); }

.commit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.icon-solid {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.icon-solid svg { width: 18px; height: 18px; }
.bg-blue { background: var(--blue); }

.big-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}
.commit-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.commit-card p { font-size: 0.9rem; color: var(--gray); }

/* 7. CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1e293b 0%, #10b981 100%);
    padding: 60px 20px;
    border-radius: 16px;
    text-align: center;
    color: white;
}
.cta-banner h2 { font-size: 2rem; margin-bottom: 15px; }
.cta-banner p { font-size: 1.05rem; opacity: 0.9; max-width: 600px; margin: 0 auto 30px; }
.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-white { background: white; color: var(--teal); }
.btn-outline { background: transparent; border: 2px solid white; color: white; }

/* Responsive Design */
@media (max-width: 900px) {
    .who-we-are, .vision-banner, .pillars-grid, .commitment-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .support-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .vision-left { min-width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 600px) {
    .support-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .section-title { font-size: 1.8rem; }
    .about-container { gap: 60px; }
}

/* Adjust container widths for smaller screens */
@media (max-width: 1000px) {
    .hero-container,
    .about-container {
        width: 90%; /* Expands to 90% on tablets */
    }
}

@media (max-width: 600px) {
    .hero-container,
    .about-container {
        width: 100%; /* Goes full width on phones */
        padding-left: 15px;
        padding-right: 15px;
    }
}
.stat-card, 
.support-card, 
.pillar-card, 
.value-icon, 
.commit-card, 
.btn, 
.check-list li,
.icon-wrap,
.icon-solid,
.big-number {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Buttons */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn:active {
    transform: translateY(-1px); /* Slight press down effect when clicked */
}
.btn:hover svg {
    transform: translateX(4px); /* Nudges the arrow icon to the right */
}

/* 3. Stat Cards (Who We Are section) */
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}


/* 5. Specialized Support Cards */
.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.support-card:hover .icon-wrap {
    transform: scale(1.15) rotate(5deg); /* Pops the icon */
}

/* 6. Mission Pillar Cards */
.pillar-card:hover {
    transform: translateX(6px) translateY(-4px); /* Slight diagonal lift */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}
.pillar-card:hover .icon-wrap {
    transform: scale(1.1);
}

/* 7. Values Icons */
.value-item:hover .value-icon {
    transform: translateY(-10px) scale(1.05); /* Lifts the circular icon */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* 8. Commitment Cards */
.commit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}
.commit-card:hover .icon-solid {
    transform: scale(1.15) rotate(-10deg); /* Playful icon tilt */
}
.commit-card:hover .big-number {
    transform: scale(1.1) translateX(-5px); /* Enhances the background number */
    opacity: 0.6; /* Makes it slightly more prominent on hover */
}