/* ===== SERVICES SECTION ===== */

.services {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  text-align: center;
  color: white;
}

/* Heading */
.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.services-header p {
  max-width: 650px;
  margin: 0 auto 70px;
  font-size: 16px;
  color: #cbd5e1;
}

/* Grid Layout */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.service-card {
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);

  min-height: 230px;

  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border: 1px solid #3b82f6;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Icon Box */
.icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  margin-bottom: 20px;

  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

/* Title */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Description */
.service-card p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }
}