.hero-services{
  margin-top: 100px;
  background:#f4f8ff;
  padding:80px 20px;
  text-align:center;
}
.hero-services h1{
  font-size:42px;
  color:#0b2545;
}
.hero-services span{
  color:#1e88e5;
}
.hero-services p{
  max-width:700px;
  margin:15px auto 0;
  color:#555;
  font-size:16px;
}

.services{
  padding:80px 20px;
}
.section-title{
  text-align:center;
  font-size:36px;
  margin-bottom:50px;
  color:#0b2545;
}
.section-title span{
  color:#1e88e5;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}
.service-card{
  background:#fff;
  padding:35px 25px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:0.3s;
}
.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(30,136,229,0.2);
}
.service-card i{
  font-size:42px;
  color:#1e88e5;
  margin-bottom:15px;
}
.service-card h4{
  font-size:18px;
  margin-bottom:10px;
  color:#0b2545;
}
.service-card p{
  font-size:14.5px;
  color:#666;
}
.cta{
  background:#1e88e5;
  color:#fff;
  padding:70px 20px;
  text-align:center;
}
.cta-btn{
  display:inline-block;
  margin-top:20px;
  background:#fff;
  color:#1e88e5;
  padding:14px 30px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
}
.why-choose{
  padding:90px 20px;
  background:linear-gradient(180deg,#f4f8ff,#ffffff);
}

.why-header{
  text-align:center;
  max-width:720px;
  margin:0 auto 60px;
}

.why-header h2{
  font-size:36px;
  color:#0b2545;
  margin-bottom:12px;
}

.why-header span{
  color:#1e88e5;
}

.why-header p{
  color:#555;
  font-size:16px;
  line-height:1.7;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.why-card{
  background:#ffffff;
  padding:40px 30px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,0.06);
  transition:0.4s ease;
  position:relative;
  overflow:hidden;
}

.why-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#1e88e5,transparent);
  opacity:0.05;
}

.why-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 50px rgba(30,136,229,0.25);
}

.why-card i{
  font-size:44px;
  color:#1e88e5;
  margin-bottom:18px;
}

.why-card h4{
  font-size:18px;
  color:#0b2545;
  margin-bottom:12px;
}

.why-card p{
  font-size:14.5px;
  color:#666;
  line-height:1.6;
}

@media (max-width: 576px) {
  .hero-services{
    margin-top: 70px;
    padding: 50px 20px;
  }
  .services {
    padding: 50px 0 !important; 
  }
  .why-choose {
    padding: 50px 20px;
  }
  .cta {
    padding: 50px 20px;
  }
  .hero-services h1 {
    font-size: 32px;
  }
  .section-title {
    text-align: center;
    font-size: 25px;
      
  }
  .why-header h2 {
    font-size: 25px;
  }



}
