
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  color:#1f2937;
  background:#f8fff8;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  background:white;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo{
  font-size:28px;
  font-weight:700;
  color:#2ea043;
}

nav a{
  margin:0 15px;
  text-decoration:none;
  color:#333;
  font-weight:500;
}

.call-btn{
  background:#2ea043;
  color:white;
  padding:12px 20px;
  border-radius:50px;
  text-decoration:none;
}

.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:80px 8%;
  gap:50px;
}

.hero-text{
  flex:1;
}

.badge{
  display:inline-block;
  background:#d7f5dd;
  color:#2ea043;
  padding:10px 18px;
  border-radius:50px;
  margin-bottom:20px;
  font-weight:600;
}

.hero h1{
  font-size:58px;
  line-height:1.1;
  margin-bottom:20px;
}

.hero p{
  font-size:18px;
  line-height:1.7;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  margin-bottom:30px;
}

.primary-btn,
.secondary-btn{
  padding:15px 24px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
}

.primary-btn{
  background:#2ea043;
  color:white;
}

.secondary-btn{
  border:2px solid #2ea043;
  color:#2ea043;
}

.trust-items{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  font-weight:500;
}

.hero-image img{
  width:100%;
  max-width:520px;
  border-radius:24px;
}

.services{
  padding:80px 8%;
  background:white;
}

.services h2,
.about h2,
.contact h2{
  text-align:center;
  font-size:42px;
  margin-bottom:50px;
  color:#2ea043;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.card{
  background:#f5fff6;
  padding:30px;
  border-radius:20px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.card h3{
  margin-bottom:15px;
}

.about{
  padding:80px 8%;
}

.about-text{
  max-width:800px;
  margin:auto;
  text-align:center;
}

.about-text p{
  margin-bottom:30px;
  line-height:1.8;
}

.about-text ul{
  list-style:none;
}

.about-text li{
  margin:12px 0;
  font-size:18px;
}

.contact{
  padding:80px 8%;
}

.contact-box{
  max-width:700px;
  margin:auto;
  background:white;
  padding:40px;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

input,
select,
textarea{
  padding:16px;
  border-radius:12px;
  border:1px solid #d1d5db;
  font-family:'Poppins', sans-serif;
}

textarea{
  min-height:140px;
}

button{
  padding:16px;
  background:#2ea043;
  color:white;
  border:none;
  border-radius:12px;
  font-size:16px;
  cursor:pointer;
  font-weight:600;
}

footer{
  background:#2ea043;
  color:white;
  text-align:center;
  padding:30px;
}

footer a{
  color:white;
  text-decoration:none;
}

@media(max-width:900px){

  .hero{
    flex-direction:column;
  }

  .hero h1{
    font-size:42px;
  }

  .navbar{
    flex-direction:column;
    gap:15px;
  }

  nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  }
}
