*{
  box-sizing:border-box;
  margin:0;
  padding:0
}

html{
  scroll-behavior:smooth
}

body{
  font-family:Arial,Helvetica,sans-serif;
  background:#f5f7fb;
  color:#172033;
  line-height:1.6
}

a{
  text-decoration:none;
  color:inherit
}

.container{
  width:min(1120px,92%);
  margin:auto
}

.header{
  background:#fff;
  border-bottom:1px solid #e5e9f0;
  position:sticky;
  top:0;
  z-index:20
}

.nav{
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px
}

.logo{
  font-size:21px;
  font-weight:800;
  letter-spacing:-.5px
}

.nav-link{
  font-size:14px;
  font-weight:700
}

.hero{
  background:linear-gradient(135deg,#eef4ff,#fff);
  padding:78px 0 65px
}

.eyebrow{
  display:inline-block;
  font-size:11px;
  font-weight:800;
  letter-spacing:1.5px;
  margin-bottom:13px;
  text-transform:uppercase
}

.hero h1{
  max-width:820px;
  font-size:clamp(38px,6vw,62px);
  line-height:1.08;
  letter-spacing:-2px;
  margin-bottom:20px
}

.hero-text{
  max-width:720px;
  color:#596477;
  font-size:18px
}

.section{
  padding:72px 0
}

.section-heading{
  margin-bottom:32px
}

.section-heading h2{
  font-size:35px;
  line-height:1.15;
  margin-bottom:9px
}

.section-heading p{
  max-width:700px;
  color:#697386
}

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

.card{
  background:#fff;
  border:1px solid #e2e7ef;
  border-radius:18px;
  padding:25px;
  box-shadow:0 7px 22px rgba(20,32,55,.045);
  transition:.2s
}

.card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(20,32,55,.08)
}

.card h3{
  font-size:22px;
  margin-bottom:7px
}

.card p{
  color:#697386;
  margin-bottom:17px
}

.card-link{
  font-weight:800;
  font-size:14px
}

.icon{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef4ff;
  border-radius:14px;
  font-size:26px;
  margin-bottom:16px
}

/* Service cards */

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

.service-card{
  background:#fff;
  border:1px solid #e2e7ef;
  border-radius:18px;
  padding:25px;
  box-shadow:0 7px 22px rgba(20,32,55,.045);
  transition:.2s
}

.service-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(20,32,55,.08)
}

.service-card h3{
  font-size:21px;
  margin-bottom:8px
}

.service-card p{
  color:#697386;
  margin-bottom:18px
}

.service-icon{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef4ff;
  border-radius:14px;
  font-size:27px;
  margin-bottom:16px
}

/* WhatsApp enquiry button */

.whatsapp-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  background:#172033;
  color:#fff;
  padding:11px 17px;
  border-radius:9px;
  font-size:14px;
  font-weight:800;
  transition:.2s;
  cursor:pointer
}

.whatsapp-button:hover{
  transform:translateY(-2px);
  opacity:.92
}

.whatsapp-button:active{
  transform:translateY(0)
}

.location-box{
  background:#fff;
  border:1px solid #e0e6ef;
  border-radius:17px;
  padding:20px;
  box-shadow:0 10px 28px rgba(20,32,55,.05)
}

.location-list{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:12px
}

.location-pill{
  background:#eef3f9;
  border-radius:999px;
  padding:8px 13px;
  font-size:13px;
  font-weight:700
}

.note{
  margin-top:25px;
  padding:18px;
  border-left:4px solid #172033;
  background:#fff;
  border-radius:8px;
  color:#596477
}

.service-note{
  margin-top:25px;
  padding:18px;
  background:#eef4ff;
  border-radius:12px;
  color:#596477
}

.breadcrumb{
  padding:18px 0 0;
  font-size:13px;
  color:#687386
}

.breadcrumb a{
  text-decoration:underline
}

.cta{
  background:#172033;
  color:#fff;
  padding:65px 0;
  text-align:center
}

.cta p{
  color:#c4ccd8;
  margin:10px auto 22px;
  max-width:620px
}

.button{
  display:inline-block;
  background:#fff;
  color:#172033;
  padding:11px 20px;
  border-radius:8px;
  font-weight:800
}

footer{
  background:#101624;
  color:#fff
}

.footer{
  padding:34px 0;
  display:flex;
  justify-content:space-between;
  gap:30px
}

.footer p{
  color:#aeb7c7;
  font-size:13px
}

.copyright{
  text-align:center;
  border-top:1px solid #293142;
  padding:17px;
  color:#8993a5;
  font-size:12px
}

@media(max-width:700px){

  .hero{
    padding:60px 0 52px
  }

  .hero h1{
    font-size:41px
  }

  .category-grid,
  .service-grid{
    grid-template-columns:1fr
  }

  .footer{
    flex-direction:column
  }

  .section{
    padding:58px 0
  }

  .service-card{
    padding:20px
  }
}
