/* =========================================================
   Advanced Health Cure — Global Stylesheet
   ========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --primary: #0761b0;
  --primary-dark: #05cbb8;
  --primary-darker: #075e5d;
  --primary-light: #ccfbf4;
  --primary-soft: #f0fdfa;

  --accent: #05cbb8;
  --accent-dark: #0761b0;
  --accent-light: #fff1e6;

  --ink: #1f2d2c;
  --body: #4b5b59;
  --muted: #7a8a88;
  --line: #e6eeed;

  --bg: #ffffff;
  --bg-soft: #f5fbfa;
  --bg-tint: #f0fdfa;

  --dark: #001b33;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(15, 60, 58, 0.06);
  --shadow: 0 14px 38px rgba(15, 60, 58, 0.10);
  --shadow-lg: 0 28px 60px rgba(15, 60, 58, 0.16);

  --container: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --gutter: 28px; /* default row gutter */
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
}

::selection { background: var(--primary); color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--bg-tint); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  letter-spacing: -.5px;
}
.section-head p { margin-top: 16px; color: var(--body); font-size: 1.05rem; }

.text-primary { color: var(--primary-dark); }

/* =========================================================
   12-COLUMN RESPONSIVE GRID SYSTEM
   Usage: <div class="row"> <div class="col-12 col-sm-6 col-lg-4"> … </div> </div>
   Breakpoints: xs (base) | sm ≥576 | md ≥768 | lg ≥992 | xl ≥1200
   ========================================================= */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--gutter) / -2);
  margin-right: calc(var(--gutter) / -2);
}
.row > [class*="col-"] {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-left: calc(var(--gutter) / 2);
  padding-right: calc(var(--gutter) / 2);
  box-sizing: border-box;
}

/* vertical alignment utilities */
.row.items-center { align-items: center; }
.row.items-start  { align-items: flex-start; }
.row.items-end    { align-items: flex-end; }
.row.justify-center { justify-content: center; }

/* gutter modifiers */
.row.g-0 { --gutter: 0px; }
.row.g-2 { --gutter: 18px; }
.row.g-4 { --gutter: 36px; }
.row.g-5 { --gutter: 48px; }

/* ordering helpers */
.order-first { order: -1; }
.order-last  { order: 99; }

/* ----- base columns (xs) ----- */
.col-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
.col-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3  { flex: 0 0 25%;        max-width: 25%; }
.col-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6  { flex: 0 0 50%;        max-width: 50%; }
.col-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9  { flex: 0 0 75%;        max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%;       max-width: 100%; }

