.service-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.service-section.alt {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
}

.service-box {
  max-width: 850px;
  margin: auto;
  padding: 60px 50px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 35px;

  background: linear-gradient(135deg, #ffd857, #ffbb00);
  color: #fff;
  border-radius: 30px;
  font-size: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 20px 45px rgba(255, 230, 0, 0.35);
  transition: 0.4s;
}

.service-box:hover .service-icon {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 30px 60px rgba(255, 208, 0, 0.45);
}

.service-text h2 {
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 25px;
  color: #111;
  letter-spacing: 0.3px;
}

.service-text p {
  color: #5f6b7a;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.service-text ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.service-text ul li {
  font-size: 16px;
  padding: 10px 0;
  color: #444;
  position: relative;
}

.service-text ul li::before {
  content: "✔";
  position: absolute;
  left: -25px;
  color: #ffd900;
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 768px) {
  .service-box {
    padding: 40px 25px;
  }

  .service-text h2 {
    font-size: 26px;
  }

  .service-icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
}

.service-section::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.08), transparent);
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
