*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#f5f7fa;
    color:#222;
}

/* HEADER */
header{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 8%;

    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:60px;
    height:60px;
    border-radius:10px;
}

.logo h1{
    font-size:24px;
    color:#0b8f3a;
}

nav{
    display:flex;
    gap:20px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:bold;
}

nav a:hover{
    color:#0b8f3a;
}

/* HERO */
.hero{
    height:90vh;

    background:
    linear-gradient(rgba(0,0,0,0.6),
    rgba(0,0,0,0.6)),
    url('logo.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;

    padding:20px;
}

.hero-content{
    max-width:800px;
}

.hero h2{
    font-size:50px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    background:#25D366;
    color:white;

    padding:15px 30px;

    text-decoration:none;
    border-radius:50px;

    font-weight:bold;

    transition:0.3s;
}

.hero-btn:hover{
    transform:scale(1.05);
}

/* STATS */
.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;

    padding:60px 8%;
}

.stat-box{
    background:white;
    padding:40px;
    text-align:center;
    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.stat-box h3{
    font-size:40px;
    color:#0b8f3a;
}

/* SECTIONS */
section{
    padding:80px 8%;
}

section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:40px;
}

/* ABOUT */
.about{
    text-align:center;
    line-height:1.8;
}

/* SERVICES */
.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-card{
    background:white;
    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);

    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:50px;
    color:#0b8f3a;
    margin-bottom:20px;
}

/* STEPS */
.steps{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.step{
    background:white;

    width:280px;

    padding:40px 20px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.step span{
    display:inline-block;

    width:60px;
    height:60px;

    line-height:60px;

    border-radius:50%;

    background:#0b8f3a;

    color:white;

    font-size:24px;

    margin-bottom:20px;
}

/* TESTIMONIALS */
.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.testimonial{
    background:white;
    padding:30px;
    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* CONTACT */
.contact{
    text-align:center;
}

.contact-info{
    margin-top:30px;
}

.contact-info p{
    margin:10px 0;
}

/* FOOTER */
footer{
    background:#0b8f3a;
    color:white;

    text-align:center;

    padding:25px;
}

/* WHATSAPP FLOAT */
.whatsapp-float{
    position:fixed;

    bottom:20px;
    right:20px;

    width:60px;
    height:60px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;

    text-decoration:none;

    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* MOBILE */
@media(max-width:768px){

    header{
        flex-direction:column;
        gap:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h2{
        font-size:35px;
    }

}