/* HERO */
.services-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f172a, #14529d);
  color: #fff;
}
.services-hero h1 {
  font-size: 48px;
  font-weight: 800;
}
.services-hero p {
  max-width: 800px;
  margin: 15px auto 0;
  font-size: 18px;
}

/* SERVICE CARDS */
.neo-service-card {
  background: rgba(255,255,255,0.9);
  padding: 40px 32px;
  border-radius: 22px;
  transition: .4s;
  height: 100%;
}
.neo-service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
}

/* ICON */
.neo-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg,#14529d,#0b3c7d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.neo-icon i {
  color: #fff;
  font-size: 32px;
}

/* FEATURED */
.neo-service-card.featured {
  background: linear-gradient(135deg,#14529d,#0b3c7d);
  color: #fff;
}
.neo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  color: #14529d;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

/* CTA */
.services-cta {
  padding: 80px 20px;
  background: #0f172a;
  color: #fff;
}
.services-intro h2 {
  font-size: 38px;
  font-weight: 800;
}
.intro-text {
  max-width: 750px;
  margin: auto;
  font-size: 17px;
  color: #555;
}

/* WHY CHOOSE */
/* ===============================
   MODERN IMPACT / STATS SECTION
================================ */

.impact-modern {
  background: linear-gradient(
    180deg,
    #f8fafc,
    #ffffff
  );
}

.impact-card {
  background: #ffffff;
  padding: 34px 24px;
  border-radius: 18px;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  height: 100%;
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.impact-card h3 {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.impact-card p {
  font-size: 15px;
  color: #555;
  margin: 0;
}


/* PROCESS */
/* ===============================
   MODERN PROCESS SECTION
================================ */

.process-modern {
  background: #f8fafc;
}

.process-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Step Number */
.process-step {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
}

/* Icon */
.process-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    #0b3c7d
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 18px;
}

.process-icon i {
  font-size: 30px;
  color: #fff;
}

/* Text */
.process-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .process-step {
    top: -14px;
  }
}

