
/* ===================================
   ABOUT HERO
=================================== */

.about-hero{

    min-height:80vh;

    display:flex;

    align-items:center;

    padding:120px 0;

    background:
    linear-gradient(
    135deg,
    #0B7A3E,
    #14532D);

    position:relative;

    overflow:hidden;
}

.about-hero::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    right:-250px;
    top:-250px;

    background:
    rgba(255,255,255,.08);

    filter:blur(120px);
}

.about-hero-content{

    max-width:900px;

    position:relative;

    z-index:2;
}

.hero-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:
    rgba(255,255,255,.12);

    color:#fff;

    margin-bottom:25px;
}

.about-hero h1{

    font-size:
    clamp(3rem,6vw,5.5rem);

    color:#fff;

    line-height:1.1;

    margin-bottom:25px;
}

.about-hero p{

    color:
    rgba(255,255,255,.9);

    font-size:20px;

    line-height:1.9;

    max-width:700px;

    margin-bottom:50px;
}

.about-hero-stats{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.about-hero-stats div{

    background:
    rgba(255,255,255,.1);

    backdrop-filter:blur(12px);

    padding:25px;

    border-radius:20px;
}

.about-hero-stats strong{

    display:block;

    color:#fff;

    font-size:34px;
}

.about-hero-stats span{

    color:
    rgba(255,255,255,.85);
}

@media(max-width:991px){

    .about-hero-stats{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .about-hero-stats{

        grid-template-columns:1fr;
    }
}


/* ===================================
   WHO WE ARE
=================================== */

.who-we-are{

    padding:140px 0;

    background:#fff;
}

.who-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.who-image{

    position:relative;
}

.who-image img{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:30px;
}

.who-floating-box{

    position:absolute;

    bottom:30px;
    left:30px;

    background:#fff;

    padding:22px;

    border-radius:20px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.12);

    max-width:280px;
}

.who-floating-box strong{

    display:block;

    color:#0B7A3E;

    margin-bottom:8px;

    font-size:20px;
}

.who-floating-box span{

    color:#64748b;

    line-height:1.6;
}

.who-content p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:20px;

    font-size:17px;
}

.who-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:30px;
}

.who-point{

    padding:18px;

    background:#f8fafc;

    border-radius:14px;

    font-weight:600;

    color:#14532D;
}

