Here's the updated CSS code with the "What's New" section styles removed:

```css
.services-hero {
  height: 50vh;
}

.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #5e60ce, #80ffdb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-image {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.service-image img {
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: #4361ee;
  transition: all 0.3s ease;
  position: relative;
}

.service-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4361ee;
  transition: width 0.3s ease;
}

.service-link:hover {
  color: #3a0ca3;
}

.service-link:hover::after {
  width: 100%;
}

.service-link:hover i {
  transform: translateX(5px);
}

.service-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* New statistics section */
.stats-section {
  background: linear-gradient(135deg, #4361ee, #3a0ca3);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.stats-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.stat-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 30px;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(to right, #80ffdb, #72efdd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-text {
  font-size: 1.1rem;
  font-weight: 500;
}

/* === Statistics Section Styling === */
.stat-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 0;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px 20px;
  flex: 1;
  min-width: 150px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  font-size: 2rem;
  color: #00b4db;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
}

.stat-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .stat-container {
    gap: 20px;
  }

  .stat-item {
    min-width: 140px;
    padding: 20px 16px;
  }

  .stat-icon {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .stat-item {
    padding: 18px 12px;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .stat-text {
    font-size: 0.95rem;
  }
}

/* New process section */
.process-section {
  padding: 100px 0;
  background-color: #f8f9ff;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 80%;
  background: linear-gradient(to right, #4361ee, #3a0ca3);
  z-index: 0;
}

.process-step {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  width: 260px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4361ee, #3a0ca3);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #4361ee;
}

.step-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2b2d42;
}
