.section-head{ align-items: center; justify-content: center; text-align: center; }

/* Add these styles (clean “service detail” blocks) */
.service-detail{
  border-radius: 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(2,6,23,.08);
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  margin-bottom: 1.25rem;
}

.service-detail-alt{
  background: rgba(2,6,23,.02);
}

.service-detail-media{
  width: 100%;
  min-height: 500px;
  border-radius: 1.35rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.22);
  overflow: hidden;
  position: relative;
}


.service-detail-content{
  padding: .25rem 0;
}

.service-detail-kicker{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--p2);
  margin-bottom: .6rem;
}

.service-detail-title{
  font-weight: 900;
  margin: 0 0 .5rem;
}

.service-detail-text{
  color: rgba(15,23,42,.68);
  margin: 0 0 1rem;
  max-width: 70ch;
}

/* clean bullets with blue dots */
.bullet-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
}

.bullet-list li{
  position: relative;
  padding-left: 1.25rem;
  color: rgba(15,23,42,.82);
}

.bullet-list li::before{
  content:"";
  position:absolute;
  left: 0;
  top: .55em;
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: var(--p2);
  box-shadow: 0 0 0 4px rgba(98,155,206,.18);
}

@media (max-width: 991px){
  .service-detail{ padding: 1rem; }
  .service-detail-media{ min-height: 240px; }
}


.parallax-overlay{
  background: linear-gradient(90deg, rgba(2,6,23,.48), rgba(2,6,23,.28));
}

.parallax-text{
  color: rgba(255,255,255);
  font-size: clamp(1rem, 2vw, 1.8rem);
}