@media(max-width:991px){

    .who-wrapper{

        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .who-image img{

        height:400px;
    }

    .who-highlights{

        grid-template-columns:1fr;
    }

    .who-floating-box{

        position:static;

        margin-top:20px;
    }
}

/* ===================================
   OUR STORY
=================================== */

.story-section{

    padding:140px 0;

    background:#f8fafc;
}

.story-header{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:80px;
}

.story-header p{

    margin-top:20px;

    color:#64748b;

    line-height:1.9;
}

.story-timeline{

    max-width:1000px;

    margin:auto;

    position:relative;
}

.story-timeline::before{

    content:'';

    position:absolute;

    left:90px;

    top:0;

    width:4px;

    height:100%;

    background:
    linear-gradient(
    #0B7A3E,
    #F4B400);
}

.story-item{

    display:flex;

    gap:40px;

    margin-bottom:50px;

    position:relative;
}

.story-year{

    width:110px;
    height:110px;

    flex-shrink:0;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #0B7A3E,
    #14532D);

    color:#fff;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:28px;

    font-weight:800;

    z-index:2;
}

.story-card{

    flex:1;

    background:#fff;

    padding:35px;

    border-radius:24px;

    border:1px solid #e5e7eb;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.story-card:hover{

    transform:
    translateX(10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.story-card h3{

    color:#14532D;

    margin-bottom:15px;
}

.story-card p{

    color:#64748b;

    line-height:1.9;
}

@media(max-width:768px){

    .story-timeline::before{
        display:none;
    }

    .story-item{

        flex-direction:column;
    }

    .story-year{

        width:90px;
        height:90px;

        font-size:22px;
    }
}
/* ===================================
   CORE VALUES
=================================== */

.values-section{

    padding:140px 0;

    background:#ffffff;
}

.values-header{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:80px;
}

.values-header p{

    margin-top:20px;

    color:#64748b;

    line-height:1.9;
}

.values-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.value-card{

    background:#fff;

    padding:40px;

    border-radius:28px;

    border:1px solid #e5e7eb;

    transition:.35s;

    text-align:center;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.value-card:hover{

    transform:
    translateY(-12px);

    border-color:#0B7A3E;

    box-shadow:
    0 25px 60px rgba(11,122,62,.12);
}

.value-icon{

    width:90px;
    height:90px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:22px;

    background:#f5fff8;

    font-size:40px;
}

.value-card h3{

    color:#14532D;

    margin-bottom:15px;

    font-size:24px;
}

.value-card p{

    color:#64748b;

    line-height:1.9;
}

@media(max-width:991px){

    .values-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .values-grid{

        grid-template-columns:1fr;
    }
}
/* ===================================
   LEADERSHIP MESSAGE
=================================== */

.leadership-section{

    padding:140px 0;

    background:#f8fafc;
}

.leadership-wrapper{

    display:grid;

    grid-template-columns:450px 1fr;

    gap:70px;

    align-items:center;
}

.leadership-image img{

    width:100%;

    height:600px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.leadership-content blockquote{

    font-size:30px;

    line-height:1.6;

    color:#14532D;

    font-weight:600;

    margin:30px 0;

    position:relative;
}

.leadership-content blockquote::before{

    content:'“';

    font-size:100px;

    color:#0B7A3E;

    opacity:.15;

    position:absolute;

    left:-20px;
    top:-30px;
}

.leadership-content p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:35px;
}

.leader-info h4{

    color:#14532D;

    font-size:24px;

    margin-bottom:6px;
}

.leader-info span{

    color:#64748b;
}

@media(max-width:991px){

    .leadership-wrapper{

        grid-template-columns:1fr;
    }

    .leadership-image img{

        height:450px;
    }
}

@media(max-width:768px){

    .leadership-content blockquote{

        font-size:22px;
    }
}

/* ===================================
   IMPACT HIGHLIGHTS
=================================== */

.impact-highlights{

    padding:140px 0;

    background:#ffffff;
}

.impact-header{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:70px;
}

.impact-header p{

    margin-top:20px;

    color:#64748b;

    line-height:1.9;
}

/* STATS */

.impact-stats-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

    margin-bottom:70px;
}

.impact-stat-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    text-align:center;

    border:1px solid #e5e7eb;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.impact-stat-card:hover{

    transform:translateY(-10px);

    border-color:#0B7A3E;
}

.impact-stat-card h3{

    font-size:54px;

    color:#0B7A3E;

    margin-bottom:10px;

    font-weight:800;
}

.impact-stat-card span{

    color:#64748b;
}

/* AREAS */

.impact-areas-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

    margin-bottom:70px;
}

.impact-area{

    background:#f8fafc;

    padding:30px;

    border-radius:24px;

    transition:.35s;
}

.impact-area:hover{

    transform:translateY(-8px);
}

.impact-icon{

    width:70px;
    height:70px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:#fff;

    font-size:30px;

    margin-bottom:20px;
}

.impact-area h4{

    color:#14532D;

    margin-bottom:12px;
}

.impact-area p{

    color:#64748b;

    line-height:1.8;
}

/* MESSAGE */

.impact-message{

    padding:60px;

    border-radius:32px;

    text-align:center;

    background:
    linear-gradient(
    135deg,
    #0B7A3E,
    #14532D);

    color:#fff;
}

.impact-message h3{

    font-size:40px;

    margin-bottom:20px;
}

.impact-message p{

    max-width:700px;

    margin:auto;

    line-height:1.9;

    opacity:.92;
}

@media(max-width:991px){

    .impact-stats-grid,
    .impact-areas-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .impact-stats-grid,
    .impact-areas-grid{

        grid-template-columns:1fr;
    }

    .impact-message{

        padding:40px 25px;
    }

    .impact-message h3{

        font-size:28px;
    }
}

/* ===================================
   WHY OUR WORK MATTERS
=================================== */

.why-section{

    padding:140px 0;

    background:#f8fafc;
}

.why-header{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:70px;
}

.why-header p{

    color:#64748b;

    line-height:1.9;

    margin-top:20px;
}

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.why-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    transition:.35s;

    border:1px solid #e5e7eb;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#0B7A3E;
}

.why-icon{

    width:75px;
    height:75px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:#f5fff8;

    font-size:34px;

    margin-bottom:20px;
}

.why-card h3{

    color:#14532D;

    margin-bottom:15px;
}

.why-card p{

    color:#64748b;

    line-height:1.8;
}

@media(max-width:991px){

    .why-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .why-grid{

        grid-template-columns:1fr;
    }
}
/* ===================================
   JOIN OUR MISSION
=================================== */

.join-mission-section{

    padding:140px 0;

    background:
    linear-gradient(
    135deg,
    #0B7A3E,
    #14532D);

    color:#fff;

    position:relative;

    overflow:hidden;
}

.join-mission-section::before{

    content:'';

    position:absolute;

    width:600px;
    height:600px;

    top:-250px;
    right:-250px;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);

    filter:blur(100px);
}

.join-mission-wrapper{

    text-align:center;

    max-width:1100px;

    margin:auto;

    position:relative;

    z-index:2;
}

.join-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:
    rgba(255,255,255,.12);

    margin-bottom:25px;

    font-weight:600;
}

.join-mission-wrapper h2{

    font-size:
    clamp(2.8rem,5vw,4.5rem);

    margin-bottom:25px;
}

.join-mission-wrapper p{

    max-width:800px;

    margin:auto;

    line-height:1.9;

    opacity:.9;
}

.join-options{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    margin-top:70px;
}

.join-card{

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    padding:40px 30px;

    border-radius:28px;

    transition:.35s;
}

.join-card:hover{

    transform:
    translateY(-12px);

    background:
    rgba(255,255,255,.12);
}

.join-icon{

    width:90px;
    height:90px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:22px;

    background:
    rgba(255,255,255,.12);

    font-size:40px;
}

.join-card h3{

    margin-bottom:15px;

    font-size:24px;
}

.join-card p{

    opacity:.9;
}

.join-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:60px;
}

.join-btn-primary{

    background:#F4B400;

    color:#111;

    padding:18px 36px;

    border-radius:14px;

    font-weight:700;

    text-decoration:none;
}

.join-btn-outline{

    border:1px solid rgba(255,255,255,.3);

    color:#fff;

    padding:18px 36px;

    border-radius:14px;

    text-decoration:none;
}

@media(max-width:991px){

    .join-options{

        grid-template-columns:1fr;
    }
}