/* Section background fix */
.service-section {
  background: #132B5C !important;
  padding: 80px 0;
  overflow-x: hidden;
}

/* Section heading styles */
.section-header h3 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}
.services .container{
  max-width: 1500px;
}

.section-header h3 span {
  color: #ff7a00;
}

.section-header p {
  color: #ffffff;
  font-size: 17px;
  max-width: 600px;
  margin: auto;
  line-height: 1.7;
}

/* Card container */
.modern-service-card {
  background: #fff;
  border-radius: 20px;
  padding-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modern-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Image in card */
.service-thumb {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Icon circle */
.icon-wrapper {
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: #44a9ed;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.modern-service-card:hover .icon-wrapper {
  transform: scale(1.1);
}

/* Card body text */
.service-body {
  padding: 20px 15px;
  text-align: center;
}

.service-body h4 {
  font-size: 20px;
  font-weight: 700;
  color: #44a9ed;
  margin-bottom: 10px;
}

.service-body p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-header h3 {
    font-size: 28px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .service-body h4 {
    font-size: 18px;
  }

  .service-body p {
    font-size: 14px;
  }
}
/* SECTION BACKGROUND */
.services{
  background: #132B5C;
  padding: 80px 0;
  overflow-x: hidden;
}

/* CARD */
.modern-service-card{
  background: #f6f9ff;          /* card bg color */
  border-radius: 20px;
  padding-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transition: 0.3s;
  height: 100%;
  min-height: 470px;            /* bigger height */
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.15);
}

/* IMAGE HEIGHT BIGGER */
.service-thumb{
  width: 100%;
  height: 230px;                /* bigger image */
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* BODY FULL HEIGHT */
.service-body{
  padding: 20px 15px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