/* ----- sm ≥576px ----- */
@media (min-width: 576px) {
  .col-sm-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
  .col-sm-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3  { flex: 0 0 25%;        max-width: 25%; }
  .col-sm-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6  { flex: 0 0 50%;        max-width: 50%; }
  .col-sm-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-sm-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-9  { flex: 0 0 75%;        max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-sm-12 { flex: 0 0 100%;       max-width: 100%; }
}

/* ----- md ≥768px ----- */
@media (min-width: 768px) {
  .col-md-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
  .col-md-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3  { flex: 0 0 25%;        max-width: 25%; }
  .col-md-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6  { flex: 0 0 50%;        max-width: 50%; }
  .col-md-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9  { flex: 0 0 75%;        max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%;       max-width: 100%; }
}

/* ----- lg ≥992px ----- */
@media (min-width: 992px) {
  .col-lg-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
  .col-lg-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-3  { flex: 0 0 25%;        max-width: 25%; }
  .col-lg-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6  { flex: 0 0 50%;        max-width: 50%; }
  .col-lg-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9  { flex: 0 0 75%;        max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-lg-12 { flex: 0 0 100%;       max-width: 100%; }
  .order-lg-first { order: -1; }
  .order-lg-last  { order: 99; }
}

/* ----- xl ≥1200px ----- */
@media (min-width: 1200px) {
  .col-xl-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
  .col-xl-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-xl-3  { flex: 0 0 25%;        max-width: 25%; }
  .col-xl-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xl-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-xl-6  { flex: 0 0 50%;        max-width: 50%; }
  .col-xl-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-xl-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-xl-9  { flex: 0 0 75%;        max-width: 75%; }
  .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-xl-12 { flex: 0 0 100%;       max-width: 100%; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .96rem;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 26px rgba(14, 165, 164, .32);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(14, 165, 164, .42); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(249, 115, 22, .32);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(249, 115, 22, .42); }

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

.btn-ghost-light {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: #fff; color: var(--primary-dark); transform: translateY(-3px); }

.btn-block { width: 100%; }

/* =========================================================
   Top bar
   ========================================================= */
.topbar {
  background: var(--dark);
  color: #cdeae8;
  font-size: .85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding-block: 9px; }
.topbar-info { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar-info a, .topbar-info span { display: inline-flex; align-items: center; gap: 7px; color: #cdeae8; transition: color .2s; }
.topbar-info a:hover { color: #fff; }
.topbar-info svg { width: 15px; height: 15px; color: var(--accent); }
.topbar-social { display: flex; gap: 16px; }
.topbar-social a { display: grid; place-items: center; transition: color .2s, transform .2s; }
.topbar-social a:hover { color: var(--accent); transform: translateY(-2px); }
.topbar-social svg { width: 16px; height: 16px; }

/* =========================================================
   Navbar
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.navbar.scrolled { box-shadow: 0 8px 28px rgba(15, 60, 58, .08); }

.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 14px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; flex: none;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary), var(--primary-darker));
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(14, 165, 164, .35);
}
.brand-mark svg { width: 26px; height: 26px; color: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.22rem; color: var(--ink); letter-spacing: -.4px; }
.brand-tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--primary-dark); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 9px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-links > li > a:hover { color: var(--primary-dark); background: var(--primary-soft); }
.nav-links > li > a.active { color: var(--primary-dark); }
.nav-links > li > a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px;
  height: 2px; border-radius: 2px; background: var(--accent);
}

/* dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s var(--ease);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 9px; font-size: .92rem; color: var(--ink); font-weight: 500; transition: background .2s, color .2s; }
.dropdown a:hover { background: var(--primary-soft); color: var(--primary-dark); }
.dropdown a::after { display: none; }
.has-dropdown > a::marker { content: ""; }
.caret { display: inline-block; font-size: .7rem; margin-left: 4px; opacity: .6; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { padding: 11px 22px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--primary-soft);
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 22px; height: 2px; background: var(--primary-dark);
  transform: translate(-50%, -50%); transition: transform .3s, opacity .2s;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after { transform: translate(-50%, 7px); }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle.active span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(23, 142, 213, 0.93) 0%, rgba(93, 156, 203, 0.82) 42%, rgba(2, 63, 117, 0.55) 100%),
    url('../img/hero.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -120px; bottom: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.35), transparent 70%);
}
.hero .row { padding-block: 90px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px; border-radius: 50px;
  font-size: .85rem; font-weight: 500;
  backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.3); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.7rem); line-height: 1.08; letter-spacing: -1px; margin: 22px 0 18px; }
.hero h1 em { color: #ffd9bf; font-style: normal; }
.hero p { color: #e0f3f1; font-size: 1.13rem; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .num { font-family: 'Poppins'; font-weight: 800; font-size: 2rem; color: #fff; line-height: 1; }
.hero-stats .lbl { font-size: .85rem; color: #cdeae8; margin-top: 6px; }

/* hero floating card */
.hero-visual { position: relative; }
.hero-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  width: 320px;
  max-width: 100%;
  position: relative;
  z-index: 2;
  margin-left: auto;
}
.hero-card h4 { font-size: 1.1rem; margin-bottom: 16px; }
.hero-card .hc-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.hero-card .hc-row:first-of-type { border-top: none; }
.hc-ic { width: 42px; height: 42px; flex: none; border-radius: 11px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary-dark); }
.hc-ic svg { width: 20px; height: 20px; }
.hc-row span { font-size: .9rem; font-weight: 600; color: var(--ink); }
.hc-row small { display: block; color: var(--muted); font-size: .78rem; font-weight: 400; }
.hero-blob {
  position: absolute; right: -28px; top: -28px;
  width: 130px; height: 130px; border-radius: 32px;
  background: linear-gradient(135deg, var(--accent), #ff9d57);
  opacity: .92; z-index: 1;
}
.hero-blob span { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-family: 'Poppins'; font-weight: 800; font-size: 1.4rem; text-align: center; line-height: 1.1; }

.hero-rating {
  position: absolute; left: 0; bottom: 30px; z-index: 3;
  background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.hero-rating .stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }
.hero-rating b { display: block; font-family: 'Poppins'; color: var(--ink); font-size: .95rem; }
.hero-rating small { color: var(--muted); font-size: .78rem; }

/* =========================================================
   Marquee / trust strip
   ========================================================= */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust .container { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; padding-block: 26px; color: var(--muted); }
.trust strong { font-family: 'Poppins'; color: var(--ink); font-size: .95rem; margin-right: 6px; }
.trust .pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 50px; font-size: .85rem; font-weight: 500; color: var(--ink); background: var(--bg-soft); }
.trust .pill svg { width: 16px; height: 16px; color: var(--primary); }

/* =========================================================
   About (home) — now uses .row + col-lg-6
   ========================================================= */
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-exp {
  position: absolute; left: -26px; bottom: -26px;
  background: linear-gradient(135deg, var(--primary), var(--primary-darker));
  color: #fff; border-radius: 18px; padding: 22px 26px;
  box-shadow: var(--shadow);
}
.about-exp b { font-family: 'Poppins'; font-size: 2.4rem; display: block; line-height: 1; }
.about-exp span { font-size: .85rem; opacity: .9; }

.about-content h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.about-content p { margin-bottom: 16px; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; margin: 26px 0 32px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--ink); font-size: .96rem; }
.about-list svg { width: 22px; height: 22px; flex: none; color: var(--primary); margin-top: 1px; }
.about-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.about-cta .phone { display: flex; align-items: center; gap: 10px; }
.about-cta .phone-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-soft); display: grid; place-items: center; color: var(--primary-dark); }
.about-cta .phone-ic svg { width: 22px; height: 22px; }
.about-cta .phone small { display: block; color: var(--muted); font-size: .8rem; }
.about-cta .phone b { font-family: 'Poppins'; color: var(--ink); font-size: 1.05rem; }

/* =========================================================
   Why choose us / features — uses .row + col-12 col-sm-6 col-lg-4
   ========================================================= */
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 28px; height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.feature-ic {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 20px; background: var(--primary-soft); color: var(--primary-dark);
  transition: background .3s, color .3s;
}
.feature:hover .feature-ic { background: var(--primary); color: #fff; }
.feature-ic svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 10px; }
.feature p { font-size: .95rem; }

.why-banner { margin-top: 70px; background: var(--bg-tint); border-radius: var(--radius-lg); padding: 46px; }
.why-banner img { border-radius: var(--radius); }
.why-banner ul { display: grid; gap: 18px; margin: 22px 0 28px; }
.why-banner ul li { display: flex; gap: 14px; align-items: flex-start; }
.why-banner ul svg { width: 24px; height: 24px; flex: none; color: #fff; background: var(--primary); border-radius: 50%; padding: 5px; margin-top: 2px; }
.why-banner ul b { color: var(--ink); font-family: 'Poppins'; font-size: 1rem; }
.why-banner ul p { font-size: .92rem; margin: 0; }

/* =========================================================
   Services grid — uses .row + col-12 col-sm-6 col-lg-4
   ========================================================= */
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-thumb { position: relative; height: 210px; overflow: hidden; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-thumb img { transform: scale(1.08); }
.service-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(6,41,42,.35)); }
.service-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.9); color: var(--primary-dark);
  font-family: 'Poppins'; font-weight: 600; font-size: .72rem;
  padding: 6px 13px; border-radius: 50px; text-transform: uppercase; letter-spacing: .05em;
  display: none;
}
.service-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.24rem; margin-bottom: 10px; }
.service-body p { font-size: .94rem; margin-bottom: 20px; flex: 1; }
.service-body .btn { align-self: flex-start; padding: 11px 22px; font-size: .9rem; }

