*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}
body {
  background-color: #f5f5f5;
}

.navbar{
  background:#000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 8%;
  position: relative;
  z-index: 9999;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 55px;   
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links{
  display:flex;
  list-style:none;
  gap:35px;
}

.nav-links li{
  color:#fff;
  font-size:14px;
  cursor:pointer;
}

.nav-links li:hover,
.nav-links .active{
  color:#64d20f;
}

.nav-links li a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.menu-toggle{
  display:none;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

.nav-bottom-line{
  height:4px;
  width:100%;
  background:linear-gradient(
    90deg,
    #64d20f 0%,
    #64d20f 25%,
    #00bcd4 25%,
    #00bcd4 50%,
    #f4a623 50%,
    #f4a623 75%,
    #ff3ca0 75%,
    #ff3ca0 100%
  );
}

.dropdown{
  position: relative;
  cursor: pointer;
}

.arrow{
  font-size:10px;
  margin-left:4px;
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#000;
  padding:10px 0;
  list-style:none;
  display:none;
  min-width:220px;
  border-radius:6px;
  z-index:99999;
}

.show-dropdown{
  display:block;
}

.dropdown-menu li{
  padding:8px 15px;
}

.dropdown-menu li a{
  color:#fff;
  text-decoration:none;
  font-size:13px;
}

.dropdown-menu li:hover{
  background:#64d20f;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.service-hero{
  background:linear-gradient(90deg,#eef1ea,#ddd6d9,#d4ded8);
  padding:110px 8% 90px;
  text-align:center;
}

.service-hero-content h1{
  font-size:48px;
  color:#2e314d;
  margin-bottom:15px;
}

.service-hero-content p{
  font-size:18px;
  color:#555;
}

.service-overview{
  padding:100px 8%;
  background:#fff;
}

.container{
  max-width:1200px;
  margin:auto;
}

.service-overview .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.service-left{
  flex:1;
}

.service-left h2{
  font-size:32px;
  color:#2e314d;
  margin-bottom:20px;
}

.service-left p{
  font-size:15px;
  line-height:1.8;
  color:#555;
  margin-bottom:15px;
}

.service-right{
  flex:1;
}

.service-right img{
  width:100%;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.service-benefits{
  padding:100px 8%;
  background:linear-gradient(120deg,#e8f7c6,#f6d9e5,#e0f2d7);
  text-align:center;
}

.service-benefits h2{
  font-size:32px;
  color:#2e314d;
  margin-bottom:60px;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.benefit-card{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.benefit-card:hover{
  transform:translateY(-8px);
}

.benefit-card h3{
  font-size:18px;
  color:#2e314d;
  margin-bottom:15px;
}

.benefit-card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

.service-process{
  padding:100px 8%;
  background:#fff;
  text-align:center;
}

.service-process h2{
  font-size:32px;
  color:#2e314d;
  margin-bottom:60px;
}

.process-steps{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.step{
  background:#f7f7f7;
  padding:35px;
  border-radius:20px;
  width:260px;
  transition:0.3s ease;
}

.step:hover{
  transform:translateY(-8px);
}

.step span{
  display:inline-block;
  width:45px;
  height:45px;
  line-height:45px;
  background:#64d20f;
  color:#fff;
  border-radius:50%;
  font-weight:700;
  margin-bottom:15px;
}

.step h4{
  font-size:16px;
  color:#2e314d;
  margin-bottom:10px;
}

.step p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

.service-cta{
  padding:90px 8%;
  background:#2e314d;
  text-align:center;
  color:#fff;
}

.service-cta h2{
  font-size:30px;
  margin-bottom:15px;
}

.service-cta p{
  font-size:15px;
  margin-bottom:25px;
}

.cta-btn{
  display:inline-block;
  padding:12px 30px;
  background:#64d20f;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.cta-btn:hover{
  background:#55b60d;
}

@media(max-width:992px){

  .service-hero-content h1{
    font-size:36px;
  }

  .service-overview .container{
    flex-direction:column;
    text-align:center;
  }

  .benefit-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:600px){

  .service-hero{
    padding:80px 5%;
  }

  .service-hero-content h1{
    font-size:28px;
  }

  .service-hero-content p{
    font-size:14px;
  }

  .service-overview,
  .service-benefits,
  .service-process,
  .service-cta{
    padding:70px 5%;
  }

  .benefit-grid{
    grid-template-columns:1fr;
  }

  .step{
    width:100%;
  }

}

.page-banner {
  position: relative;
  padding: 100px 8% 60px;
  background: linear-gradient(
    90deg,
    #eef1ea 0%,
    #ddd6d9 40%,
    #d4ded8 100%
  );
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.page-title {
  font-size: 60px;
  font-weight: 600;
  color: #2e314d;
  margin: 0;
}