/* ===============================
   ALL SERVICES SECTION
================================ */

.all-services {
  padding: 100px 0;
  background: #ccd2d7; /* dark premium */
}

/* ===============================
   SERVICE CATEGORY
================================ */

.service-category {
  margin-bottom: 100px;
}

.service-category-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.service-category-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-category-header p {
  font-size: 17px;
  color: #0f172a;
  line-height: 1.7;
}

/* ===============================
   SERVICE GRID
================================ */

.service-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===============================
   SERVICE CARD
================================ */

.service-detail-card {
    background: linear-gradient(135deg, white, white);
  border-radius: 22px;
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* glowing border on hover */
.service-detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(212, 175, 55, 0.45),
    transparent
  );
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: 0.35s ease;
}

.service-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
}

.service-detail-card:hover::before {
  opacity: 1;
}

/* ===============================
   ICON
================================ */

.service-detail-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(
    circle at top left,
    #facc15,
    #d4af37
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.service-detail-icon i {
  font-size: 26px;
  color: #020617;
}

/* ===============================
   CARD CONTENT
================================ */

.service-detail-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-detail-card p {
  font-size: 15px;
  color: #0f172a;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===============================
   FEATURES LIST
================================ */

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-features li i {
  color: #d4af37;
  font-size: 14px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .service-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .all-services {
    padding: 80px 0;
  }

  .service-details {
    grid-template-columns: 1fr;
  }

  .service-category {
    margin-bottom: 80px;
  }
}
