:root{
  --bg:#f2f6ff;
  --primary:#0a55ff;
  --primary-600:#0846d1;
  --text:#0b1220;
  --muted:#5b6577;
  --card:#ffffff;
  --ring: rgba(10,85,255,.15);
  --shadow: 0 8px 32px rgba(10,85,255,.08);
  --radius:18px;
}
html,body{height:100%}
html{ scroll-behavior:smooth; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  color:var(--text);
  background: var(--bg);
  line-height:1.5;
}
a{ color:var(--primary); text-decoration:none }
a:hover{ color:var(--primary-600) }
.container-max{ max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header{
  background:#0a55ff;
  position:sticky; top:0; z-index:999;
  box-shadow:0 3px 14px rgba(0,0,0,.12);
}
.navbar{ display:flex; justify-content:space-between; align-items:center; max-width:1200px; margin:auto; padding:2px 20px; }

/* LOGO LEFT */
.logo{ display:flex; align-items:center; gap:10px; color:#fff; font-weight:800; font-size:20px; height:100px }

/* NAV CENTER */
.nav{ position:absolute; left:50%; transform:translateX(-50%); display:flex; gap:28px }
.nav a{ color:#fff; text-decoration:none; font-weight:800; padding:8px 6px; border-bottom:2px solid transparent; transition:.2s }
.nav a:hover{ color:#e9f2ff; border-bottom-color:#fff }
.nav a.active{ border-bottom-color:#fff }

/* CTA */
.cta{ background:#fff; color:#0a55ff; padding:8px 14px; border-radius:10px; font-weight:800 }
.cta:hover{ background:#eff5ff }

/* Hamburger (mobile) */
.hamburger{ display:none; width:42px; height:42px; background:transparent; border:1px solid rgba(255,255,255,.6); border-radius:10px; align-items:center; justify-content:center; gap:5px }
.hamburger span{ display:block; width:22px; height:2px; background:#fff }
@media (max-width:980px){
  .nav{ position:fixed; top:105px; left:0; right:0; transform:none; background:#0a55ff; padding:14px 20px; display:none; flex-direction:column; gap:12px; border-top:1px solid rgba(255,255,255,.2) }
  .nav.show{ display:flex }
  .hamburger{ display:flex }
  .cta{ display:none }
}

/* Hero */
.hero{ display:grid; grid-template-columns: 1.1fr 1fr; gap:28px; padding:42px 0 28px; }
@media (max-width:980px){ .hero{ grid-template-columns:1fr } }
.hero-left h1{ font-size:42px; line-height:1.1; margin:10px 0 16px; }
.hero-left h1 .accent{ color:var(--primary) }
.hero-left p{ color:var(--muted); max-width:560px }
.recognized{ display:flex; align-items:center; gap:14px; margin-top:26px; flex-wrap:wrap }
.badges{ display:flex; gap:18px; flex-wrap:wrap; opacity:.8 }

/* Cards / Form */
.card{ background:var(--card); border:1px solid #e9eef7; border-radius:var(--radius); box-shadow:var(--shadow) }
.form-card{ padding:22px }
.form-grid{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; align-items:start }
@media (max-width:720px){ .form-grid{ grid-template-columns:1fr } }
.input, select, textarea{ width:100%; background:#fff; border:1px solid #e3e9f5; padding:12px 14px; border-radius:12px; outline:none; min-height:44px; display:block; line-height:1.2 }
.input:focus, select:focus, textarea:focus{ border-color:var(--primary); box-shadow:0 0 0 4px var(--ring) }
.label{ font-size:12px; font-weight:600; color:#32415a; margin-bottom:6px; display:block }
.button{ width:100%; padding:12px 16px; border:none; border-radius:12px; background:var(--primary); color:#fff; font-weight:700; cursor:pointer }
.button:hover{ background:var(--primary-600) }
.checkbox{ display:flex; gap:10px; align-items:flex-start; font-size:13px; color:#46546b }

/* Sections */
.section{ padding:64px 0 }
.section-title{ text-align:center; margin-bottom:28px }
.section-title h2{ font-size:28px; margin:0 0 8px }
.section-title p{ color:var(--muted) }

/* Logos grid */
.logo-grid{ display:grid; grid-template-columns: repeat(6,1fr); gap:22px; align-items:center }
@media (max-width:980px){ .logo-grid{ grid-template-columns: repeat(3,1fr) } }
.logo-cell{ background:#fff; border:1px dashed #e7ecf7; border-radius:12px; padding:18px; text-align:center; opacity:.9 }

/* Services (screenshot style) */
.services-hero{ background:linear-gradient(135deg,#0b4af0 0%, #0839cc 100%); color:#fff; position:relative; overflow:hidden }
.services-hero .section-title h2{ color:#fff; font-size:36px }
.services-hero .section-title p{ color:#dbe6ff }
.cards-3{ display:grid; grid-template-columns: repeat(3,1fr); gap:28px }
@media (max-width:1024px){ .cards-3{ grid-template-columns:1fr } }
.service-card{
  background: rgba(255,255,255,0.06);
  border:1.5px solid rgba(255,255,255,0.25);
  border-radius: 28px;
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 10px 24px rgba(0,0,0,0.12);
  min-height: 240px;
  display:flex; flex-direction:column; gap:14px;
}
.service-card:hover{ transform: translateY(-2px); transition: all .2s ease; box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 16px 36px rgba(0,0,0,0.18) }
.service-icon{ width:56px; height:56px; display:grid; place-items:center; border-radius:14px; background: rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.3); margin-bottom:6px }
.service-card h3{ color:#fff; font-size:24px; margin:0 }
.service-card p{ color:#e8eeff; margin:0 }

/* Testimonials */
.testimonials{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px }
@media (max-width:980px){ .testimonials{ grid-template-columns:1fr } }
.testimonial{ padding:22px }
.testimonial .by{ display:flex; align-items:center; gap:10px; margin-top:14px; font-weight:600 }

/* About / Why Us */
.about-wrapper{ padding:28px; border-radius:18px; border:1px solid #e9eef7; box-shadow:var(--shadow); background:#fff; display:grid; grid-template-columns:1.1fr 0.9fr; gap:28px }
@media (max-width:980px){ .about-wrapper{ grid-template-columns:1fr } }
.about-col h2{ margin:0 0 10px }
.about-col h3.mt{ margin-top:16px }
.bullets{ margin:10px 0 0; padding:0 0 0 16px }
.bullets li{ margin:6px 0; color:#334 }
.ticks{ list-style:none; margin:8px 0 14px; padding:0 }
.ticks li{ position:relative; padding-left:26px; margin:8px 0 }
.ticks li:before{ content:"✔"; position:absolute; left:0; top:0; color:#15a34a; font-weight:800 }
.stats{ display:grid; grid-template-columns: repeat(3,1fr); gap:10px }
@media (max-width:640px){ .stats{ grid-template-columns: repeat(2,1fr) } }
.stat{ background:#f3f6ff; border:1px solid #e7ecf7; border-radius:14px; padding:12px; text-align:center }
.stat strong{ display:block; font-size:20px; color:#0a55ff }
.stat span{ font-size:12px; color:#5b6577 }

/* Contact spacing */
#contact .form-card{ padding:26px }
#contact .form-grid{ gap:18px }
#contact .button{ margin-top:8px }

/* Footer */
.footer{ padding:24px 0 12px; color:#6a768a; border-top:1px solid #e6ecf7; background:#fff }
.footer-top{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap }
.social{ display:flex; gap:12px; align-items:center }
.social a{ padding:8px; border-radius:10px; background:#f2f5fb }
.legal{ text-align:center; padding:0px 0 0; color:#ffffff; font-size:15px; margin-top:0px; background-color: #0839cc; }

/* Anchor offset for sticky header */
.section[id]{ scroll-margin-top: 90px; }

/* Utility */
*,:before,:after{ box-sizing:border-box }

/* Contact Section: Business Info + Map */
.contact-wrapper{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
  padding:32px;
}
@media(max-width:900px){
  .contact-wrapper{ grid-template-columns:1fr; }
}

.contact-info h2{
  margin-top:0;
  font-size:28px;
  color:#0a55ff;
  margin-bottom:8px;
}
.contact-info .tagline{
  color:#5b6577;
  margin-bottom:20px;
}

.info-list{
  list-style:none;
  padding:0;
  margin:0;
}
.info-list li{
  margin-bottom:10px;
  font-size:15px;
  color:#0b1220;
}
.info-list strong{
  color:#0846d1;
}

/* Map box */
.contact-map iframe{
  width:100%;
  height:300px;
  border-radius:18px;
  border:2px solid #e3e9f5;
}