/* =========================================================
   Stats band — uses .row + col-6 col-lg-3
   ========================================================= */
.stats-band {
  background: linear-gradient(120deg, var(--dark), var(--primary-darker));
  color: #fff;
}
.stats-grid { padding: 56px 0; text-align: center; }
.stat-item b { font-family: 'Poppins'; font-weight: 800; font-size: 2.6rem; color: #fff; display: block; line-height: 1; }
.stat-item b span { color: var(--accent); }
.stat-item p { color: #bfe6e3; margin-top: 10px; font-size: .95rem; }

/* =========================================================
   Testimonials — uses .row + col-12 col-sm-6 col-lg-4
   ========================================================= */
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s;
  position: relative;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi-quote { font-size: 3rem; font-family: 'Poppins'; color: var(--primary-light); line-height: .6; margin-bottom: 8px; }
.testi-stars { color: #fbbf24; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { color: var(--body); font-size: .98rem; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-family: 'Poppins'; font-weight: 700; color: #fff; font-size: 1.1rem; }
.testi-author b { display: block; font-family: 'Poppins'; color: var(--ink); font-size: 1rem; }
.testi-author small { color: var(--muted); font-size: .82rem; }

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; background: #fff; overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow); border-color: var(--primary-light); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 26px; font-family: 'Poppins'; font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.faq-q .faq-ic { width: 30px; height: 30px; flex: none; border-radius: 8px; background: var(--primary-soft); display: grid; place-items: center; color: var(--primary-dark); transition: transform .35s var(--ease), background .3s; }
.faq-item.open .faq-q .faq-ic { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-q .faq-ic svg { width: 16px; height: 16px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; color: var(--body); }

/* =========================================================
   Blog grid — uses .row + col-12 col-sm-6 col-lg-4
   ========================================================= */
.blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-thumb { height: 200px; overflow: hidden; position: relative; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.07); }
.blog-cat { position: absolute; top: 14px; left: 14px; background: var(--primary); color: #fff; font-size: .72rem; font-weight: 600; padding: 5px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: .04em; }
.blog-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 16px; font-size: .82rem; color: var(--muted); margin-bottom: 12px; }
.blog-meta span { display: inline-flex; align-items: center; gap: 5px; }
.blog-meta svg { width: 14px; height: 14px; color: var(--primary); }
.blog-body h3 { font-size: 1.18rem; margin-bottom: 10px; line-height: 1.35; transition: color .2s; }
.blog-card:hover h3 { color: var(--primary-dark); }
.blog-body p { font-size: .92rem; margin-bottom: 16px; flex: 1; }
.blog-link { color: var(--primary-dark); font-weight: 600; font-family: 'Poppins'; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; align-self: flex-start; }
.blog-link:hover { gap: 11px; }
.blog-link svg { width: 16px; height: 16px; }

/* =========================================================
   CTA band
   ========================================================= */
.cta {
  position: relative;
  background:
    linear-gradient(120deg, rgba(0, 124, 161, 0.92), rgba(0, 187, 218, 0.95)),
    url('../img/cta-bg.jpg') center/cover fixed no-repeat;
  color: #fff; text-align: center; overflow: hidden;
}
.cta::before { content: ""; position: absolute; left: -80px; top: -80px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,.3), transparent 70%); }
.cta::after { content: ""; position: absolute; right: -60px; bottom: -100px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(14,165,164,.4), transparent 70%); }
.cta .container { position: relative; z-index: 2; max-width: 760px; }
.cta .eyebrow { background: rgba(255,255,255,.16); color: #fff; }
.cta .eyebrow::before { background: var(--accent); }
.cta h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); }
.cta p { color: #d8efed; margin: 18px 0 32px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Page banner (inner pages)
   ========================================================= */
.page-banner {
  background:
    linear-gradient(120deg, rgba(0, 124, 161, 0.92), rgba(0, 187, 218, 0.95)),
    url('../img/about.jpg') center/cover no-repeat;
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.page-banner .container { padding-block: 72px; position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.1rem); letter-spacing: -.5px; }
.page-banner p { color: #cdeae8; margin-top: 14px; font-size: 1.08rem; max-width: 620px; margin-inline: auto; }
.breadcrumb { display: flex; justify-content: center; gap: 9px; margin-top: 20px; font-size: .9rem; color: #bfe6e3; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--accent); }

/* =========================================================
   Content / prose (legal, about long form)
   ========================================================= */
.prose { max-width: 860px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin: 38px 0 14px; color: var(--ink); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 0 0 18px 4px; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 30px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 18px; height: 18px; border-radius: 50%; background: var(--primary-soft); }
.prose ul li::after { content: ""; position: absolute; left: 6px; top: 13px; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.prose a { color: var(--primary-dark); font-weight: 600; border-bottom: 1px solid var(--primary-light); }
.prose a:hover { border-color: var(--primary); }
.legal-meta { display: inline-flex; gap: 8px; align-items: center; background: var(--primary-soft); color: var(--primary-dark); padding: 8px 16px; border-radius: 50px; font-size: .85rem; font-weight: 600; margin-bottom: 30px; }
.legal-toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 40px; }
.legal-toc h4 { font-size: 1.05rem; margin-bottom: 14px; }
.legal-toc ol { padding-left: 20px; display: grid; gap: 7px; }
.legal-toc ol li a { color: var(--primary-dark); font-weight: 500; border: none; }
.legal-toc ol li a:hover { color: var(--accent); }

/* =========================================================
   Forms
   ========================================================= */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: 'Poppins'; font-weight: 500; font-size: .9rem; color: var(--ink); margin-bottom: 8px; }
.form-group label .req { color: var(--accent); }
.form-control {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 11px;
  background: var(--bg-soft); color: var(--ink); transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-control::placeholder { color: #9aa7a5; }
.form-control:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px var(--primary-light); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%230b7d7c' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }

.form-control.invalid { border-color: #ef4444; background: #fef2f2; }
.form-error { color: #ef4444; font-size: .8rem; margin-top: 6px; display: none; }
.form-control.invalid + .form-error { display: block; }

.form-note { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 18px; }
.checkbox-row input { width: 20px; height: 20px; accent-color: var(--primary); flex: none; margin-top: 2px; }
.checkbox-row label { font-size: .9rem; font-weight: 400; color: var(--body); margin: 0; }

/* form alert */
.form-alert { display: none; align-items: center; gap: 12px; padding: 15px 18px; border-radius: 12px; margin-bottom: 22px; font-weight: 500; font-size: .94rem; }
.form-alert.show { display: flex; }
.form-alert.success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.form-alert.error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.form-alert svg { width: 22px; height: 22px; flex: none; }

/* contact layout now uses .row + col-lg-5 / col-lg-7 */
.contact-info { display: grid; gap: 18px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform .3s, box-shadow .3s; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.info-ic { width: 50px; height: 50px; flex: none; border-radius: 13px; background: linear-gradient(135deg, var(--primary), var(--primary-darker)); display: grid; place-items: center; color: #fff; }
.info-ic svg { width: 24px; height: 24px; }
.info-card h4 { font-size: 1.08rem; margin-bottom: 5px; }
.info-card p { font-size: .92rem; margin: 0; }
.info-card a { color: var(--primary-dark); font-weight: 500; }

.map-wrap { margin-top: 22px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 260px; border: 0; display: block; }

/* =========================================================
   Newsletter mini form (footer)
   ========================================================= */
.news-mini { display: flex; gap: 10px; margin-top: 14px; }
.news-mini input { flex: 1; padding: 13px 16px; border: 1.5px solid rgba(255,255,255,.2); border-radius: 11px; background: rgba(255,255,255,.08); color: #fff; }
.news-mini input::placeholder { color: #9fc6c3; }
.news-mini input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,.12); }
.news-mini button { padding: 13px 20px; flex: none; }

/* =========================================================
   Footer — uses .row + col-lg-4 / col-lg-2 / col-lg-4
   ========================================================= */
.footer { background: var(--dark); color: #b6d0ce; }
.footer-top { padding: 72px 0 52px; }
.footer .brand-name { color: #fff; }
.footer .brand-tag { color: var(--primary-light); }
.footer-about p { margin: 18px 0 20px; font-size: .92rem; line-height: 1.8; }
.footer-social { display: flex; gap: 11px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 { color: #fff; font-size: 1.08rem; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col ul a { font-size: .92rem; transition: color .2s, padding-left .2s; }
.footer-col ul a:hover { color: var(--accent); padding-left: 5px; }

.footer-contact li { display: flex; gap: 12px; font-size: .92rem; margin-bottom: 13px; align-items: flex-start; }
.footer-contact svg { width: 19px; height: 19px; color: var(--primary-light); flex: none; margin-top: 3px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .88rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--accent); }

/* =========================================================
   Back to top
   ========================================================= */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--primary); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .3s, visibility .3s, transform .3s, background .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* =========================================================
   Subscribe / Unsubscribe focused pages
   ========================================================= */
.auth-wrap { display: grid; place-items: center; padding: 70px 0; }
.auth-card { width: 100%; max-width: 520px; }
.auth-icon { width: 76px; height: 76px; border-radius: 20px; margin: 0 auto 22px; display: grid; place-items: center; }
.auth-icon.primary { background: var(--primary-soft); color: var(--primary-dark); }
.auth-icon.muted { background: #f1f5f5; color: var(--muted); }
.auth-icon svg { width: 36px; height: 36px; }
.auth-head { text-align: center; margin-bottom: 28px; }
.auth-head h2 { font-size: 1.7rem; margin-bottom: 10px; }
.auth-head p { font-size: .96rem; }

/* =========================================================
   About page: mission, values, split — now use .row + cols
   ========================================================= */
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.values-grid { } /* layout via .row */
.value-card { text-align: center; padding: 34px 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; height: 100%; transition: transform .3s, box-shadow .3s; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-ic { width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 18px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary-dark); }
.value-ic svg { width: 30px; height: 30px; }
.value-card h3 { font-size: 1.12rem; margin-bottom: 8px; }

/* service detail rows (services page) — uses .row + col-lg-5 / col-lg-7 */
.service-row { margin-bottom: 26px; }
.service-row.alt .service-row-media { order: 2; }
.service-row-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.service-row-media .service-tag-flat { display: inline-block; background: var(--primary-soft); color: var(--primary-dark); font-family: 'Poppins'; font-weight: 600; font-size: .78rem; padding: 7px 16px; border-radius: 50px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.service-row-body h3 { font-size: 1.6rem; margin-bottom: 12px; }
.service-row-body p { margin-bottom: 16px; }
.service-row-body .check-list { display: grid; gap: 10px; margin-bottom: 24px; }
.service-row-body .check-list li { display: flex; gap: 11px; align-items: center; font-weight: 500; color: var(--ink); font-size: .95rem; }
.service-row-body .check-list svg { width: 20px; height: 20px; color: var(--primary); flex: none; }

/* =========================================================
   Blog page extras
   ========================================================= */
.blog-cat-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
.blog-cat-filter button { padding: 9px 20px; border-radius: 50px; font-family: 'Poppins'; font-weight: 500; font-size: .88rem; color: var(--ink); border: 1.5px solid var(--line); transition: all .25s; }
.blog-cat-filter button.active, .blog-cat-filter button:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991px) {
  .hero .row { padding-block: 70px; }
  .hero-visual { margin-top: 10px; }
  .hero-rating { left: 0; }
  .hero-card { margin-left: 0; }
  .service-row.alt .service-row-media { order: -1; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links, .nav-actions .nav-cta { display: none; }
  .nav-toggle { display: block; }

  /* mobile menu */
  .nav-links.mobile-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; inset: 64px 0 auto 0;
    background: #fff; padding: 18px 22px 30px;
    box-shadow: 0 20px 40px rgba(15,60,58,.14);
    gap: 4px; border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .nav-links.mobile-open > li > a { padding: 13px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-links.mobile-open > li > a.active::after { display: none; }
  .has-dropdown .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-links.mobile-open .has-dropdown > a::after { content: "+"; float: right; }

  .topbar-info { gap: 14px; }
  .topbar-social { display: none; }
  .about-list { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .why-banner { padding: 30px 22px; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar-info { justify-content: center; }
}

@media (max-width: 560px) {
  .hero-stats { gap: 22px; }
}


.blog-content {
  text-align: justify;
}

.navbar-brand img{
  width: 250px;
}