 /* Dropdown background */
  .navbar .dropdown-menu {
    background-color: #1a8f89;
    border: none;
    margin-top: 0;
  }

  /* Dropdown item hover */
  .navbar .dropdown-menu .dropdown-item {
    color: #fff;
  }
  .navbar .dropdown-menu .dropdown-item:hover {
    background-color: #fff;
    color: #1a8f89 !important;
  }

  /* Hover open dropdown on desktop */
  @media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
      display: block;
    }
  }


  


.service-card {
  transition: 0.4s ease;
}

/* Important: body ko relative karo */
.service-card .card-body {
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  z-index: 1;
}

/* Fill effect only inside content */
.service-card .card-body::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #1a8f89;
  transition: height 0.4s ease;
  z-index: -1;
}

/* Hover effect */
.service-card:hover .card-body::before {
  height: 100%;
}

.service-card:hover h5,
.service-card:hover p {
  color: #fff !important;
}


.review-section {
  padding: 60px 0;
  background: #f4f9f8;
}

.review-card {
  background: #1a8f89;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.review-no {
  width: 48px;
  height: 48px;
  background: #ffffff;
  color: #1a8f89;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 15px;
}

.review-card h5 {
  color: #fff;
  font-weight: 700;
}

.review-card p {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
}

.splide__slide {
  padding: 2px;
}

/* ===== MOBILE FIX : 412px ===== */
@media (max-width: 412px) {
  .review-section {
    padding: 40px 0;
  }

  .review-card {
    padding: 22px;
    border-radius: 14px;
  }

  .review-no {
    width: 42px;
    height: 42px;
    font-size: 15px;
    margin-bottom: 12px;
  }

  .review-card h5 {
    font-size: 16px;
    line-height: 1.3;
  }

  .review-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .splide__slide {
    padding: 6px;
  }
}
