/* =========================
   SERVICES SECTION
========================= */
.services {
  text-align: center;
}

/* =========================
   TITLE
========================= */
.section-title {
  font-size: 44px;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.5px;
}

/* =========================
   SUBTITLE
========================= */
.section-subtitle {
  margin-top: 15px;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   GRID
========================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 80px;
}

/* =========================
   CARD (PREMIUM BASE)
========================= */
.service-card {
  padding: 40px;
  border-radius: 22px;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(0,0,0,0.05);

  text-align: left;

  box-shadow: 0 15px 40px rgba(0,0,0,0.06);

  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

/* SOFT GLOW EFFECT */
.service-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(79,172,254,0.2), transparent 70%);
  top: -80px;
  left: -80px;
  opacity: 0;
  transition: 0.4s;
}

/* HOVER (SMOOTH & PREMIUM) */
.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.service-card:hover::before {
  opacity: 1;
}

/* =========================
   ICON
========================= */
.service-icon {
  font-size: 32px;
  margin-bottom: 18px;
}

/* =========================
   TITLE
========================= */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

/* =========================
   TEXT
========================= */
.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* =========================
   HIGHLIGHT CARD (SPECIAL)
========================= */
.service-card.highlight {
  border: 2px solid #4facfe;
  background: rgba(79,172,254,0.06);
  transform: scale(1.05);
  box-shadow: 0 25px 70px rgba(79,172,254,0.2);
}

/* EXTRA GLOW ON HIGHLIGHT */
.service-card.highlight::before {
  opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .service-grid {
    grid-template-columns: 1fr;
  }

}