/* ===== Premium Services Section (Same as Image) ===== */
.service {
  background: var(--color-pure-white);
  padding: 70px 0;
}

/* Card premium */
.service-section-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 5px;
  text-align: center;
  height: 100%;
  position: relative;

  /* 🔹 default invisible border (important) */
  border: 2px solid transparent;

  box-shadow: 
    0 6px 15px rgba(0, 0, 0, 0.10), 
    0 0 0 1px rgba(255, 255, 255, 0.02);

  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* ✅ ONLY hovered card */
.service-section-card:hover {
  transform: translateY(-8px);
  border-color: #7c3aed;

  box-shadow: 
    0 18px 35px rgba(124, 58, 237, 0.18),
    0 0 0 1px rgba(124, 58, 237, 0.25);
}
.service-section-card:hover .service-img-wrapper {
  background: rgba(139, 92, 246, 0.18);
  transform: scale(1.08);
  transition: 0.3s ease;
}


/* Icon circle */
.service-img-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px auto;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.12);
  display: flex;
  border: 1px solid rgba(139, 92, 246, 0.18); 
  align-items: center;
  justify-content: center;
  overflow: hidden;   /* ✅ circle ke andar hi rahe */
}

/* Icon size */
.service-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

/* Title */
.service-title {
  font-size: 18px;
  font-weight: 700;
  color: #121826;
  margin-bottom: 10px;
}

/* Text */
.service-text {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.55;
  margin-bottom: 18px;
  min-height: 55px;
}

/* Read more link like image */
.service-link {
  font-size: 14px;
  font-weight: 600;
  color: #7c3aed;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.service-link:hover {
  color: #5b21b6;
}

.service-link:hover::after {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {

 service-section-card {
    padding: 22px 16px;
  }

  .service-text {
    min-height: auto;
  }
}
