:root{
  --bg:#f4f7fb;
  --white:#ffffff;
  --border:#e7edf5;

  --text:#0b1324;
  --muted:#5c667a;

  --blue:#1e63ff;
  --blue-2:#0f4ad9;
  --orange:#ff7a18;
  --orange-2:#ffb067;

  --radius:18px;
  --radius-sm:12px;
  --shadow:0 10px 28px rgba(12, 20, 38, 0.08);
  --shadow-soft:0 6px 18px rgba(12, 20, 38, 0.06);
}

/* ---------- Base ---------- */
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,system-ui,Arial;
  background:var(--bg);
  color:var(--text);
  font-size:19px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
.container{width:min(1120px, 92%); margin:0 auto;}
.section{padding:80px 0;}
.section-head{margin-bottom:18px;}
.section-head h2{font-size:36px; margin:0 0 8px; font-weight:800;}
.section-head p{margin:0; color:var(--muted); font-size:18px;}
p, li{font-size:18px; line-height:1.7;}

h1{font-size:55px; font-weight:800; letter-spacing:-0.5px;}
h2{font-size:36px; font-weight:800;}
h3{font-size:22px; font-weight:700;}

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:9;
  background:rgba(255,255,255,0.95);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(6px);
}
.nav-wrap{
  display:flex; align-items:center; gap:16px; padding:12px 0; position:relative;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand-name{
  font-weight:900;
  font-size:22px;
  background:linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.brand-tag{
  font-size:13px;
  color:var(--muted);
  font-weight:600;
  letter-spacing:0.3px;
}

.nav{
  margin-left:auto; display:flex; gap:18px;
}
.nav a{
  color:var(--muted);
  font-weight:700;
  padding:8px 8px;
  border-radius:10px;
  transition:all .15s ease;
}
.nav a:hover{
  color:transparent;
  background:linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip:text;
  background-clip:text;
}

.nav-toggle{
  display:none; margin-left:auto;
  background:none; border:0; font-size:22px; cursor:pointer;
}

/* ---------- Hero ---------- */
.hero{
  padding:78px 0 60px;
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(30,99,255,0.10), transparent 60%),
    radial-gradient(900px 420px at 100% -10%, rgba(255,122,24,0.12), transparent 60%);
}

/* Stack layout always so right card comes below */
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
  align-items:start;
}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white);
  border:1px solid var(--border);
  padding:8px 14px;
  border-radius:999px;
  font-size:14px;
  box-shadow:var(--shadow-soft);
  margin-bottom:12px;

  color:transparent;
  background:linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip:text;
  background-clip:text;
  font-weight:800;
}

.hero-text h1{
  font-size:55px; line-height:1.08; margin:0 0 12px;
}
.hero-text h1 span{color:var(--orange);}
.hero-text p{
  font-size:20px; color:var(--muted); margin:0; max-width:650px;
}

.usp-row{
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
  margin-top:16px;
}
.usp{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:22px;
  padding:28px 26px;
  min-height:160px;
  box-shadow:var(--shadow-soft);
}
.usp strong{
  display:block;
  font-size:20px;
  margin-bottom:6px;
  font-weight:900;
  color:transparent;
  background:linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip:text;
  background-clip:text;
}
.usp span{font-size:16.5px; color:var(--muted);}

.hero-buttons{margin-top:18px; display:flex; gap:10px; flex-wrap:wrap;}

.hero-card{
  background:var(--white);
  border:1px solid var(--border);
  padding:26px;
  border-radius:22px;
  min-height:200px;
  box-shadow:0 12px 28px rgba(0,0,0,0.07);
  border-top:4px solid var(--blue);
}
.hero-card h3{
  margin:0 0 8px;
  font-weight:900;
  color:transparent;
  background:linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip:text;
  background-clip:text;
}
.hero-card p{color:var(--muted); margin:0 0 10px;}
.hero-card ul{margin:0; padding-left:18px; color:var(--muted);}
.hero-card li{margin:6px 0;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:13px 20px;
  border-radius:14px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .12s ease, filter .12s ease, border-color .12s ease;
  font-size:17px;
}
.btn.primary{
  background:linear-gradient(90deg, var(--blue), var(--orange));
  color:#fff;
  box-shadow:0 8px 18px rgba(30,99,255,0.18), 0 8px 18px rgba(255,122,24,0.14);
}
.btn.primary:hover{transform:translateY(-1px); filter:brightness(1.03);}
.btn.ghost{
  background:var(--white);
  border-color:var(--border);
  color:var(--text);
}
.btn.ghost:hover{border-color:var(--orange); color:var(--orange);}

