/* --------------------------
   Base variables & resets
   -------------------------- */
:root{
  --bg:#ffffff;
  --surface:#f8fafc;
  --text:#0f1724;
  --muted:#6b7280;
  --primary:#0b3d91;      /* main brand color (blue) */
  --accent:#e53935;       /* accent (red) */
  --card-bg:#ffffff;
  --glass: rgba(255,255,255,0.06);
  --shadow: 0 6px 18px rgba(11,61,145,0.08);
  --radius: 12px;
  --max-width:1200px;
}

/* Utility */
.container-narrow {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* .page-section {
  background: var(--surface);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.abouttopsection {
  height: 220px;
  background: linear-gradient(180deg, rgba(11,61,145,0.08), rgba(255,255,255,0));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(15,23,36,0.04);
} */



/* Main content container */
#page-content {
  padding: 48px 0 80px;
}
.page-hidden { display: none; }

/* HERO */
.hero {
  background: linear-gradient(90deg, rgba(11,61,145,0.03), rgba(229,57,53,0.02));
  border-radius: 12px;
  padding: 36px;
  margin: 16px auto 32px;
  box-shadow: var(--shadow);
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: center;
}

.hero h1, .hero h2 {
  margin: 0 0 10px;
  font-size: 30px;
  color: var(--text);
  line-height: 1.15;
}
.hero .sub {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 600;
}
.hero p {
  margin: 0 0 18px;
  color: var(--muted);
}

/* Hero CTA group */
.hero .btn {
  display: inline-block;
  margin-right: 10px;
  margin-top: 6px;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  border: 1px solid transparent;
}
.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(11,61,145,0.12);
}
.btn.primary:hover { transform: translateY(-2px); }
.btn.ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(11,61,145,0.12);
}
.btn.ghost:hover { background: rgba(11,61,145,0.04); }

/* Right-side hero quick stats */
.hero .hero-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat {
  background: var(--card-bg);
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(11,61,145,0.03);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.stat .num {
  font-size:20px;
  font-weight:700;
  color:var(--primary);
}
.stat .label {
  color:var(--muted);
  font-size:13px;
}

/* SERVICES section */
.services {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  padding: 12px;
}

/* card style */
.service-card-d {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  border: 1px solid rgba(11,61,145,0.04);
}
.service-card-d h3{
  margin: 0 0 8px;
  color: var(--primary);
  font-size:18px;
}
.service-card-d p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size:14px;
  line-height:1.5;
}
.service-card-d ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}
.service-card-d li {
  margin-bottom: 8px;
  font-size:13.5px;
}

/* hover */
.service-card-d:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(11,61,145,0.08);
}

/* Process / timeline (if used later) */
.process {
  margin-top: 28px;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
}
.process-step {
  flex:1;
  text-align:center;
  background:var(--card-bg);
  padding: 18px;
  border-radius: 10px;
  border:1px solid rgba(11,61,145,0.03);
}

/* Case study cards */
.case-grid {
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:18px;
  margin-top:28px;
}
.case {
  padding:18px;
  border-radius:10px;
  background:linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: var(--shadow);
}

/* FAQ */
.faq {
  margin-top: 28px;
}

/* Sticky contact CTA (small floating button on mobile) */
.request-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(229,57,53,0.18);
  display: none; /* visible on mobile via media queries */
}

/* Accessibility focus */
a:focus, button:focus {
  outline: 3px solid rgba(11,61,145,0.12);
  outline-offset: 3px;
}

/* --------------------------
   Responsive
   -------------------------- */
@media (max-width: 992px){
  .hero { grid-template-columns: 1fr; padding: 24px; }
  .hero .hero-stats { flex-direction: row; gap:10px; }
  .services { grid-template-columns: repeat(2,1fr); padding: 12px; }
  .case-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px){
  /* .abouttopsection { height: 140px; } */
  .page-intro .page-heading{ font-size: 24px; }
  .hero { padding: 18px; gap: 14px; border-radius: 10px; }
  .services { grid-template-columns: 1fr; padding: 12px; }
  .hero h1, .hero h2 { font-size: 20px; }
  .hero p, .service-card-d p { font-size: 14px; }
  .request-cta { display: inline-block; }
  .hero .hero-stats { display:none; } /* hide to save space */
}

/* small helpers */
.mb-8 { margin-bottom: 8px; }
.mt-12 { margin-top: 12px; }
.center { text-align:center; }
