#services {
  background: linear-gradient(to bottom, #ffffff 0%, #eef6ff 100%);
  padding: 80px 0;
}

.services-wrapper .col-xl-4,
.services-wrapper .col-md-6 {
  margin-bottom: 30px;
}

.service-item {
  width: 100%;
  padding: 35px 28px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0a165f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -45px auto 15px auto;
  font-size: 30px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(10,22,95,0.35);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a165f;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4c5565;
  margin-top: 10px;
}


@media (max-width: 992px) {
  .service-item {
    padding: 32px 24px;
  }

  .service-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .service-title {
    font-size: 19px;
  }

  .service-desc {
    font-size: 14.5px;
  }
}

@media (max-width: 576px) {

  #services {
    padding: 60px 0;
  }

  .service-item {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .service-icon {
    width: 58px;
    height: 58px;
    font-size: 23px;
    margin: -35px auto 12px auto;
    box-shadow: 0 3px 12px rgba(10,22,95,0.28);
  }

  .service-title {
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 1.25;
  }

  .service-desc {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .services-wrapper .col-md-6,
  .services-wrapper .col-xl-4 {
    margin-bottom: 22px;
  }
}

p.section-desc {
        font-size: 0.9rem !important;
        line-height: 1.55;
        padding: 0 14px;
        margin-bottom: 40px;
        color: #555;
        text-align: center;
}

h2 {
        font-size: 1.45rem !important;
        margin-bottom: 12px;
}