/* Section BG */
.premium-services {
  background: #f8fafc;
}

/* Card */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: 0.35s ease;
  border: 1px solid #e3e8ef;
  position: relative;
  overflow: hidden;
  transform: translateY(25px);
  opacity: 0;
}

/* Appear animation */
.service-card.show {
  transform: translateY(0);
  opacity: 1;
}

/* Card hover */
.service-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

/* Image container */
.service-img {
  width: 100%;
  height: 170px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
}

.service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.45s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.15);
}

/* Title */
.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

/* Text */
.service-text {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 15px;
}

/* Button */
.service-btn {
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
  transition: 0.28s;
}

.service-btn:hover {
  color: #003fbe;
  padding-left: 6px;
}/*# sourceMappingURL=our-services-section.css.map */