/* ---------- Service Cards ---------- */
.cards{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:22px;
  padding:28px 26px;
  min-height:150px;
  box-shadow:0 12px 28px rgba(0,0,0,0.06);
  transition:transform .15s ease, border-color .15s ease;
}
.card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,122,24,0.55);
}
.card h3{
  margin:0 0 8px;
  font-size:21px;
  font-weight:900;
  color:transparent;
  background:linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip:text;
  background-clip:text;
}
.card p{margin:0; color:var(--muted); font-size:17px;}

/* ---------- Core Team USP List ---------- */
.usp-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:16px;
}
.usp-item{
  background:#fff;
  border:1px solid var(--border);
  padding:14px 16px;
  border-radius:14px;
  box-shadow:var(--shadow-soft);
  font-weight:800;
  font-size:17px;
}

/* ---------- Team Section ---------- */
.team-section{padding-top:10px;}
.team-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:8px;
}
.team-card{
  display:grid; grid-template-columns:130px 1fr; gap:14px;
  background:var(--white);
  border:1px solid var(--border);
  padding:22px;
  border-radius:20px;
  box-shadow:0 12px 28px rgba(0,0,0,0.07);
  transition:transform .15s ease, border-color .15s ease;
}
.team-card:hover{
  transform:translateY(-3px);
  border-color:rgba(30,99,255,0.45);
}
.team-photo{
  width:130px; height:130px;
  border-radius:18px;
  object-fit:cover;
  border:1px solid var(--border);
}
.team-info h3{margin:0 0 4px; font-size:22px;}
.role{
  margin:0 0 8px; font-size:15px; font-weight:800; color:var(--blue);
}
.email{
  margin:0 0 8px;
  font-size:16px;
  font-weight:800;
  color:var(--muted);
}
.email a{
  color:var(--blue);
  font-weight:900;
}
.bio{
  margin:0 0 10px; font-size:17px; color:var(--muted); line-height:1.7;
}
.team-link{
  font-weight:900; font-size:15px; color:var(--orange);
}
.team-link:hover{color:var(--blue);}

/* ---------- CTA ---------- */
.cta{
  padding:40px 0;
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.cta-grid{
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.cta h2{font-size:34px; font-weight:800;}
.cta p{margin:0; color:var(--muted); font-size:18px;}

/* ---------- Page hero ---------- */
.page-hero{
  padding:52px 0 34px; background:var(--white); border-bottom:1px solid var(--border);
}
.page-hero h1{margin:0 0 6px; font-size:42px;}
.page-hero p{margin:0; color:var(--muted); font-size:18px;}

/* ================================
   ABOUT PAGE UPGRADE
================================ */
.about-hero{ padding:36px 0 26px !important; }
.about-hero-grid{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
}
.about-subtitle{
  margin:0; font-size:19px; color:var(--muted);
  max-width:720px;
}

/* chips bigger + gradient text */
.about-chips{ display:flex; gap:8px; flex-wrap:wrap; margin-top:8px; }
.chip{
  background:#fff; border:1px solid var(--border);
  padding:10px 18px; border-radius:18px;
  font-weight:900; font-size:16px;
  box-shadow:var(--shadow-soft);

  color:transparent;
  background:linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip:text;
  background-clip:text;
}

.about-intro{ padding-top:40px !important; }
.about-grid{
  display:grid;
  grid-template-columns:1fr;  /* mission below */
  gap:18px;
  align-items:start;
}
.mission-card{
  background:#fff; border:1px solid var(--border);
  padding:22px; border-radius:20px;
  box-shadow:var(--shadow);
}
.mission-card h3{
  margin:0 0 8px; font-size:20px; font-weight:900;
  color:transparent;
  background:linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip:text;
  background-clip:text;
}
.mission-card p{
  margin:0; font-size:17px; color:var(--muted); line-height:1.6;
}

.about-usp-section{ padding-top:10px !important; }
.usp-cards{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:12px; margin-top:12px;
}
.usp-card{
  background:#fff; border:1px solid var(--border);
  padding:14px 16px; border-radius:14px;
  font-weight:900; font-size:16px;
  box-shadow:var(--shadow-soft);
}

/* ---------- Contact ---------- */
.contact-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:16px;
}
.contact-form, .contact-info{
  background:var(--white); border:1px solid var(--border);
  padding:22px; border-radius:20px; box-shadow:var(--shadow-soft);
}
.form-row{display:grid; gap:6px; margin-bottom:12px;}
label{font-size:15px; color:var(--muted);}

input, textarea{
  width:100%; padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fbfdff; color:var(--text); outline:none;
  font-size:17px;
}
input:focus, textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(30,99,255,0.12);
}

