/* ===== SwasthAxis — Shared Styles ===== */
:root{
  --navy:#0F2544;
  --navy-2:#1B3B66;
  --teal:#0B7C77;
  --teal-2:#0FA39C;
  --gold:#B08D57;
  --gold-2:#D4B37D;
  --cream:#FAF7F1;
  --ink:#1E2430;
  --grey:#697080;
  --line:#E7E2D6;
  --radius:3px;
}
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:'Inter', -apple-system, sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{ font-family:'Fraunces', Georgia, serif; color:var(--navy); font-weight:600; line-height:1.15; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.wrap{ max-width:1140px; margin:0 auto; padding:0 28px; }
ul{ list-style:none; }

/* ---- Header / Nav ---- */
header.site-header{
  position:sticky; top:0; z-index:100; background:rgba(255,255,255,.97);
  backdrop-filter:blur(6px); border-bottom:1px solid var(--line);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding:16px 28px; max-width:1140px; margin:0 auto; }
.logo{ font-family:'Fraunces',serif; font-weight:700; font-size:21px; color:var(--navy); letter-spacing:.2px; }
.logo span{ color:var(--teal); }
.navlinks{ display:flex; gap:30px; font-size:14.5px; font-weight:500; }
.navlinks a{ position:relative; padding:4px 0; color:var(--navy); }
.navlinks a.active, .navlinks a:hover{ color:var(--teal); }
.navlinks a.active::after{ content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--teal); }
.nav-cta{ background:var(--navy); color:#fff; padding:11px 22px; border-radius:var(--radius); font-size:13.5px; font-weight:600; letter-spacing:.3px; }
.nav-cta:hover{ background:var(--teal); }
.menu-toggle{ display:none; }

/* ---- Buttons ---- */
.btn{ display:inline-block; padding:14px 30px; border-radius:var(--radius); font-weight:700; font-size:14.5px; letter-spacing:.2px; }
.btn-gold{ background:var(--gold); color:var(--navy); }
.btn-gold:hover{ background:var(--gold-2); }
.btn-line{ border:1.5px solid rgba(255,255,255,.5); color:#fff; }
.btn-line:hover{ border-color:#fff; background:rgba(255,255,255,.08); }
.btn-navy{ background:var(--navy); color:#fff; }
.btn-navy:hover{ background:var(--teal); }

/* ---- Hero (full screen) ---- */
.hero-full{
  min-height:92vh; display:flex; align-items:center; position:relative; overflow:hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(15,163,156,.28), transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, #132D52 55%, var(--navy-2) 100%);
  color:#fff;
}
.hero-full .pulse-line{
  position:absolute; left:0; right:0; bottom:14%; height:120px; opacity:.35; pointer-events:none;
}
.hero-content{ position:relative; z-index:2; max-width:700px; padding:120px 28px 90px; margin:0 auto; text-align:center; }
.eyebrow{ color:var(--gold-2); letter-spacing:3px; font-size:12.5px; font-weight:700; text-transform:uppercase; margin-bottom:20px; }
.hero-full h1{ color:#fff; font-size:clamp(32px,5vw,52px); margin-bottom:22px; }
.hero-full p.lead{ color:#C7D0DE; font-size:18px; max-width:540px; margin:0 auto 38px; }
.hero-btns{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.scroll-cue{ position:absolute; bottom:34px; left:50%; transform:translateX(-50%); color:#9FB0C6; font-size:12px; letter-spacing:2px; text-align:center; }
.scroll-cue .line{ width:1px; height:34px; background:rgba(255,255,255,.35); margin:10px auto 0; }

/* ---- Section generic ---- */
section{ padding:88px 28px; }
.section-head{ text-align:center; max-width:640px; margin:0 auto 54px; }
.section-tag{ color:var(--teal); font-weight:700; letter-spacing:2px; font-size:12.5px; text-transform:uppercase; margin-bottom:12px; }
.section-head h2{ font-size:clamp(26px,3.4vw,36px); margin-bottom:14px; }
.section-head p{ color:var(--grey); font-size:16px; }
.bg-cream{ background:var(--cream); }
.bg-navy{ background:var(--navy); color:#fff; }
.bg-navy h2, .bg-navy .section-head h2{ color:#fff; }
.bg-navy .section-head p{ color:#AEB9CB; }

/* ---- Trust bar (logos) ---- */
.trust-bar{ padding:44px 28px; border-bottom:1px solid var(--line); }
.trust-label{ text-align:center; font-size:12.5px; letter-spacing:2px; color:var(--grey); text-transform:uppercase; margin-bottom:26px; font-weight:600; }
.trust-logos{ display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:44px; }
.trust-logo{ font-family:'Fraunces',serif; font-weight:600; font-size:19px; color:#B7BEC9; letter-spacing:.5px; filter:grayscale(1); opacity:.8; }
.trust-logo:hover{ color:var(--navy); opacity:1; }

/* ---- Stats / animated counters ---- */
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:rgba(255,255,255,.08); max-width:1000px; margin:0 auto; border-radius:var(--radius); overflow:hidden; }
.stat-cell{ background:var(--navy-2); padding:38px 20px; text-align:center; }
.stat-num{ font-family:'Fraunces',serif; font-size:44px; font-weight:700; color:var(--gold-2); }
.stat-label{ font-size:13px; color:#C7D0DE; letter-spacing:.5px; margin-top:8px; text-transform:uppercase; }

/* ---- Service cards (interactive) ---- */
.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:1140px; margin:0 auto; }
.svc-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:32px 26px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease; cursor:default;
}
.svc-card:hover{ transform:translateY(-6px); box-shadow:0 18px 40px rgba(15,37,68,.10); border-color:var(--teal); }
.svc-icon{
  width:46px; height:46px; border-radius:50%; background:var(--cream); color:var(--teal);
  display:flex; align-items:center; justify-content:center; font-weight:700; font-family:'Fraunces',serif;
  font-size:19px; margin-bottom:18px; border:1.5px solid var(--teal);
}
.svc-card h3{ font-size:17.5px; margin-bottom:9px; }
.svc-card p{ color:var(--grey); font-size:14.5px; }
.svc-num{ float:right; color:var(--gold); font-weight:700; font-size:12.5px; }

/* ---- Founder message ---- */
.founder{ display:grid; grid-template-columns:220px 1fr; gap:44px; align-items:center; max-width:920px; margin:0 auto; }
.founder-photo{
  width:220px; height:220px; border-radius:50%; background:linear-gradient(160deg,var(--navy),var(--teal));
  display:flex; align-items:center; justify-content:center; color:#fff; font-family:'Fraunces',serif; font-size:52px; font-weight:700;
}
.founder blockquote{ font-family:'Fraunces',serif; font-size:21px; color:var(--navy); line-height:1.5; font-style:italic; margin-bottom:18px; }
.founder .sig{ font-weight:700; color:var(--navy); }
.founder .role{ color:var(--teal); font-size:13px; letter-spacing:.5px; text-transform:uppercase; font-weight:600; }

/* ---- Testimonials ---- */
.testi-wrap{ max-width:760px; margin:0 auto; text-align:center; position:relative; }
.testi-slide{ display:none; }
.testi-slide.active{ display:block; animation:fadeIn .5s ease; }
@keyframes fadeIn{ from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);} }
.testi-quote{ font-family:'Fraunces',serif; font-size:22px; color:var(--navy); font-style:italic; line-height:1.5; margin-bottom:22px; }
.testi-name{ font-weight:700; color:var(--navy); }
.testi-role{ color:var(--grey); font-size:13.5px; }
.testi-dots{ display:flex; justify-content:center; gap:8px; margin-top:30px; }
.testi-dot{ width:8px; height:8px; border-radius:50%; background:var(--line); cursor:pointer; border:none; }
.testi-dot.active{ background:var(--teal); }

/* ---- Case studies / Blog cards ---- */
.card-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; max-width:1140px; margin:0 auto; }
.content-card{ border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:#fff; transition:box-shadow .2s ease; }
.content-card:hover{ box-shadow:0 16px 34px rgba(15,37,68,.09); }
.card-media{ height:170px; background:linear-gradient(135deg,var(--navy),var(--teal)); position:relative; }
.card-tag{ position:absolute; top:14px; left:14px; background:rgba(255,255,255,.92); color:var(--navy); font-size:11.5px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; padding:5px 10px; border-radius:2px; }
.card-body{ padding:24px; }
.card-body h3{ font-size:17px; margin-bottom:10px; }
.card-body p{ color:var(--grey); font-size:14px; margin-bottom:14px; }
.card-meta{ font-size:12.5px; color:var(--grey); border-top:1px solid var(--line); padding-top:12px; display:flex; justify-content:space-between; }
.read-link{ color:var(--teal); font-weight:600; font-size:13.5px; }

/* ---- Forms ---- */
.form-box{ max-width:640px; margin:0 auto; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:40px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
form label{ font-size:12.5px; color:var(--grey); font-weight:600; letter-spacing:.3px; margin-bottom:6px; display:block; }
form .field{ margin-bottom:18px; }
form input, form select, form textarea{
  width:100%; border:1px solid var(--line); padding:12px 14px; border-radius:var(--radius); font-family:'Inter',sans-serif; font-size:14.5px; background:#FCFBF8;
}
form input:focus, form select:focus, form textarea:focus{ outline:2px solid var(--teal); outline-offset:1px; }
form button[type="submit"]{ width:100%; border:none; cursor:pointer; }

.dark-form input, .dark-form select, .dark-form textarea{
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.25); color:#fff;
}
.dark-form input::placeholder, .dark-form textarea::placeholder{ color:#9AA5B5; }
.dark-form label{ color:#B9C1CF; }

/* ---- Careers ---- */
.job-list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.job-item{ display:flex; justify-content:space-between; align-items:center; border:1px solid var(--line); border-radius:var(--radius); padding:22px 26px; flex-wrap:wrap; gap:12px; }
.job-item h3{ font-size:16.5px; margin-bottom:6px; }
.job-meta{ font-size:13px; color:var(--grey); }
.job-meta span{ margin-right:14px; }

/* ---- Footer ---- */
footer.site-footer{ background:#0A1B32; color:#8B96A8; padding:60px 28px 28px; }
.footer-grid{ display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; max-width:1140px; margin:0 auto 40px; }
.footer-grid h4{ color:#fff; font-size:14px; margin-bottom:16px; letter-spacing:.4px; }
.footer-grid p, .footer-grid a{ font-size:13.5px; color:#8B96A8; line-height:2; }
.footer-grid a:hover{ color:var(--gold-2); }
.footer-logo{ font-family:'Fraunces',serif; font-size:20px; font-weight:700; color:#fff; margin-bottom:14px; }
.footer-logo span{ color:var(--teal-2); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.08); max-width:1140px; margin:0 auto; padding-top:24px; text-align:center; font-size:12.5px; }

/* ---- Utility / responsive ---- */
.center{ text-align:center; }
@media (max-width: 900px){
  .navlinks{ display:none; }
  .svc-grid, .card-grid{ grid-template-columns:1fr 1fr; }
  .stats-grid{ grid-template-columns:1fr 1fr; }
  .founder{ grid-template-columns:1fr; text-align:center; }
  .founder-photo{ margin:0 auto; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 560px){
  .svc-grid, .card-grid, .stats-grid, .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
}
