.breast-services-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 0;
  background-image: url("assets/images/robotic-breast.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.breast-services-section .overlay-layer {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 60, 0.75);
  z-index: 1;
}

.breast-services-section .container {
  position: relative;
  z-index: 2;
}

.service-main-heading {
  color: #fff;
  font-weight: 700;
  font-size: 42px;
}

.service-sub-heading {
  color: #e0e0e0;
  font-size: 18px;
  max-width: 700px;
  margin: 10px auto 0;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.service-title {
  font-size: 22px;
  font-weight: 600;
  color: #0b4f6c;
  margin-bottom: 15px;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.service-list li {
  font-size: 16px;
  padding-left: 22px;
  margin-bottom: 10px;
  position: relative;
  color: #444;
}

.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e91e63;
  font-weight: bold;
}
.service-icon {
  font-size: 22px;
  color: #e91e63;
  margin-right: 10px;
}
