/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#333;
    line-height:1.7;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
HEADER
=========================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:999;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    font-size:1.6rem;
    font-weight:700;
    color:#0d6b46;
}

.logo span{
    color:#f0a500;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:#333;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#0d6b46;
}

.menu-btn{
    display:none;
    background:none;
    border:none;
    font-size:1.5rem;
    cursor:pointer;
}

/* ===========================
HERO
=========================== */

.hero{
    padding:150px 0 80px;
    background:linear-gradient(135deg,#0d6b46,#117d58);
    color:#fff;
}

.hero-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
    align-items:center;
}

.tag{
    display:inline-block;
    background:#ffffff22;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
}

.hero h1{
    font-size:3rem;
    line-height:1.2;
    margin-bottom:25px;
}

.hero h1 span{
    color:#ffd66b;
}

.hero p{
    margin-bottom:20px;
    opacity:.95;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin:35px 0;
}

.btn{
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.primary{
    background:#f0a500;
    color:#fff;
}

.primary:hover{
    background:#d58d00;
}

.secondary{
    border:2px solid #fff;
    color:#fff;
}

.secondary:hover{
    background:#fff;
    color:#0d6b46;
}

.hero-stats{
    display:flex;
    gap:35px;
    margin-top:40px;
}

.hero-stats h3{
    font-size:1.8rem;
}

.hero-card{
    background:#fff;
    color:#333;
    padding:50px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.2);
}

.hero-card .icon{
    font-size:4rem;
    color:#0d6b46;
    margin-bottom:20px;
}

/* ===========================
SECTIONS
=========================== */

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#0d6b46;
    font-weight:600;
}

.section-title h2{
    font-size:2.4rem;
    margin-top:10px;
}

/* ===========================
FEATURES
=========================== */

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.feature-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card i{
    font-size:2.4rem;
    color:#0d6b46;
    margin-bottom:20px;
}

.feature-card h3{
    margin-bottom:15px;
}

/* ===========================
PROGRAMS
=========================== */

.programs{
    background:#eef7f2;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.program-card{
    background:#fff;
    border-radius:15px;
    padding:35px;
    text-align:center;
    transition:.3s;
}

.program-card:hover{
    transform:translateY(-8px);
}

.program-card i{
    font-size:3rem;
    color:#f0a500;
    margin-bottom:20px;
}

.program-card h3{
    margin-bottom:15px;
}

/* ===========================
TIMELINE
=========================== */

.timeline{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.step{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 20px rgba(0,0,0,.06);
}

.step span{
    width:55px;
    height:55px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#0d6b46;
    color:#fff;
    font-weight:700;
    margin-bottom:20px;
}

.step h3{
    margin-bottom:15px;
}

/* ===========================
TESTIMONIALS
=========================== */

.testimonials{
    background:#eef7f2;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.testimonial{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.06);
}

.testimonial i{
    font-size:2rem;
    color:#f0a500;
    margin-bottom:20px;
}

.testimonial h4{
    margin-top:20px;
    color:#0d6b46;
}

/* ===========================
FAQ
=========================== */

.faq-item{
    background:#fff;
    border-radius:10px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.06);
}

.faq-question{
    width:100%;
    padding:22px;
    border:none;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:1rem;
    font-weight:600;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.35s;
    padding:0 22px;
}

.faq-item.active .faq-answer{
    max-height:200px;
    padding:0 22px 22px;
}

.faq-item.active i{
    transform:rotate(45deg);
}

/* ===========================
CTA
=========================== */

.cta{
    background:#0d6b46;
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto auto 35px;
}

/* ===========================
FOOTER
=========================== */

footer{
    background:#15252a;
    color:#ddd;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

footer h3,
footer h4{
    color:#fff;
    margin-bottom:20px;
}

footer p,
footer li{
    margin-bottom:12px;
}

footer i{
    color:#f0a500;
    margin-right:10px;
}

.copyright{
    text-align:center;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
    color:#aaa;
}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-buttons{
justify-content:center;
}

.hero-stats{
justify-content:center;
}

.nav-links{
position:fixed;
top:80px;
left:-100%;
width:100%;
background:#fff;
flex-direction:column;
padding:30px;
transition:.35s;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.nav-links.active{
left:0;
}

.menu-btn{
display:block;
}

.hero h1{
font-size:2.4rem;
}

.section-title h2{
font-size:2rem;
}

.cta h2{
font-size:2rem;
}

}

@media(max-width:600px){

.hero{
padding-top:130px;
}

.hero-buttons{
flex-direction:column;
}

.hero-stats{
flex-direction:column;
gap:20px;
}

.btn{
display:block;
text-align:center;
}

}