/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #003366;
    /* Dark Blue from Logo */
    --color-secondary: #f8f9fa;
    /* Very Light Grey - Professional BG */
    --color-accent: #e63946;
    /* Red/Orange Accent */
    --color-text: #2c3e50;
    /* Dark Grey for Text */
    --color-text-light: #5f6c7b;
    /* Softer Grey */
    --color-white: #ffffff;
    --color-border: #e2e8f0;
    /* Subtle Border */
    --color-green: #2a9d8f;
    /* Success/Health Green */
    --color-gold: #d4af37;
    /* Prestige/Gold */
    --color-bg-light: #eff2f7;

    --font-primary: 'Poppins', sans-serif;
    /* Headings */
    --font-secondary: 'Inter', sans-serif;
    /* Body Text */

    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;

    /* REFINED SHADOWS - Subtle & Professional */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05);

    --transition-base: all 0.2s ease-in-out;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.7;
    /* Improved Readability */
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 40px 0;
    /* Reduced for denser professional feel */
}

.centered {
    text-align: center;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

/* Optional underline decorator */
.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background-color: var(--color-accent);
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
}

.section-title.left::after {
    margin-left: 0;
}


@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
}

/* Buttons - Flat & Modern */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: #002244;
    /* No movement, just color shift */
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    /* Thinner border */
}

.btn-secondary-outline:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn-large {
    padding: 16px 48px;
    font-size: 1rem;
}

/* Header & Nav */
.header {
    background: white;
    border-bottom: 1px solid var(--color-border);
    /* Border instead of shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 60px;
}

.nav-menu {
    display: flex;
    gap: 16px;
    /* Nicer spacing */
    align-items: center;
    margin-bottom: 0;
}

.nav-menu a {
    font-weight: 500;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
}

.btn-primary-nav {
    background-color: var(--color-accent);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}

.btn-primary-nav:hover {
    background-color: #c92a37;
    color: white !important;
}

/* Dropdown Menu - Clean */
.has-dropdown {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--color-border);
    /* Border instead of relying on shadow */
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-sm);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    padding: 8px 0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 24px;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 400;
    border-bottom: 1px solid transparent;
}

.dropdown a:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-image: url('https://dummyimage.com/1920x800/003366/fff');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 20, 50, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Common Components */

/* Cards - Flat Style with Borders */
.vision-card,
.mission-card,
.involvement-card,
.team-card,
.compliance-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 40px;
    transition: var(--transition-base);
    box-shadow: none;
    /* Removed heavy shadows */
}

/* Subtle hover effect */
.vision-card:hover,
.mission-card:hover,
.involvement-card:hover,
.team-card:hover,
.compliance-item:hover {
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}


.card-icon {
    display: inline-flex;
    padding: 16px;
    background: var(--color-bg-light);
    border-radius: 50%;
    margin-bottom: 20px;
}


/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 900px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
    background-color: #fafbfc;
}

.form-control:focus {
    outline: none;
    background-color: white;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.1);
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.timeline-item {
    text-align: center;
    width: 220px;
    position: relative;
    padding: 24px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    /* No shadow */
}

.timeline-item .year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 12px;
    display: block;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    background: var(--color-border);
    /* Placeholder bg */
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 51, 102, 0.9);
    /* Primary color overlay */
    color: white;
    padding: 16px;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.video-item {
    background: #1a1a1a;
    height: 280px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.play-btn {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-base);
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
    transition: var(--transition-base);
    padding: 0;
    /* Override generic card padding */
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: #cbd5e0;
}

.team-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background-color: var(--color-secondary);
}

.list-item-1 {
    display: grid;
    grid-template-columns: 160px 1fr;
    grid-column: 1 / span 2;
}

.team-info {
    padding: 24px;
}

.team-name {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background-size: cover;
    background-position: center;
    padding: 140px 0 80px;
    color: white;
    text-align: center;
    position: relative;
}

/* Overlay for readability */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