/* Reach Us card */
.reach-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.reach-card h3{
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}
.reach-item{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.reach-item:last-child{ border-bottom: none; }
.reach-label{
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--muted);
}
.reach-value{
  font-size: 17px;
  color: var(--text);
  line-height: 1.6;
}
.reach-value a{
  color: var(--blue);
  font-weight: 800;
}
.reach-value a:hover{ color: var(--orange); }

/* ---------- Footer ---------- */
.site-footer{
  margin-top:30px; padding:34px 0 12px;
  background:var(--white); border-top:1px solid var(--border);
}
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:16px;
}
.site-footer h4{margin:0 0 8px; font-size:19px;}
.site-footer p, .site-footer li{color:var(--muted); font-size:16px;}
.site-footer a:hover{color:var(--orange);}
.site-footer ul{margin:0; padding-left:18px;}
.copyright{
  margin-top:18px; padding-top:10px;
  border-top:1px solid var(--border);
  color:var(--muted); font-size:15px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  h1{font-size:44px;}
  .section{padding:60px 0;}
  .usp-row{grid-template-columns:1fr;}
  .cards{grid-template-columns:1fr 1fr;}
  .team-grid{grid-template-columns:1fr;}
  .usp-list{grid-template-columns:1fr 1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .usp-cards{grid-template-columns:1fr 1fr;}
  .team-card{grid-template-columns:110px 1fr;}
  .team-photo{width:110px;height:110px;}
}

@media (max-width: 640px){
  h1{font-size:36px;}
  h2{font-size:30px;}
  h3{font-size:20px;}
  .cards{grid-template-columns:1fr;}
  .usp-list, .usp-cards{grid-template-columns:1fr;}
  .reach-item{grid-template-columns:1fr; gap:4px;}

  .nav{
    display:none; flex-direction:column; position:absolute; right:4%; top:60px;
    background:#fff; padding:10px; border:1px solid var(--border);
    border-radius:12px; box-shadow:var(--shadow);
  }
  .nav.show{display:flex;}
  .nav-toggle{display:block;}

  .team-card{grid-template-columns:100px 1fr;}
  .team-photo{width:100px;height:100px;}
}

/* ================================
   OUR SERVICES — MATCH FIGURE
================================ */

/* Grid exactly like screenshot */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:16px;
}

/* Card style like figure */
.service-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
  min-height: 210px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  transition: transform .15s ease, box-shadow .15s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Title styling: blue first word, purple second part */
.svc-title{
  margin:0 0 12px;
  font-size:22px;
  font-weight:900;
  line-height:1.35;
}

.svc-title .primary{
  color: var(--blue);
}

.svc-title .secondary{
  color:#7a6aa5;  /* soft purple like your image */
  font-weight:800;
}

/* Paragraph like screenshot */
.service-card p{
  margin:0;
  font-size:17px;
  color:var(--muted);
  line-height:1.65;
}

/* Responsive */
@media(max-width:900px){
  .services-grid{ grid-template-columns:1fr 1fr; }
}
@media(max-width:640px){
  .services-grid{ grid-template-columns:1fr; }
  .svc-title{ font-size:20px; }
}
