
  /* Reduced motion */
  @media (prefers-reduced-motion: reduce){
    .card, .card__img{ transition:none !important; }
    .reveal{ transition:none; }
  }
  /* Google Material Symbols for icons */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,600,1,0');
:root {


    --card-max: 360px;  /* make smaller/larger (e.g., 320–420) */
      --gap: 16px;
      --pad: 20px;
      --radius: 12px;
      --border: 1px solid #e8e8e8;
    --accent: #0B2948;
      --text: #1f1f1f;
      --muted: #5b5b5b;
      --bg: #faf8fb;
      --card: #ffffff;
      --shadow: 0 10px 30px rgba(0,0,0,.08);
      --radius: 14px;
      --gap: 36px;

    --brand: #163A6B;
    --brand-2: #2D6BBA;
    --footer-bg: #0F1E36;
    --footer-ink: #D6E3FF;
    --footer-muted: #AAC1EF;
    --footer-ring: rgba(95,168,255,.35);
    --footer-divider: rgba(255,255,255,.08);
  --brand-dark:#0B2948;   /* navy text */
  --teal:#1FB8C0;         /* accent */
  --text:#1f2937;
  --muted:#6b7280;
  --border:#e5e7eb;
  --bg:#f5f8fc;
     --container-w: 1160px;        /* desktop content width (screenshot ~1160) */
      --gutter: 36px;               /* gap between columns */
      --hero-pad-y: 40px;           /* top/bottom padding */

      --h1: 56px;                   /* title size at desktop */
      --h2: 32px;                   /* subtitle size at desktop */
      --sublead: 16px;
      --p: 15px;
      --btn-fz: 16px;

      --slider-h: 520px;            /* slider height at desktop to match crop */

      --ink: #0b2846;               /* deep navy */
      --muted: #5c6c7d;             /* paragraph */
      --brand: #0f3b7a;             /* accent + active dot */
      --btn: #0d2743;               /* button */
      --btn-hover:#0b1f34;
      --ring: rgba(15,59,122,.18);
      --shadow: 0 10px 26px rgba(10, 34, 60, .12);
      --radius: 16px;
       /* Layout controls */
      --container-w: 1160px;      /* total content width */
      --left-col: 56%;            /* left text column width on desktop */
      --right-col: 44%;           /* right image column width on desktop */
      --hero-h: clamp(520px, 72vh, 740px);

      /* Typography + colors */
      --h1: 56px; --h2: 32px;
      --sublead: 16px; --p: 15px; --btn-fz: 16px;
      --ink:#0b2846; --muted:#5c6c7d;
      --btn:#0d2743; --btn-hover:#0b1f34; --brand:#0f3b7a;


       --radius: 15px;
    --gap: 3rem;
    --shadow-base: 0 10px 24px rgba(2, 8, 20, .06), 0 2px 8px rgba(2, 8, 20, .05);
    --shadow-hover: 0 22px 50px rgba(2, 8, 20, .20), 0 10px 24px rgba(2, 8, 20, .16);
    --cta: #ffffff;
}

* { box-sizing:border-box; }
html,body{
  height: 100%;
}
body {
  margin:0;
 font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", sans-serif;
      color: var(--text);
  background:var(--bg);
}




a { color:inherit; text-decoration:none; }

.container {
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}

/* ----------------- Top info bar ----------------- */
.header {
  background:#fff;
  position: relative;   /* ensures context */
  overflow: visible;    /* sticky needs this */
}

.topbar {
  font-size:14px;
  color:var(--muted);
  border-bottom:1px solid var(--border);
  background:#0F1E36;
}

/* Only navbar sticky */
.mainbar {
  top: 0;
  z-index: 1000;
  background: #f5f8fc;
  border-bottom: 1px solid var(--border);
}
.mainbar .inner {
  padding: 16px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}