/* Footer (Updated) */
.footer {
    background-color: #0c1524;
    /* Even darker blue */
    color: white;
    padding: 100px 0 40px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo-img {
    height: 80px;
    margin-bottom: 20px;
    background: white;
    padding: 6px;
    border-radius: 4px;
}

.footer-tagline {
    color: #94a3b8;
    margin-bottom: 24px;
    max-width: 300px;
    line-height: 1.6;
}

.footer-heading {
    color: white;
    margin-bottom: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul {
    padding-left: 0;
}

.footer-links a {
    color: #94a3b8;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--color-accent);
    opacity: 0.8;
    transition: transform 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover i {
    transform: translateX(3px);
    opacity: 1;
}

.footer-contact li {
    color: #94a3b8;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

.footer-legal a {
    color: #64748b;
    margin-left: 24px;
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 12px;
    }
}

/* --- New Homepage Sections --- */
/* 1. Impact Stats Section */
.stats-section-new {
    background-color: var(--color-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card-new {
    padding: 20px;
}

.stat-number-new {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.stat-label-new {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media (max-width: 900px) {
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-grid-new {
        grid-template-columns: 1fr;
    }
}

/* 2. Urgent Appeal / Featured Cause */
.urgent-appeal-section {
    padding: 100px 0;
    background-color: #fff;
}

.urgent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.urgent-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.urgent-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.urgent-image:hover img {
    transform: scale(1.03);
}

.urgent-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-accent);
    color: white;
    padding: 8px 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

.progress-container {
    margin: 30px 0;
}

.progress-bar-bg {
    background-color: #e2e8f0;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar-fill {
    background-color: var(--color-accent);
    height: 100%;
    width: 50%;
    border-radius: 6px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

/* 3. Enhanced Programs Grid */
.programs-section-new {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.program-card-new {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--color-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e0;
}

.program-thumb {
    height: 200px;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

.program-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-body .card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.program-body .card-text {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.link-arrow {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.link-arrow:hover {
    gap: 10px;
}

/* 4. Latest Events */
.events-section-new {
    padding: 100px 0;
}

.event-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #bbb;
}

.event-date {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 60px;
}

.event-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    font-weight: 600;
}

.event-body {
    padding: 24px;
}

.event-meta {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
    display: flex;
    gap: 16px;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 5. Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    text-align: left;
    border: 1px solid var(--color-border);
}

.quote-icon {
    font-size: 3rem;
    color: var(--color-border);
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ddd;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--color-primary);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* 6. Partners & Newsletter */
.partners-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}

.partners-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.6;
}

.partner-logo {
    height: 40px;
    filter: grayscale(100%);
    transition: var(--transition-base);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.newsletter-section {
    background-color: var(--color-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {

    .urgent-grid,
    .testimonials-grid,
    .newsletter-form {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }

    .newsletter-form .btn {
        width: 100%;
    }
}

/* --- NEW HOMEPAGE SECTIONS CSS --- */
/* Hero Slider */
.hero-slider-section {
    position: relative;
    width: 100%;
}

.btn-danger {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.btn-outline-danger {
    border-color: var(--color-accent);
    color: var(--color-accent);
    border-style: solid;
    border-width: 1px;

}

.btn-outline-danger:hover {
    background-color: var(--color-accent);
    color: white;
}

.hero-slide {
    height: 100vh;
    min-height: 500px;
    max-height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex !important;
    /* Overrides Bootstrap default hide initially */
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.90) 0%, rgba(0, 20, 50, 0.70) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Utilities */
.bg-light {
    background-color: var(--color-bg-light);
}

.bg-dark {
    background-color: var(--color-primary);
}

.text-white {
    color: var(--color-white) !important;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.fw-bold {
    font-weight: 700;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.ml-3 {
    margin-left: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* About Section */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.breadcrumb {
    margin-bottom: 0;
}

.about-story-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}

.story-value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    transition: var(--transition-base);
}

.story-value-item:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.story-value-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.story-value-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 0;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

/* Right image column: full height, no gap */
.vm-image-col {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.vm-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    display: block;
}

/* Gradient fade from white (left) to transparent (right) */
.vm-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, white 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Clean Minimal Cards for Vision & Mission */
.vision-card,
.mission-card {
    background: white;
    border: none;
    border-radius: var(--radius-sm);
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); */
    transition: var(--transition-base);
    text-align: left;
    height: 100%;
    /* Ensures they are fully equal height */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Image styling for Vision and Mission cards */
.card-image-wrap {
    width: 100%;
    height: 250px;
    background: #d1d5db;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content-wrap {
    padding: 28px 32px;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); */
}

.card-icon {
    display: inline-flex;
    width: 32px;
    /* Slightly smaller dot as per screenshot */
    height: 32px;
    background: #eef2f6;
    /* Very light subtle blue/grey dot */
    border-radius: 50%;
    margin-bottom: 14px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Specifically for the dot icons in the screenshot */
.card-icon i {
    display: none;
    /* Hide FontAwesome icons if we want pure dots */
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.25rem;
    /* Matched standard heading size for these cards */
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.vision-card p,
.mission-card p,
.styled-list li {
    color: var(--color-text-light);
    font-size: 0.95rem;
    /* Clean readable font size */
    line-height: 1.8;
}

/* Spread out the vision text if it's shorter to avoid huge empty gaps */
.vision-card p {
    margin-bottom: 0;
}

.mission-card p {
    margin-bottom: 16px;
}

.styled-list {
    margin-top: 5px;
    padding-left: 20px;
    flex-grow: 1;
    /* Pushes content effectively */
}

.styled-list li {
    margin-bottom: 16px;
    /* Spaced out list items */
    position: relative;
    list-style-type: disc;
}

/* Programs / What We Do — 2-col grid, left-image right-content */
.what-we-do-section {
    padding: 40px 0;
    background-color: #fff;
}

/* 2-column grid */
.initiatives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.help-image img {
    height: 500px;
    object-fit: cover;
    object-position: center;
}

/* Each card: horizontal flex — image left, content right */
.initiative-card {
    display: flex;
    align-items: stretch;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition-base);
}

.initiative-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
    border-color: #cbd5e0;
}

/* Left image — fixed width, full height */
.initiative-img {
    flex-shrink: 0;
    width: 200px;
    min-height: 180px;
    overflow: hidden;
    background: #d1d5db;
}

.initiative-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right content */
.initiative-content {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.initiative-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.initiative-content p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 860px) {
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .initiative-card {
        flex-direction: column;
    }

    .initiative-img {
        width: 100%;
        height: 180px;
    }
}

/* Why We Exist */
.why-we-exist-section {
    padding: 40px 0;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.lead-text.emphasis {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-gold);
    opacity: 1;
}

/* Help Section */
.help-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.help-options {
    margin-top: 30px;
    display: grid;
    gap: 20px;
}

.help-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.help-icon {
    background: var(--color-bg-light);
    color: var(--color-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.help-option h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.help-option p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Approach */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.approach-item {
    background: white;
    padding: 28px 16px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.approach-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.approach-item h4 {
    font-size: 1.1rem;
    margin: 0;
}

/* Callout */
.callout-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #001a33 100%);
    color: white;
    padding: 40px 0;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.callout-text {
    font-size: 2.2rem;
    line-height: 1.4;
    color: white;
    font-weight: 300;
}

@media (max-width: 992px) {

    .about-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .vision-mission-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid-4 {
        grid-template-columns: 1fr;
    }

    .callout-text {
        font-size: 1.8rem;
    }

    .ml-3 {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
    }
}