.involve-hero{
    position:relative;
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    background:
    linear-gradient(
        rgba(11,102,35,0.75),
        rgba(11,102,35,0.75)
    ),
    url("../images/get-involved-hero.jpg");

    background-size:cover;
    background-position:center;
}

.involve-hero .hero-content{
    max-width:900px;
    padding:0 20px;
    color:white;
}

.involve-hero h1{
    font-size:4rem;
    margin:25px 0;
	font-size: clamp(1.8rem, 4vw, 3rem);
}

.involve-hero p{
    font-size:1.3rem;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.btn.secondary{
    background:transparent;
    border:2px solid white;
    color:white;
}
.involved-container{
    max-width:1400px;
    margin:auto;
    padding:70px 8%;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.involved-card{
    background:white;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    transition:0.3s;
}

.involved-card:hover{
    transform:translateY(-8px);
}

.card-icon{
    font-size:4rem;
    margin-bottom:20px;
}

.involved-card h2{
    color:#0b6623;
    margin-bottom:15px;
}

.involved-card p{
    line-height:1.8;
    margin-bottom:25px;
    color:#666;
}
.section-badge{
    display:inline-block;
    padding:12px 28px;
    background:#e7f2e8;
    color:#0b6623;
    border-radius:30px;
    font-weight:700;
    margin-bottom:20px;
}
.section-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}
}
.card-icon{
    font-size:60px;
    margin-bottom:20px;
}
.involved-card{
    transition:all .4s ease;
}

.involved-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.involved-card:hover h2{
    color:#12853a;
}
/* ==========================
   INVOLVED STATS
========================== */

.involved-stats{
    padding:100px 8%;
    position:relative;

    background:
    linear-gradient(
        rgba(11,102,35,0.90),
        rgba(11,102,35,0.90)
    ),
    url("../images/impact-bg.jpg");

    background-size:cover;
    background-position:center;
}

.stats-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
    color:white;
}

.stats-title h2{
    font-size:3.2rem;
    margin:20px 0;
    color:white;
}

.stats-title p{
    font-size:1.15rem;
    line-height:1.8;
    opacity:0.95;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.stat-item{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,0.15);

    border-radius:25px;
    padding:40px 25px;

    text-align:center;
    color:white;

    transition:0.4s ease;
}

.stat-item:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.12);
}

.stat-icon{
    width:90px;
    height:90px;

    margin:0 auto 25px;

    background:white;
    color:#0b6623;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:2.5rem;

    position:relative;
}
.stat-icon::before{
    content:"";

    position:absolute;

    width:125px;
    height:125px;

    border:2px dashed rgba(159,232,112,0.6);

    border-radius:50%;

    top:50%;
    left:50%;

    transform:translate(-50%, -50%);
}
.stat-icon::after{
    content:"";

    position:absolute;

    width:12px;
    height:12px;

    background:#9FE870;

    border-radius:50%;

    top:-18px;
    left:50%;

    transform:translateX(-50%);
}
.stat-icon::before{
    animation:rotateRing 15s linear infinite;
}

@keyframes rotateRing{
    from{
        transform:translate(-50%, -50%) rotate(0deg);
    }
    to{
        transform:translate(-50%, -50%) rotate(360deg);
    }
}

.stat-item h2{
    font-size:4rem;
    color:#9FE870;
    margin-bottom:10px;
}

.stat-item p{
    font-size:1.2rem;
    font-weight:700;
    margin-bottom:10px;
}

.stat-item span{
    display:block;
    font-size:0.95rem;
    line-height:1.7;
    opacity:0.9;
}
@media(max-width:768px){

.involved-stats{
    grid-template-columns:repeat(2,1fr);
}

.stat-item h2{
    font-size:3rem;
}

}

/* WHY GET INVOLVED */

.why-involved{
    padding:100px 8%;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
    background:#f8faf8;
}

.why-content h2{
    font-size:2rem;
    color:#0b6623;
    margin:10px 0;
}

.why-content > p{
    font-size:1.1rem;
    line-height:1.8;
    color:#555;
    margin-bottom:40px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.why-card{
    background:white;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#e7f2e8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
}

.why-card h3{
    color:#0b6623;
    margin-bottom:10px;
}

.why-image img{
    width:100%;
    border-radius:25px;
    object-fit:cover;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}
@media (max-width: 992px){

    .why-involved{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

}

.volunteer-opportunities{
    padding:100px 8%;
    background:#ffffff;
}

.volunteer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:60px;
}

.volunteer-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s ease;
}

.volunteer-card:hover{
    transform:translateY(-10px);
}

.vol-icon{
    width:80px;
    height:80px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#e7f2e8;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:2rem;
}

.volunteer-card h3{
    color:#0b6623;
    margin-bottom:15px;
}
/* ==========================
   PARTNERSHIP SECTION
========================== */

.partnership-section{
    padding:70px 8%;
    background:#f8faf8;
}

.partner-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:60px;
}

.partner-card{
    background:white;
    padding:35px;
    border-radius:20px;
    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s ease;
}

.partner-card:hover{
    transform:translateY(-10px);
}

.partner-icon{
    width:80px;
    height:80px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#e7f2e8;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:2rem;
}

.partner-card h3{
    color:#0b6623;
    margin-bottom:15px;
}

.partner-card p{
    line-height:1.8;
    color:#555;
}

/* ==========================
   FAQ SECTION
========================== */

.faq-section{
    padding:70px 8%;
    background:#ffffff;
}

.faq-container{
    max-width:900px;
    margin:60px auto 0;
}

.faq-item{
    margin-bottom:20px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#fff;
    border:none;
    cursor:pointer;

    padding:25px 30px;

    font-size:1.1rem;
    font-weight:600;
    color:#0b6623;

    text-align:left;
}

.faq-icon{
    font-size:30px;
    font-weight:700;
    color:#0b6623;
    transition:0.3s ease;
}

.faq-answer{
    display:none;
    padding:20px 30px;
    background:#fff;
    border-top:1px solid #eee;
}



.faq-answer p{
    line-height:1.8;
    color:#555;
}

/* ==========================
   FINAL CTA
========================== */

.final-cta{
    padding:120px 8%;
    background:
        linear-gradient(
            rgba(11,102,35,.90),
            rgba(11,102,35,.90)
        ),
        url("images/get-involved-impact.jpg");

    background-size:cover;
    background-position:center;

    text-align:center;
    color:white;
}

.final-cta .section-badge{
    background:rgba(255,255,255,.15);
    color:white;
}

.final-cta h2{
    font-size:clamp(2.2rem,5vw,4rem);
    margin:25px 0;
    color:white;
}

.final-cta p{
    max-width:800px;
    margin:0 auto 40px;
    font-size:1.15rem;
    line-height:1.8;
    color:rgba(255,255,255,.9);
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-btn{
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}

.cta-btn.primary{
    background:white;
    color:#0b6623;
}

.cta-btn.primary:hover{
    transform:translateY(-3px);
}

.cta-btn.secondary{
    border:2px solid white;
    color:white;
}

.cta-btn.secondary:hover{
    background:white;
    color:#0b6623;
}