﻿/* =========================================
   HERO SECTION
========================================= */
.aboutus-hero {
    position: relative;
    background: url('../Images/trusted.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 160px 20px;
    overflow: hidden;
}

    .aboutus-hero .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

.hero-btn {
    background: #0d9488;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .hero-btn:hover {
        background: #064e3b;
    }

/* =========================================
   WHO WE ARE SECTION
========================================= */
.who-we-are-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.who-we-are-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

.who-content {
    flex: 1 1 50%;
    padding: 20px;
}

    .who-content h2 {
        color: #064e3b;
        font-size: 2.2rem;
    }

    .who-content h3 {
        color: #0d9488;
        margin-bottom: 15px;
    }

    .who-content p {
        margin-bottom: 15px;
        line-height: 1.7;
        color: #334155;
    }

.btn-learn-more {
    background: #0d9488;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
}

    .btn-learn-more:hover {
        background: #065f46;
    }

.who-image {
    flex: 1 1 45%;
    text-align: center;
}

    .who-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        height:200%;
    }

/* =========================================
   INITIATIVES GRID SECTION
========================================= */
.initiatives-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    text-align: center;
}

    .initiatives-section h2 {
        color: #064e3b;
        font-size: 2.3rem;
        margin-bottom: 50px;
    }

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.initiative-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .initiative-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }

    .initiative-card img {
        width: 100%;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .initiative-card h3 {
        color: #0d9488;
        margin-bottom: 10px;
    }

    .initiative-card p {
        color: #475569;
        font-size: 0.95rem;
        line-height: 1.6;
    }
