*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f4f7fb;
    color:#222;
}

/* HEADER */

.main-header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,0.07);
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
}

.logo{
    font-size:32px;
    font-weight:700;
    color:#11823b;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:25px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:0.3s ease;
}

.nav-links a:hover{
    color:#11823b;
}

.login-btn{
    background:#11823b;
    color:white !important;
    padding:12px 22px;
    border-radius:8px;
}

/* HERO */

.hero{
    width:100%;
    min-height:100vh;
    background:url('https://images.unsplash.com/photo-1554224155-6726b3ff858f') center/cover no-repeat;
    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:120px 20px 80px;
    text-align:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    color:white;
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:30px;
    background:rgba(255,255,255,0.12);
    margin-bottom:25px;
    font-size:14px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}

/* BUTTONS */

.hero-actions{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-block;
    text-decoration:none;
    padding:16px 32px;
    border-radius:10px;
    font-weight:600;
    transition:0.3s ease;
}

.primary-btn{
    background:#11823b;
    color:white;
}

.secondary-btn{
    border:2px solid white;
    color:white;
}

.white-btn{
    background:white;
    color:#11823b;
}

.hero-btn:hover{
    transform:translateY(-3px);
}

/* STATS */

.stats-section{
    width:100%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;

    padding:80px 8%;
}

.stat-card{
    background:white;
    padding:45px 20px;
    border-radius:18px;
    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.stat-card h2{
    color:#11823b;
    font-size:44px;
    margin-bottom:10px;
}

/* SERVICES */

.services-section{
    padding:90px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    margin-bottom:15px;
}

.section-title p{
    max-width:750px;
    margin:auto;
    line-height:1.8;
    color:#666;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-box{
    background:white;
    padding:40px;
    border-radius:18px;

    box-shadow:0 5px 20px rgba(0,0,0,0.07);

    transition:0.3s ease;
}

.service-box:hover{
    transform:translateY(-6px);
}

.service-box h3{
    color:#11823b;
    margin-bottom:18px;
    font-size:24px;
}

.service-box p{
    line-height:1.8;
    color:#555;
}

/* CTA */

.cta-section{
    background:#11823b;
    color:white;

    padding:100px 20px;
    text-align:center;
}

.cta-content{
    max-width:700px;
    margin:auto;
}

.cta-content h2{
    font-size:50px;
    margin-bottom:20px;
}

.cta-content p{
    line-height:1.8;
    margin-bottom:35px;
}

/* FOOTER */

.footer{
    background:#101010;
    color:white;
    text-align:center;
    padding:30px;
}

/* MOBILE */

@media(max-width:900px){

    .main-header{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:17px;
    }

    .section-title h2{
        font-size:36px;
    }

    .cta-content h2{
        font-size:38px;
    }

}