.services-section{
  background: #fff;
}

.section-h2{
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: .2px;
  color: var(--ink);
  font-weight: 800;
}
.section-underline {
  width: 110px;
  height: 5px;
  border-radius: 999px;
  line-height: 1.15;
  margin: 12px auto 18px;
  background: linear-gradient(90deg, #0a8cff, #79bfff);
}


.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.service-card{
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(17,24,39,.05);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(10,140,255,.12);
  background: #ffffff;
}

.service-icon{
  width: 78px;
  height: 78px;
  border-radius: 999px;
  margin: 0 auto 16px;
  background: #79bfff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(10,140,255,.18);
}

.service-icon i{
  font-size: 30px;
  color: #0b2a4a;
}

.service-title{
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 8px;
  color: #111827;
}

.service-desc{
  margin: 0;
  color: var(--primary-grey);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .2px
}

/* Reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.container .text-muted{
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--muted);
}


/* Default = visible (safe) */
.reveal {
  opacity: 1;
  transform: none;
}

/* Only hide when JS enables reveal mode */
html.reveal-on .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

html.reveal-on .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}