/* ── SERVICES SECTION ── */
#services {
  background: #f0f4fa;
  padding: 90px 0 80px;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21,101,192,.1);
  border: 1px solid rgba(21,101,192,.2);
  color: var(--secondary);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #0d1e35;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--primary); }

.section-subtitle {
  font-size: 1rem;
  color: #6b7a8d;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 52px;
}

/* ── Cover-card grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.13);
}

/* Coloured cover at top */
.sc-cover {
  position: relative;
  padding: 38px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
}

/* Decorative circle watermark */
.sc-cover::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  pointer-events: none;
}
.sc-cover::before {
  content: '';
  position: absolute;
  top: -20px; right: 30px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}

/* Icon circle */
.sc-icon-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Card number label */
.sc-num {
  position: absolute;
  top: 14px; right: 18px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: rgba(255,255,255,.15);
  line-height: 1;
  z-index: 1;
}

/* Cover title (white, on gradient) */
.sc-cover-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

/* White body */
.sc-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sc-desc {
  font-size: .875rem;
  color: #6b7a8d;
  line-height: 1.7;
  margin: 0 0 auto;
  flex: 1;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap .25s;
}
.sc-link:hover { gap: 10px; }
.sc-link i { font-size: .72rem; }

/* Uniform brand gradient — same for every card */
.sc-cover {
  background: linear-gradient(135deg, var(--secondary) 0%, #0d2d5e 100%);
}

/* Orange accent on the icon circle */
.sc-icon-circle {
  background: var(--primary);
}

/* Hover: subtle orange glow on the cover */
.service-card:hover .sc-cover {
  background: linear-gradient(135deg, #1a5fa8 0%, #0d2d5e 100%);
}

@media (max-width: 991px) {
  #services { padding: 60px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .services-grid { grid-template-columns: 1fr; }
}
