.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  position: relative;
  transition: all 0.4s ease;
  border-top: 5px solid #ff99cc;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 153, 204, 0.3);
}

.icon-box {
  position: absolute;
  top: -25px;
  left: 25px;
  background: #ffb3d9;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box i {
  font-size: 24px;
  color: #b30059;
}

.pricing-card h4 {
  margin-top: 30px;
  font-size: 22px;
  color: #b30059;
  font-weight: 600;
}

.duration {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #ff3385;
  margin-bottom: 10px;
}

.desc-list {
  list-style: disc;
  padding-left: 18px;
  color: #555;
  font-size: 14px;
  margin-bottom: 15px;
}
.desc-list li {
  margin-bottom: 5px;
}

/* === PACKAGE BUTTON === */
.package-btn {
  background: linear-gradient(135deg, #ff66a3, #ff3385);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 30px;
  display: inline-block;
  margin-top: auto;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 10px rgba(255, 102, 163, 0.3);
}

.package-btn:hover {
  background: linear-gradient(135deg, #ff3385, #b30059);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(179, 0, 89, 0.4);
}

.services-section {
  background: #f9f9f9;
}

.service-card {
  background: #fff;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .service-card img {
    height: 200px;
  }
}


@media (max-width: 768px) {
  .pricing-card {
    text-align: center;
  }
  .icon-box {
    left: 50%;
    transform: translateX(-50%);
  }
  .desc-list {
    text-align: left;
    display: inline-block;
  }
  .package-btn {
    align-self: center;
  }
}
