/* ===================================================
   GLOBAL STYLES
   =================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    color: #212529;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ===================================================
   HERO SLIDER
   =================================================== */
.hero-slider {
    width: 100%;
    overflow: hidden;
}

.hero-slider .slide {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-color: #2d3436;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .slick-dots {
    bottom: 20px;
}

.hero-slider .slick-dots li button:before {
    color: #fff;
    font-size: 10px;
    opacity: 0.6;
}

.hero-slider .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

/* ===================================================
   WELCOME SECTION
   =================================================== */
.welcome-section {
    padding: 80px 0;
    text-align: center;
}

.welcome-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.welcome-section p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===================================================
   MISSION / VISION / VALUES
   =================================================== */
.mvv-section {
    padding: 0 0 80px;
}

.mvv-item {
    text-align: center;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.mvv-icon.mission {
    background: #e8734a;
}

.mvv-icon.vision {
    background: #e8734a;
}

.mvv-icon.values {
    background: #4caf85;
}

.mvv-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.mvv-item p {
    font-size: 0.85rem;
    color: #666;
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================================
   WHAT WE DO
   =================================================== */
.whatwedo-section {
    padding: 60px 0 80px;
}

.whatwedo-section h3 {
    font-weight: 700;
    margin-bottom: 40px;
}

.work-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    height: 100%;
}

.work-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.work-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.work-card-body {
    padding: 20px;
}

.work-card-body h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.work-card-body p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.work-card-body a {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.work-card-body a:hover {
    color: #1e7e34;
}

/* ===================================================
   LIVES TOUCHED
   =================================================== */
.lives-section {
    padding: 70px 0;
    background: #f8f9fa;
    text-align: center;
}

.lives-section h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.lives-section .section-desc {
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
}

.stat-icon {
    font-size: 2rem;
    color: #e8734a;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* ===================================================
   TEAM PREVIEW (HOMEPAGE)
   =================================================== */
.team-preview-section {
    padding: 80px 0;
    text-align: center;
}

.team-preview-section h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.team-preview-section .section-desc {
    color: #666;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #eee;
    margin-bottom: 12px;
}

.team-member h6 {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.team-member p {
    font-size: 0.78rem;
    color: #888;
    margin: 0;
}

.team-link {
    color: #212529;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #ddd;
    padding: 10px 25px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.team-link:hover {
    background: #212529;
    color: #fff;
}

/* ===================================================
   PILLARS OF SUPPORT
   =================================================== */
.pillars-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.pillars-section h2 {
    font-weight: 700;
    margin-bottom: 40px;
}

.pillars-slider .partner-logo {
    padding: 15px 25px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.pillars-slider .partner-logo img {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.pillars-slider .partner-logo img:hover {
    filter: grayscale(0);
}

/* ===================================================
   BECOME A MEMBER / CTA
   =================================================== */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.btn-dark-custom {
    background: #212529;
    color: #fff;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 500;
    border: none;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-dark-custom:hover {
    background: #000;
    color: #fff;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 991px) {
    .hero-slider .slide,
    .hero-slider .slide img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .hero-slider .slide,
    .hero-slider .slide img {
        height: 300px;
    }

    .welcome-section {
        padding: 50px 0;
    }

    .welcome-section h2 {
        font-size: 1.6rem;
    }

    .stat-item {
        margin-bottom: 15px;
    }

    .team-member img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 575px) {
    .hero-slider .slide,
    .hero-slider .slide img {
        height: 220px;
    }

    .mvv-item {
        margin-bottom: 30px;
    }
}
