/* ── SERVICES SNAPSHOT ── */

.services {
  padding: 72px 60px;
  background: var(--white);
  max-width: 1920px;
  margin: 0 auto;
}

.section-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.service-card {
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
  cursor: default;
}
.service-card:hover {
  box-shadow: 0 10px 32px rgba(13, 45, 69, 0.1);
  transform: translateY(-4px);
  border-color: #00a3d3;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: #f0f6fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
}

.service-card h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}