.topbar .inner {
  height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.topbar .info {
  color: #f5f8fc;
  margin-left: 5rem;
  display:flex;
  gap: 45px;
  align-items:center;
  flex-wrap:wrap;
}

.topbar .item {
  display:flex;
  align-items:center;
  gap:7px;
  
}
.topbar .item i {
  margin-top: 2px;
  color:#f5f8fc;
  font-size:14px;
}
.topbar .social {
  display:flex;
  align-items:center;
  gap:18px;
}
.topbar .social a {
  color: #f5f8fc;
  opacity:.85;
  transition:.2s;
  margin-bottom: 12px;
}
.topbar .social a:hover {
  opacity:1;
  color:var(--teal);
  transform:translateY(-1px);
}

/* ----------------- Main header ----------------- */
.header {
  background:#fff;
}




.logo {
  display:flex;
  align-items:center;
}
.logo img {
  height:78px;
  display:block;
}

/* ----------------- Navbar ----------------- */
.navbar {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex:1;
  gap:1px;
}

.nav-links {
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin:0;
  padding:0;
  flex:1;
}

.nav-links>li>a {
  position:relative;
  padding:12px 4px;
  font-weight:600;
  color:var(--brand-dark);
  transition:color .2s;
}
.nav-links>li>a:hover {
  color:var(--teal);
}

.nav-links>li>a:hover::after,
.nav-links>li.active>a::after {
  transform:scaleX(1);
}

/* Multi-level submenu */
.navbar .dropdown .dropdown-menu .has-submenu {
  position: relative;
}

.navbar .dropdown .dropdown-menu .has-submenu > a.has-submenu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.navbar .dropdown .dropdown-menu .has-submenu > .submenu {
  position: absolute;
  top: 5px;                 /* align with parent menu */
  left: calc(100% + 0px);    /* open to the right */
  min-width: 220px;
  background: #ffffff;

  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  pointer-events: none;
  z-index: 1000;
}

.navbar .dropdown .dropdown-menu .has-submenu:hover > .submenu,
.navbar .dropdown .dropdown-menu .has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.navbar .dropdown .dropdown-menu .submenu a {
  display: block;
  white-space: nowrap;
  padding: 8px 10px;
}

/* Arrow anim (optional) */
.subchev {
  font-size: .8rem;
  transition: transform .18s ease;
}
.has-submenu:hover .subchev,
.has-submenu:focus-within .subchev {
  transform: translateX(2px);
}

/* Optional: open the submenu to the left if near the right edge */
.has-submenu.open-left > .submenu {
  left: auto;
  right: calc(100% + 10px);
}


/* ----------------- Dropdown ----------------- */
.dropdown { position:relative; }
.dropdown .toggle {
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.dropdown .chev {
  font-size:12px;
  transition:transform .2s;
}
.dropdown:hover .chev {
  transform:rotate(180deg);
}
.dropdown-menu {
  position:absolute;
  top:calc(100% + 0px);
  left:0;
  min-width: max-content;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 10px 28px rgba(0,0,0,.08);
  padding:8px;
  opacity:0;
  transform:translateY(6px);
  pointer-events:none;
  transition:opacity .2s,transform .2s;
  z-index:15;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.dropdown-menu a {
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:8px;
  font-weight:400;
}
.dropdown-menu a i { color:var(--teal); }
.dropdown-menu a:hover { background:#f6f9f9; }

/* ----------------- Call CTA ----------------- */
.callbox {
  display:flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
}
.phone-circle {
  width:48px;
  height:48px;
  border-radius:50%;
  background:#24b7c7;
  color:#fff;
  display:grid;
  place-items:center;
  box-shadow:0 8px 20px rgba(31,184,197,.28);
}
.callbox .label {
  font-size:13px;
  color:var(--muted);
  line-height:1;
}
.callbox .number {
  font-size:22px;
  font-weight:800;
  letter-spacing:.5px;
  color:var(--brand-dark);
}

/* ----------------- Hamburger ----------------- */
.hamburger {
  display:none;
  font-size:26px;
  color:var(--brand-dark);
  padding:8px;
  border:1px solid var(--border);
  border-radius:8px;
  background:#fff;
}

/* ----------------- Mobile ----------------- */
.mobile-panel { display:none; }

@media (max-width:768px) {
  .nav-links, .callbox { display:none; }
  .hamburger { display:inline-flex; margin-left:auto; }

  .header .inner { padding:12px 0; }

  .mobile-panel {
    position:fixed;
    left:0;
    right:0;
    top:60px;
    background:#fff;
    border-top:1px solid var(--border);
    box-shadow:0 14px 28px rgba(0,0,0,.08);
    display:none;
    z-index:40;
  }
  .mobile-panel.open { display:block; }

  .mobile-nav {
    display:flex;
    flex-direction:column;
    gap:6px;
    padding:16px;
    margin-top: 5rem;
  }
  .mobile-nav a {
    padding:12px 8px;
    border-radius:10px;
    font-weight:600;
    color:var(--brand-dark);
  }
  .mobile-nav a:hover {
    background:#f2fbfb;
    color:var(--teal);
  }
  .mobile-nav .sub {
    padding-left:12px;
    display:flex;
    flex-direction:column;
  }
  details summary {
    list-style:none;
    cursor:pointer;
    padding:12px 8px;
    border-radius:10px;
    font-weight:600;
  }
  details[open] summary {
    color:var(--teal);
    background:#f2fbfb;
  }
  details summary::-webkit-details-marker { display:none; }
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* ✅ Align content to the left */
  text-align: left;
  background: url('./assets/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* subtle overlay */
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 5%; /* ✅ left spacing */
  max-width: 700px; /* limit text width for better readability */
  text-align: justify;
}

/* Left block (from your provided CSS) */
.left h1 {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 1px;
  text-align: justify;
}

.left h2 {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.1;
  text-align: justify;
}

.sublead {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #e0e0e0;
  max-width: 48ch;
  text-align: justify;
}

.lead {
  margin: 0 0 22px;
  color: #d0d0d0;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 56ch;
  text-align: justify;
}

.cta {
  display: inline-flex;
   align-items: center; /* ✅ keeps icon and text vertically aligned */
  justify-content: flex-start; /* ✅ aligns CTA left */
  gap: 12px;
  padding: 14px 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--btn, #204a7e);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .15s ease, background .2s ease;
}

.Call-cta {
  display: inline-flex;
   align-items: center; /* ✅ keeps icon and text vertically aligned */
  justify-content: flex-start; /* ✅ aligns CTA left */
  gap: 12px;
  padding: 14px 20px;
  border-radius: 8px;
  color: #173a63;
  background: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  transition: transform .15s ease, background .2s ease;
}


.cta:hover {
  background: var(--btn-hover, #3064a8);
  transform: translateY(-1px);
}

.cta .arrow {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #173a63;
  color: #fff;
  font-size: 15px;
}




.Call-cta:hover {
  background: #e7e5e5;
  transform: translateY(-1px);
}

.Call-cta .arrow {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #173a63;
  color: #fff;
  font-size: 15px;
}

.reviews {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
  color: #e0e0e0;
  font-size: 14px;
  flex-wrap: wrap;
}

.stars {
  color: #f5b100;
  letter-spacing: 2px;
}

.sep {
  opacity: 0.35;
}


  .slides{
    position:absolute; inset:0; z-index:0;
  }

  .slide{
    position:absolute; inset:0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    opacity:0;
    transition:opacity var(--fade-duration) ease-in-out;
    will-change:opacity, transform;
  }

  /* Keep animation during fade-out to avoid any zoom "jump" */
  .slide.is-active,
  .slide.is-leaving{
    animation: kenburns var(--slide-duration) ease-in-out both;
  }

  .slide.is-active{ opacity:1; }
  .slide.is-leaving{ opacity:0; }

  @keyframes kenburns{
    from{ transform: scale(1) translateZ(0); }
    to{   transform: scale(var(--zoom-scale)) translateZ(0); }
  }

  .hero__content{
    position:relative; z-index:2;
    padding:2rem; max-width:900px;
  }
  .hero__title{
    margin:0 0 .5rem;
    font-size:clamp(2rem, 5vw + .5rem, 4rem);
    line-height:1.1; text-wrap:balance;
    text-shadow:0 3px 12px rgba(0,0,0,.5);
  }
  .hero__subtitle{
    margin:0 0 1.5rem;
    font-size:clamp(1rem, 2vw + .5rem, 1.25rem);
    opacity:.95;
    text-shadow:0 2px 10px rgba(0,0,0,.5);
  }
  .hero__cta{
    display:inline-flex; align-items:center; gap:.5rem;
    padding:.9rem 1.2rem; border-radius:.75rem;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.08);
    color:#fff; text-decoration:none; font-weight:600;
    backdrop-filter:blur(4px);
    transition:transform .2s ease, background .2s ease;
  }
  .hero__cta:hover{ transform:translateY(-2px); background:rgba(255,255,255,.14); }

  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce){
    .slide{ transition:none; animation:none !important; }
    .slide.is-active{ opacity:1; }
  }


   .services{
    padding: clamp(2rem, 6vw, 5rem) 1.25rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .services__head{
    text-align:center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
  }
  .services__title{
    margin:0 0 1rem;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
  }
  .services__subtitle{
    margin:0 auto;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    color:#475569;
    line-height:1.6;
    text-wrap:balance;
  }

  .service-list{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--gap);
    margin-top: clamp(1rem, 3vw, 2rem);
  }

  /* Card */
  .card{
    position:relative;
    display:block; /* makes <a> behave like block card */
    height: clamp(240px, 32vw, 300px);
    width:  clamp(265px, 36vw, 320px);
    color:#fff;
    border-radius: var(--radius);
    overflow:hidden;
    box-shadow: var(--shadow-base);
    background:#0b1220; /* fallback if image fails */
    text-decoration:none;
    isolation:isolate; /* layer content above image */
    transition:
      transform .35s cubic-bezier(.2,.7,.2,1),
      box-shadow .35s ease;
    will-change: transform;
  }
  .card:focus-visible{
    outline: 3px solid #93c5fd; /* focus ring */
    outline-offset: 3px;
  }
  .card:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
  }

  .card__media{
    position:absolute; inset:0; z-index:0;
  }
  .card__img{
    width:100%; height:100%;
    object-fit:cover;
    transform: scale(1.02);
    transition: transform .9s cubic-bezier(.2,.7,.2,1);
    will-change: transform;
  }
  .card:hover .card__img{ transform: scale(1.12); }

  .card__scrim{
    position:absolute; inset:0;
    background:
      linear-gradient(15deg, rgba(0,0,0,.72) 10%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.35) 100%);
    z-index:1;
  }

  .card__content{
    position: relative; z-index:2;
    height:100%;
    display:flex; flex-direction:column; justify-content:flex-end;
    padding: 1.25rem 1.25rem 1.4rem;
    gap:.5rem;
  }
  .card__title{
    margin:0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight:800;
    letter-spacing:.2px;
  }
  .card__desc{
    margin:0;
    color:#e5e7eb;
    font-size: clamp(.95rem, 1.4vw, 0.5rem);
    line-height:1.5;
    max-width: 38ch;
  }
  .card__cta{
    margin-top:.4rem;
    color:var(--cta);
    font-weight:700;
    font-size:.95rem;
    text-decoration:none;
    display:inline-block;
  }
  .card__cta:hover{ text-decoration: underline; }

  /* Reveal on scroll (optional nicety) */
  .reveal{
    opacity:0; transform: translateY(12px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.is-visible{
    opacity:1; transform: translateY(0);
  }

/* Stats section */
.stats{
  width:min(1100px, 92%);
  margin:28px auto 80px;
}
.stats-inner{
  display:grid;
  grid-template-columns: repeat(4, minmax(160px,1fr));
  gap:24px;
  align-items:center;
  justify-items:center;
  padding:24px 6px;
  border-radius:16px;
  
}
@media (max-width:900px){
  .stats-inner{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width:520px){
  .stats-inner{ grid-template-columns: 1fr; }
}

.kpi{ text-align:center; }

.kpi-icon{
  width:62px; height:62px; border-radius:18px;
  display:grid; place-items:center; margin:0 auto 12px;
  color:var(--ink);
  background:linear-gradient(145deg, rgba(30,166,255,.18), rgba(30,166,255,.08));
  box-shadow:inset 0 2px 10px rgba(30,166,255,.12), 0 6px 18px rgba(0,0,0,.08);
}
.material-symbols-rounded{
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
  font-size:28px; line-height:1; color:var(--ink);
}

.kpi-number{
  font-weight:800;
  font-size:clamp(20px, 2.4vw, 24px);
  letter-spacing:.2px;
  color:var(--accent); /* blue, same as theme */
}
.kpi-number .suffix{ margin-left:2px; color:var(--accent); }

.kpi-label{
  margin-top:6px;
  color:var(--muted);
  font-size:13.5px;
}

/* Reduced motion: show final values without animation */
@media (prefers-reduced-motion: reduce){
  .kpi-number{ transition:none }
}



    .cta-hero {
      position: relative;
      overflow: clip;
      padding: clamp(24px, 4vw, 48px);
    }

    /* subtle background shape */
    .cta-hero::before {
      content: "";
      position: absolute; inset: -20% -10% auto -10%;
      height: 70%;
      pointer-events: none;
    }

    /* Blur + blend bottom of the doctor image */
.cta-hero-figure { position: relative; }

/* keep image below overlay */
.doc-img { position: relative; z-index: 0; }

/* overlay that blurs what's behind it (the image) and blends to page bg */
.cta-hero-figure::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: clamp(90px, 16vw, 160px);
  pointer-events:none;
  z-index:1;

  /* blur the image underneath */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  /* fade to the page background color */
  background: linear-gradient(
    to bottom,
    rgba(247,250,255,0) 0%,
    rgba(247,250,255,.6) 55%,
    var(--bg) 100%
  );

  /* soften the top edge of the blur */
  mask-image: linear-gradient(to bottom, transparent 0%, black 45%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 45%, black 100%);
}

/* keep the badge above the blur */
.badge{ z-index: 3; }

/* Fallback for browsers without backdrop-filter: simple fade-out */
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .cta-hero-figure::after { display:none; }
  .doc-img{
    -webkit-mask-image: linear-gradient(to bottom, black 78%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 78%, transparent 100%);
  }
}

    .cta-container {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      align-items: center;
      gap: clamp(24px, 4vw, 48px);
    }

    .cta-hero-copy h1 {
      color: var(--brand);
      font-size: clamp(32px, 4.2vw, 52px);
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: -0.6px;
      margin: 0 0 18px;
    }

    .cta-hero-copy p {
      font-size: clamp(14px, 1.6vw, 16.5px);
      line-height: 1.7;
      color: var(--muted);
      max-width: 62ch;
      margin: 0 0 26px;
    }

    .cta-row{
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      --x: 50%;
      --y: 50%;
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      background: #E5EEFA;
      color: #22436F;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: .2px;
      text-decoration: none;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      transition: transform .2s ease, box-shadow .2s ease, background .3s ease, color .3s ease, border-color .3s ease;
      overflow: hidden;
      isolation: isolate;
    }

    /* animated shine that follows the cursor (updated by JS via --x/--y) */
    .btn::before{
      content: "";
      position: absolute; inset: 0;
      background:
        radial-gradient(240px 160px at var(--x) var(--y), rgba(255,255,255,.55), transparent 40%),
        linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,0));
      mix-blend-mode: soft-light;
      opacity: 0;
      transition: opacity .25s ease;
      pointer-events: none;
      z-index: 0;
    }

    

    .btn:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .btn:hover::before { opacity: 1; }

    .btn span, .btn svg { position: relative; z-index: 1; }

    .btn-primary{
      background: linear-gradient(135deg, var(--brand-2), #2E67B9);
      color: #fff;
      border-color: #2C5DA7;
    }
    .btn-primary:hover{
      background: linear-gradient(135deg, #1F4B86 0%, #3B75C6 100%);
    }

    .btn-ghost{
      background: #E7EEF9;
      color: #23416C;
      border-color: #D3E1F8;
    }
    .btn-ghost:hover{
      background: #DFE9F8;
    }

    /* arrow slides slightly on hover */
    .btn svg {
      width: 18px; height: 18px;
      transition: transform .25s ease;
    }
    .btn:hover svg { transform: translateX(3px); }

    /* Image side */
    .hero-figure{
      position: relative;
      display: grid;
      place-items: end center;
      min-height: 320px;
    }
    .doc-img{
      width: min(420px, 80vw);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 18px 30px rgba(18, 49, 92, .20));
      user-select: none;
    }

    /* small tag-like badge */
    .badge {
      position: absolute;
      bottom: 8px; left: 12px;
      padding: 8px 12px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid #E1ECFB;
      box-shadow: var(--shadow-sm);
      color: #2A4F88;
      font-size: 12px;
      font-weight: 600;
      display: flex; align-items: center; gap: 8px;
    }
    .badge svg { width: 14px; height: 14px; color: #2E67B9; }

    /* Responsiveness */
   @media (max-width: 920px) {
  .cta-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .cta-hero-copy {
    order: 2;
    text-align: left;
  }

  .cta-hero-figure {
    order: 1;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
  }

  .doc-img {
    width: min(420px, 100%);
  }

  .badge {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* -------------------------------------- */
/* Better small-phone support (≤ 600px)   */
/* -------------------------------------- */

@media (max-width: 600px) {
  .cta-hero-copy h1 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.15;
  }

  .cta-hero-copy p {
    font-size: 15px;
    max-width: 100%;
  }

  .cta-row {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 15px;
  }
}

/* -------------------------------------- */
/* Tiny screens (≤ 420px)                 */
/* -------------------------------------- */

@media (max-width: 420px) {
  .cta-container {
    padding: 0 14px;
  }

  .btn span {
    white-space: normal; /* allow wrapping */
  }

  .doc-img {
    width: 90%;
  }

  .badge {
    bottom: 4px;
    padding: 6px 10px;
    font-size: 11px;
  }
}

    /* Respect reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .btn, .btn svg { transition: none; }
      .btn:hover{ transform: none; }
      .btn::before{ display: none; }
    }

    /* 1) Make sure the text + CTAs sit above the image/blur */
.cta-hero-copy,
.cta-row,
.btn { position: relative; z-index: 5; }

/* 2) Stronger, clearer primary button */
.btn-primary{
  background: linear-gradient(135deg, #13417A 0%, #2D6BBA 100%);
  color: #fff;
  border: 1px solid #0F2F5A;
  box-shadow:
    0 8px 22px rgba(19, 65, 122, .35),
    inset 0 1px 0 rgba(255,255,255,.10);
}

/* Hover/active/focus states for visibility and accessibility */
.btn-primary:hover{
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.btn-primary:active{
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(19, 65, 122, .25);
}
.btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(45,107,186,.28), 0 8px 22px rgba(19,65,122,.30);
}

/* 3) Keep the long label readable */
.btn span { white-space: nowrap; }
@media (max-width: 420px){
  .btn span { white-space: normal; } /* allow wrap on very small screens */
}

.sr-only {
    position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden;
  }

  .site-footer{
    background: radial-gradient(1200px 400px at 15% -10%, rgba(95,168,255,.15), transparent 60%),
                var(--footer-bg);
    color: var(--footer-ink);
    padding: 56px 20px 24px;
    position: relative;
    overflow: clip;
  }
  .site-footer a{ color: var(--footer-ink); text-decoration: none; opacity: .95; }
  .site-footer a:hover{ opacity: 1; color:#fff; }

  .footer-wrap{
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
  }

  .footer-grid{
    display: grid;
    grid-template-columns: 1.2fr 1.1fr 1fr 1fr;
    gap: 36px;
    align-items: start;
  }

  .footer-brand .brand{
    display: inline-flex; align-items: center; gap: 12px; 
    margin-bottom: 8px; font-weight: 800; color: #fff; letter-spacing: .2px;
  }
  .brand-mark{ width: 40px; height: 40px; }
  .brand-name{ font-size: 20px; }

  .brand-copy{ color: var(--footer-muted); margin: 6px 0 14px; max-width: 44ch; min-width: 13rem;}

  .social{ display:flex; gap:10px; padding:0; margin:14px 0 0; list-style:none; }
  .sbtn{
    display:grid; place-items:center;
    width:36px; height:36px; border-radius:50%;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--footer-divider);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  }
  .sbtn:hover{
    transform: translateY(-2px);
    background: rgba(95,168,255,.22);
    box-shadow: 0 6px 18px rgba(95,168,255,.25);
  }
  .sbtn svg{ width:18px; height:18px; color: var(--footer-ink); }

  .footer-links{
    display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-left: 5rem ;
  }
  .footer-links .col h3,
  .footer-contact h3{
    margin: 0 0 12px; font-size: 14px; letter-spacing:.6px; text-transform: uppercase; color: #fff; 
  }
  .footer-contact h3{
    margin-left: 2rem;
  }
  .footer-links ul{ list-style: none; padding: 0; margin: 0; }
  .footer-links li { margin: 8px 0; min-width: max-content;}
  .footer-links a{ color: var(--footer-muted); }
  .footer-links a:hover{ color: #fff; }

  .footer-contact .contact-list{
    list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; min-width: 30rem; margin-left: 2rem;
  }
  .footer-contact .contact-list li{
    display: grid; grid-template-columns: 24px 1fr auto; align-items: center; column-gap: 10px;
    padding: 8px 0; border-bottom: 1px dashed var(--footer-divider);
  }
  .footer-contact .contact-list li:last-child{ border-bottom: none; }
  .footer-contact .icon { width:20px; height:20px; color: var(--footer-ink); opacity: .9; }
  .footer-contact address{ font-style: normal; color: var(--footer-muted); line-height: 1.5; }
  .footer-contact a{ color: var(--footer-ink); }
  .footer-contact .ext svg{ width:18px; height:18px; opacity:.8; }
  .footer-contact .ext:hover svg{ opacity:1; }
  .footer-contact .hours{
    grid-template-columns: 12px 1fr; border-bottom: none; color: var(--footer-muted);
  }
  .footer-contact .hours .dot{
    width:8px; height:8px; background:#12d06b; border-radius:50%;
    box-shadow: 0 0 0 3px rgba(18,208,107,.15);
  }

  /* Copy phone button + toast */
  .copy{
    display:inline-flex; align-items:center; gap:6px;
    padding:6px 10px; margin-left:8px;
    font-size:12px; color:#0F1E36; background:#CBE1FF;
    border:1px solid rgba(255,255,255,.2); border-radius:999px;
    cursor:pointer; transition: transform .15s ease, filter .2s ease;
  }
  .copy:hover{ filter: brightness(1.05); transform: translateY(-1px); }
  .copy svg{ width:14px; height:14px; color:#0F1E36; }
  .copy-toast{
    margin-left:8px; font-size:12px; color:#9EE493; opacity:0; transition: opacity .25s ease;
  }
  .copy-toast.show{ opacity:1; }

  .footer-bottom{
    margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--footer-divider);
    display:flex; align-items:center; justify-content:space-between; gap: 16px;
    color: var(--footer-muted); font-size: 14px;
  }
  .footer-bottom .legal{ list-style: none; display:flex; gap:16px; padding:0; margin:0; }
  .footer-bottom .legal a{ color: var(--footer-muted); }
  .footer-bottom .legal a:hover{ color:#fff; }

  /* Back to top */
  .to-top{
    position: fixed; right: 20px; bottom: 20px;
    width: 44px; height: 44px; border-radius: 12px;
    border: 1px solid var(--footer-divider);
    background: rgba(255,255,255,.06);
    color: var(--footer-ink);
    display: grid; place-items: center;
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
    cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, background .2s ease;
    z-index: 10;
  }
  .to-top:hover{ background: rgba(95,168,255,.22); }
  .to-top svg{ width:22px; height:22px; }
  .to-top.show{ opacity: 1; pointer-events: auto; transform: translateY(0); }

  /* Responsive */
  @media (max-width: 960px){
    .footer-grid{ grid-template-columns: 1.2fr 1fr; }
    .footer-links{ grid-template-columns: repeat(3,1fr); grid-column: span 2; }
  }
  @media (max-width: 720px){
    .footer-grid{ grid-template-columns: 1fr; }
    .footer-links{ grid-template-columns: repeat(2,1fr); }
    .footer-bottom{ flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 460px){
    .footer-links{ grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce){
    .to-top, .sbtn, .copy{ transition: none; }
  }


  .Testimonial-container{
      max-width: 1160px;
      padding: 56px 20px 72px;
      margin: 0 auto;
    }

    .visually-hidden{
      position:absolute !important;
      height:1px; width:1px;
      overflow:hidden; clip: rect(1px,1px,1px,1px);
      white-space:nowrap; border:0; padding:0; margin:-1px;
    }

    /* Carousel shell */
    .t-carousel{
      position: relative;
      overflow: hidden;
    }

    .t-track{
      display: flex;
      will-change: transform;
      transition: transform .55s cubic-bezier(.22,.61,.36,1);
    }

    .t-slide{
      flex: 0 0 100%;
      display: grid;
      gap: var(--gap);
      grid-template-columns: 1fr; /* mobile default: 1 card per row */
    }

    @media (min-width: 992px){
      .t-slide{
        grid-template-columns: repeat(2, 1fr); /* desktop: 2 cards per slide */
      }
    }

    /* Card */
    .t-card{
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 26px 32px 32px;
      position: relative;
      min-height: 170px;
      isolation: isolate;
    }

    .t-card .name{
      font-weight: 700;
      margin: 0 0 10px;
    }

    .t-card .text{
      margin: 0;
      color: #333;
      line-height: 1.6;
      font-size: 15px;
    }


    /* Star rating styles */
.t-card .star-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin: 6px 0 10px;
}

.t-card .star-rating .star {
  color: #ffc107; /* gold */
  font-size: 1rem;
  line-height: 1;
}

.t-card .star-rating .star.empty {
  color: #e0e0e0; /* light gray for empty stars */
}

.t-card .star-rating .rating-number {
  margin-left: 6px;
  font-size: 0.9rem;
  color: #666;
}

    .q{
      position: absolute;
      color: var(--accent);
      font-size: 22px;
      line-height: 1;
      user-select: none;
      pointer-events: none;
    }
    .q-open{ top: 18px; left: 18px; }
    .q-close{ bottom: 18px; right: 22px; }

    /* Dots */
    .t-dots{
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 18px;
    }
    .t-dots button{
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 2px solid rgba(110,13,75,.35);
      background: transparent;
      padding: 0;
      cursor: pointer;
      transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
    }
    .t-dots button[aria-selected="true"]{
      background: var(--accent);
      border-color: var(--accent);
      transform: scale(1.05);
    }
    .t-dots button:focus-visible{
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    /* Optional: pause hint on hover (for pointer devices) */
    @media (hover: hover){
      .t-carousel:hover .t-card{ cursor: default; }
    }


  .wrap { max-width: 1200px; margin: 0 auto; padding: var(--pad); }
    .ig-grid {
      display: grid;
      gap: var(--gap);
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* responsive cols */
      justify-items: center;
    }
    .ig-card { width: min(100%, var(--card-max)); }
    blockquote.instagram-media {
      margin: 0 !important;
      border: 0 !important;
      width: 100% !important;
      max-width: var(--card-max) !important;
      min-width: 326px !important; /* Instagram minimum */
      border-radius: var(--radius) !important;
      overflow: hidden !important;
      border: var(--border) !important;
      background: #fff !important;
      box-shadow: none !important;
    }
    .ig-card:hover { transform: translateY(-2px); transition: transform 0.18s ease; }
    

    /* ===== FIX STICKY NAVBAR ===== */
.header {
  position: relative;
  overflow: visible !important;
  z-index: 999;
}

/* Ensure the mainbar is sticky */
.mainbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f5f8fc;
  border-bottom: 1px solid #ccc;
}

/* Make sure no ancestor kills sticky with overflow */
body, html, .container, .inner {
  overflow: visible !important;
}

/* Optional: add smooth transition when it sticks */
.mainbar {
  transition: all 0.2s ease-in-out;
}
