:root{
  --primary:#0066CC; --secondary:#0047AB; --green:#57D400; --accent:#7BFF00;
  --bg:#FFFFFF; --section:#F7FBFF; --dark:#1D1D1D; --gray:#F5F5F5; --border:#E5E7EB;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,
body {
    width: 100%;
    overflow-x: hidden;
}
body{font-family:'Inter',system-ui,sans-serif;color:var(--dark);margin:0;background:var(--bg);line-height:1.6}
h1,h2,h3,h4{font-family:'Poppins',sans-serif;font-weight:700;letter-spacing:-.02em;color:var(--dark)}
h1{font-size:clamp(2.2rem,5vw,3.75rem);line-height:1.1}
h2{font-size:clamp(1.75rem,3.5vw,2.5rem);line-height:1.15}
h3{font-size:1.25rem}
a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 1.25rem}
.section{padding:2rem 0}
.section-alt{background:var(--section)}
.eyebrow{display:inline-block;font-size:.8rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:var(--primary);margin-bottom:.75rem}
.lead{font-size:1.05rem;color:#4b5563;max-width:640px}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.5rem;border-radius:.75rem;font-weight:600;font-size:.95rem;transition:all .25s ease;border:1px solid transparent;cursor:pointer}
.btn-primary{background:var(--green);color:#0b1f00;box-shadow:0 8px 24px -8px rgba(87,212,0,.5)}
.btn-primary:hover{background:var(--accent);transform:translateY(-2px);box-shadow:0 12px 28px -10px rgba(87,212,0,.6)}
.btn-outline{border-color:var(--primary);color:var(--primary);background:transparent}
.btn-outline:hover{background:var(--primary);color:#fff}
.btn-blue{background:var(--primary);color:#fff}
.btn-blue:hover{background:var(--secondary)}

/* Navbar */
.nav{position:fixed;top:0;left:0;right:0;z-index:50;transition:all .3s ease;padding:.9rem 0;background:transparent}
.nav.scrolled{background:rgba(255,255,255,.95);backdrop-filter:blur(12px);box-shadow:0 4px 20px -12px rgba(0,0,0,.15)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.nav-logo{display:flex;align-items:center;gap:.65rem;font-weight:700;color:var(--dark)}
.nav-logo img{ height: 65px;
    width: auto;
    object-fit: contain;
    display: block;border-radius:2px}
.nav-logo span{font-family:'Poppins',sans-serif;font-size:1.05rem}
.nav-links{display:flex;gap:2rem;align-items:center}
.nav-links a{font-size:.95rem;font-weight:500;color:var(--dark);position:relative;padding:.4rem 0;transition:color .2s}
.nav-links a:hover,.nav-links a.active{color:var(--primary)}
.nav-links a.active::after{content:"";position:absolute;bottom:-4px;left:0;right:0;height:2px;background:var(--green);border-radius:2px}
.nav .btn{padding:.6rem 1.15rem;font-size:.9rem}
.nav-toggle{display:none;background:none;border:0;font-size:1.5rem;cursor:pointer;color:var(--dark)}
.dropdown{position:relative}

.dropdown-menu{
  position:absolute;
  top:calc(100% + 10px);
  left:50%;
  transform:translateX(-50%) translateY(6px);
  background:#fff;
  border:1px solid var(--border);
  border-radius:.85rem;
  box-shadow:0 20px 40px -20px rgba(0,0,0,.15);
  padding:.5rem;
  min-width:230px;
  opacity:0;
  visibility:hidden;
  transition:all .25s ease;
}

/* Shown on click via JS — desktop */
.dropdown.open .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);  /* keep the -50% so it stays centered */
}

.dropdown-menu a{display:block;padding:.6rem .85rem;border-radius:.5rem;font-size:.9rem}
.dropdown-menu a:hover{background:var(--section);color:var(--primary)}
/* ==========================================================
   HERO SECTION — Swastik Healthtech
   Drop this into your existing stylesheet (or link it after
   your base styles). Scoped with local custom properties so it
   won't clash with variables already defined elsewhere on your
   site — rename the --hero-* values below to match your brand
   if you already have a palette.
   ========================================================== */
/* ==========================================================
   HERO SECTION — Swastik Healthtech
   Drop this into your existing stylesheet (or link it after
   your base styles). Scoped with local custom properties so it
   won't clash with variables already defined elsewhere on your
   site — rename the --hero-* values below to match your brand
   if you already have a palette.
   ========================================================== */

.hero {
  --hero-blue: #155dfc;
  --hero-teal: #0d9488;
  --hero-green: #16a34a;
  --hero-dark: #0b1f3a;
  --hero-muted: #5b6472;
  --hero-card-shadow: 0 20px 45px -20px rgba(15, 40, 90, 0.28);

  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 65%);
}

/* decorative background blobs referenced by your s1 / s2 divs */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.hero-shape.s1 {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle at 30% 30%, var(--hero-teal), transparent 70%);
}
.hero-shape.s2 {
  width: 380px;
  height: 380px;
  bottom: -160px;
  right: -100px;
  background: radial-gradient(circle at 70% 70%, var(--hero-blue), transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

/* ---------- copy column ---------- */

.hero .eyebrow {
  position: relative;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--hero-green);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero .eyebrow i { font-size: 0.8rem; }

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hero-dark);
}
.hero h1 span {
  background: linear-gradient(90deg, var(--hero-blue), var(--hero-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--hero-muted);
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero .btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--hero-blue), var(--hero-green));
  box-shadow: 0 14px 30px -10px rgba(21, 93, 252, 0.45);
}
.hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(21, 93, 252, 0.55);
}

.hero .btn-outline {
  color: var(--hero-blue);
  background: #fff;
  border: 1px solid #e2e8f0;
}
.hero .btn-outline:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}
.hero .btn-outline i {
  transition: transform 0.2s ease;
}
.hero .btn-outline:hover i {
  transform: translateX(3px);
}

/* ---------- inline stat row under the CTAs ---------- */

.hero-stats {
  display: flex;
  gap: 36px;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  padding-left: 18px;
  border-left: 3px solid rgba(21, 93, 252, 0.18);
}
.hero-stats > div:first-child {
  padding-left: 0;
  border-left: none;
}
.hero-stats strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--hero-dark);
  line-height: 1.15;
}
.hero-stats span {
  font-size: 0.85rem;
  color: var(--hero-muted);
  font-weight: 500;
}

/* ---------- image column ---------- */

.hero-img {
  position: relative;
  border-radius: 44% 56% 62% 38% / 50% 46% 54% 50%;
  overflow: hidden;
  aspect-ratio: 4 / 3.7;
  box-shadow: var(--hero-card-shadow);
  isolation: isolate;
}
.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 6px;
  background: conic-gradient(from 210deg, var(--hero-blue), var(--hero-teal), var(--hero-green), var(--hero-blue));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* floating badges (b1 / b2 / b3) — stacked down the right edge,
   matching the reference screenshot */

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--hero-card-shadow);
  z-index: 2;
  animation: hero-float 5s ease-in-out infinite;
}
.hero-badge.b1 {
  top: 6%;
  right: -8%;
}
.hero-badge.b2 {
  bottom: 6%;
  right: -8%;
  animation-delay: 1.4s;
}
.hero-badge.b3 {
  top: 50%;
  right: -12%;
  transform: translateY(-50%);
  animation-delay: 0.7s;
}

.hero-badge .dot {
  flex: none;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(21, 93, 252, 0.1);
  color: var(--hero-blue);
  font-size: 1.05rem;
}

.hero-badge small {
  display: block;
  font-size: 0.72rem;
  color: var(--hero-muted);
  font-weight: 500;
}
.hero-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--hero-dark);
  font-weight: 700;
  white-space: nowrap;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* scroll reveal (works with hero.js below, or with a sitewide
   reveal script if you already have one — just keep the class
   name and the is-visible toggle in sync) */
.hero .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-badge strong { font-size: 0.85rem; }
}

@media (max-width: 900px) {
  .hero { padding: 72px 0 56px; }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid > .reveal:last-child {
    order: -1;
    max-width: 420px;
    margin: 0 auto 8px;
  }
  /* .hero .eyebrow { top: 0; } */
  .hero-img { aspect-ratio: 4 / 3.2; }
  .hero-badge.b1 { right: 0; top: -6%; }
  .hero-badge.b2 { right: 0; bottom: -6%; }
  .hero-badge.b3 { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 56px 0 48px; }
  .hero p { font-size: 1rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero .btn { justify-content: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stats > div { padding-left: 14px; }
  .hero-badge { padding: 10px 14px; gap: 10px; }
  .hero-badge .dot { width: 36px; height: 36px; font-size: 0.9rem; }
  .hero-badge.b1 { right: 4px; top: -20px; }
  .hero-badge.b2 { right: 4px; bottom: -20px; }
}

@media (max-width: 420px) {
  .hero-badge strong { font-size: 0.78rem; }
  .hero-badge small { font-size: 0.66rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge { animation: none; }
  .hero .reveal { transition: none; opacity: 1; transform: none; }
}

/* ==========================================================
   STATS STRIP — full-width bar directly under the hero,
   matching the dark blue band in the reference screenshot.
   Markup:
   <section class="stats-strip">
     <div class="container stats-strip-grid">
       <div class="stats-strip-item" data-target="50000" data-suffix="+">
         <span class="stats-strip-icon"><i class="fa-solid fa-users"></i></span>
         <div><strong><span class="stats-strip-num">0</span><span class="stats-strip-suffix"></span></strong><span>Patients Treated</span></div>
       </div>
       ... 3 more .stats-strip-item blocks
     </div>
   </section>
   ========================================================== */

.stats-strip {
  --hero-blue: #155dfc;
  --hero-green: #16a34a;
  position: relative;
  z-index: 3;
  background: linear-gradient(90deg, #0b2f8a 0%, #123fa8 50%, #1451c9 100%);
  padding: 22px 0;
  margin: -40px 48px 0;
  border-radius: 5px;
  box-shadow: 0 20px 45px -20px rgba(11, 47, 138, 0.45);
}

.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 24px;
}

.stats-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.stats-strip-item:first-child {
  padding-left: 0;
  border-left: none;
}

.stats-strip-icon {
  flex: none;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399, var(--hero-blue));
  color: #fff;
  font-size: 0.95rem;
}

.stats-strip-item strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.stats-strip-item span {
  font-size: 0.78rem;
  color: #cfe0ff;
  font-weight: 500;
}

@media (max-width: 900px) {
  .stats-strip { margin: -40px 24px 0; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-item:nth-child(3) { padding-left: 0; border-left: none; }
}

@media (max-width: 480px) {
  .stats-strip { padding: 18px 0; margin: -28px 16px 0; }
  .stats-strip-grid { gap: 14px 12px; }
  .stats-strip-icon { width: 32px; height: 32px; font-size: 0.85rem; }
  .stats-strip-item strong { font-size: 1.15rem; }
}
/* Section headers */
.section-head{text-align:center;max-width:680px;margin:0 auto 3rem}
.section-head p{color:#4b5563;margin-top:.75rem}

/* Cards */
.grid{display:grid;gap:1.5rem}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.card{background:#fff;border:1px solid var(--border);border-radius:1.1rem;padding:1.75rem;transition:all .3s ease;position:relative}
.card:hover{transform:translateY(-6px);box-shadow:0 20px 40px -20px rgba(0,71,171,.2);border-color:transparent}
.card .icon{width:52px;height:52px;border-radius:.85rem;background:linear-gradient(135deg,rgba(0,102,204,.1),rgba(87,212,0,.1));display:grid;place-items:center;color:var(--primary);margin-bottom:1.1rem;font-size:1.4rem;transition:all .3s}
.card:hover .icon{background:var(--green);color:#fff}
.card h3{margin:0 0 .5rem;font-size:1.1rem}
.card p{color:#6b7280;font-size:.92rem;margin:0}
.card .link{display:inline-flex;align-items:center;gap:.35rem;margin-top:1rem;color:var(--primary);font-weight:600;font-size:.9rem}
.card .link:hover{color:var(--green)}

/* Service card with image */
.service-card{background:#fff;border:1px solid var(--border);border-radius:1.1rem;overflow:hidden;transition:all .3s}
.service-card:hover{transform:translateY(-6px);box-shadow:0 24px 44px -22px rgba(0,71,171,.25)}
.service-card .img{aspect-ratio:16/10;overflow:hidden;background:var(--section)}
.service-card .img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.service-card:hover .img img{transform:scale(1.06)}
.service-card .body{padding:1.4rem 1.5rem 1.6rem}
.service-card h3{margin:0 0 .5rem}
.service-card p{color:#6b7280;font-size:.92rem;margin:0 0 1rem}

/* About split */
.split{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:center}
.split img{width:100%;border-radius:1.25rem;aspect-ratio:4/5;object-fit:cover;box-shadow:0 30px 60px -30px rgba(0,71,171,.3)}
.mv-cards{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:1.5rem}
.mv-card{border:2px solid var(--primary);border-radius:1rem;padding:1.25rem;background:#fff}
.mv-card .icon{color:var(--green);font-size:1.5rem;margin-bottom:.5rem}
.mv-card h4{margin:0 0 .35rem;font-family:'Poppins',sans-serif;color:var(--primary);font-size:1.05rem}
.mv-card p{margin:0;font-size:.88rem;color:#4b5563}

/* Why choose */
.why-card{text-align:center;padding:1.75rem 1rem}
.why-card .icon{margin:0 auto 1rem}

/* Testimonials */
.testimonials{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.t-card{background:#fff;border:1px solid var(--border);border-radius:1.1rem;padding:1.75rem}
.stars{color:#FFB800;margin-bottom:.75rem;font-size:.95rem}
.t-card blockquote{margin:0;font-size:.95rem;color:#374151;line-height:1.65}
.t-user{display:flex;align-items:center;gap:.85rem;margin-top:1.25rem;padding-top:1.25rem;border-top:1px solid var(--border)}
.t-user img{width:44px;height:44px;border-radius:50%;object-fit:cover}
.t-user strong{display:block;font-size:.9rem}
.t-user small{color:#6b7280;font-size:.78rem}

/* CTA banner */
.cta{background:linear-gradient(135deg,var(--secondary),var(--primary));color:#fff;border-radius:1.5rem;padding:3.5rem 2rem;text-align:center;position:relative;overflow:hidden}
.cta h2{color:#fff;margin:0 0 .75rem}
.cta p{color:rgba(255,255,255,.85);max-width:560px;margin:0 auto 1.75rem}
.cta .actions{display:flex;gap:.85rem;justify-content:center;flex-wrap:wrap}
.cta .btn-outline{border-color:#fff;color:#fff}
.cta .btn-outline:hover{background:#fff;color:var(--primary)}

/* Footer */
footer{background:#001F3D;color:#cbd5e1;padding:4rem 0 1.5rem;margin-top:2rem}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1.2fr;gap:2.5rem}
footer h4{color:#fff;font-size:1rem;margin:0 0 1.15rem;font-family:'Poppins',sans-serif}
footer ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.55rem}
footer a{color:#cbd5e1;font-size:.9rem;transition:color .2s}
footer a:hover{color:var(--green)}
.footer-logo{display:flex;align-items:center;gap:.65rem;margin-bottom:1rem}
.footer-logo img{height:65px;width: auto;border-radius:2px}
.footer-logo span{color:#fff;font-family:'Poppins',sans-serif;font-weight:700}
.social{display:flex;gap:.6rem;margin-top:1rem}
.social a{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;transition:all .25s}
.social a:hover{background:var(--green);color:#001F3D;transform:translateY(-2px)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:3rem;padding-top:1.5rem;text-align:center;font-size:.85rem;color:#94a3b8}

/* Floating buttons */
.fab{
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.fab-bottom{bottom:1.25rem}
.fab a,.fab button{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;background:#fff;color:var(--primary);box-shadow:0 10px 25px -10px rgba(0,0,0,.25);border:0;cursor:pointer;transition:all .25s;font-size:1.2rem}
.fab a.wa{background:#25D366;color:#fff}
.fab a.call{background:var(--primary);color:#fff}
.fab a.book{background:var(--green);color:#0b1f00;width:auto;padding:0 1.1rem;border-radius:2rem;font-weight:600;font-size:.9rem;gap:.4rem}
.fab a:hover,.fab button:hover{transform:translateY(-3px);box-shadow:0 14px 30px -10px rgba(0,0,0,.3)}
#backTop{opacity:0;visibility:hidden;transition:all .25s}
#backTop.show{opacity:1;visibility:visible}

/* Page header (sub pages) */
.page-header{padding:9rem 0 4rem;background:linear-gradient(180deg,var(--section),#fff);text-align:center}
.page-header h1{margin:0 0 .75rem}
.page-header .crumbs{color:#6b7280;font-size:.9rem}
.page-header .crumbs a{color:var(--primary)}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem}
.contact-info{display:grid;gap:1rem}
.info-item{display:flex;gap:1rem;align-items:flex-start;padding:1.15rem;background:#fff;border:1px solid var(--border);border-radius:1rem}
.info-item .icon{width:44px;height:44px;border-radius:.7rem;background:var(--section);color:var(--primary);display:grid;place-items:center;flex-shrink:0}
.info-item h4{margin:0 0 .2rem;font-size:1rem;font-family:'Poppins',sans-serif}
.info-item p{margin:0;color:#4b5563;font-size:.9rem}
form.contact-form{background:#fff;border:1px solid var(--border);border-radius:1.1rem;padding:1.75rem;display:grid;gap:1rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.field label{display:block;font-size:.85rem;font-weight:600;margin-bottom:.35rem;color:#374151}
.field input,.field select,.field textarea{width:100%;padding:.7rem .85rem;border:1px solid var(--border);border-radius:.6rem;font-family:inherit;font-size:.95rem;background:#fff;transition:border-color .2s}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(0,102,204,.1)}
.map{border-radius:1rem;overflow:hidden;border:1px solid var(--border);margin-top:2.5rem}
.map iframe{display:block;width:100%;height:360px;border:0}

/* Values list */
.values{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:2rem}
.value{padding:1.5rem;border-radius:1rem;background:#fff;border:1px solid var(--border)}
.value .icon{color:var(--green);font-size:1.4rem;margin-bottom:.75rem}
.value h4{margin:0 0 .35rem;font-family:'Poppins',sans-serif;font-size:1.05rem;color:var(--primary)}
.value p{margin:0;font-size:.88rem;color:#4b5563}

/* Animations */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
.reveal.in{opacity:1;transform:none}

/* Responsive */
@media (max-width:960px){
  .hero-grid,.split,.contact-grid{grid-template-columns:1fr;gap:2.5rem}
  .grid-3,.grid-4,.testimonials,.values{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}

  .nav{background:rgba(255,255,255,.97);backdrop-filter:blur(12px)}
  .nav-inner{flex-wrap:wrap}
  .nav-logo{order:1}
  .nav-toggle{display:block;order:2}

  .nav-links{
    order:3;
    display:none;
    flex-direction:column;
    align-items:stretch;
    width:100%;
    background:#fff;
    padding:1rem 0 .5rem;
    gap:.25rem;
    box-shadow:0 20px 40px -20px rgba(0,0,0,.15);
    border-top:1px solid var(--border);
    max-height:calc(100vh - 80px);
    overflow-y:auto;
  }
  .nav-links.open{display:flex}
  .nav-links a{width:100%;padding:.65rem .5rem;border-bottom:1px solid var(--border)}

  .dropdown {
    width: 100%;
    display: block;
}

.dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-menu {
    position: static !important;
    width: 100%;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0;
    padding-left: 20px;
    background: transparent;
    box-shadow: none;
    border: none;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 0;
}

  .nav .btn{
    order:4;
    display:none;
    width:auto;
    max-width:220px;
    margin:.75rem auto 1rem;
    padding:.6rem 1.4rem;
    font-size:.85rem;
    justify-content:center;
  }
  .nav-links.open + .btn{
    display:inline-flex;
  }

  .hero-badge{display:none}
}

@media (max-width:600px){
  .grid-2,.grid-3,.grid-4,.testimonials,.values,.footer-grid,.mv-cards,.form-row{grid-template-columns:1fr}
  .section{padding:3.5rem 0}
  .hero{padding-top:7rem}
  .hero-stats{gap:1.25rem}
}




/* Emergency card stands out */
.info-item-emergency{
  border-color:var(--green);
  background:linear-gradient(135deg,rgba(87,212,0,.06),rgba(87,212,0,.02));
}
.icon-emergency{background:var(--green);color:#0b1f00}

/* Info items get a subtle hover lift */
.info-item{transition:all .25s ease}
.info-item:hover{transform:translateX(4px);box-shadow:0 12px 24px -14px rgba(0,71,171,.2);border-color:transparent}

/* Quick action buttons under contact info */
.quick-actions{display:flex;gap:.75rem;margin-top:1.5rem;flex-wrap:wrap}
.quick-actions .btn{flex:1;min-width:150px;justify-content:center}

/* Form styling upgrade */
.contact-form{
  box-shadow:0 30px 60px -30px rgba(0,71,171,.2);
  border-color:transparent;
  background:linear-gradient(180deg,#fff,var(--section) 400%);
}
.form-header{border-bottom:1px solid var(--border);padding-bottom:1rem;margin-bottom:.25rem}
.form-header h3{margin:0 0 .35rem;color:var(--primary)}
.form-header p{margin:0;color:#6b7280;font-size:.9rem}

.btn-submit{width:100%;justify-content:center;padding:.95rem;font-size:1rem;margin-top:.25rem}
.form-msg{margin:.25rem 0 0;font-size:.9rem;text-align:center;min-height:1.2em}

@media (max-width:600px){
  .quick-actions{flex-direction:column}
  .quick-actions .btn{width:100%}
}
.about-header{
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: linear-gradient(180deg,#F7FBFF 0%,#FFFFFF 100%);
}

.about-header::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    background:rgba(0,102,204,.06);
    border-radius:50%;
}

.about-header::after{
    content:"";
    position:absolute;
    bottom:-100px;
    left:-100px;
    width:260px;
    height:260px;
    background:rgba(87,212,0,.08);
    border-radius:50%;
}

.about-header .container{
    position:relative;
    z-index:2;
}

.about-header h1{
    max-width:700px;
    margin:0 auto;
    text-align:center;
    font-size:clamp(1.8rem,3.5vw,2.8rem);
    line-height:1.25;
    font-weight:700;
    color:#1D1D1D;
}

.about-header h1 span{
    background:linear-gradient(90deg,#0066CC,#57D400);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.about-header .lead{
    max-width:720px;
    margin:24px auto 0;
    text-align:center;
    color:#6B7280;
    line-height:1.8;
}

.about-header-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:60px;
}

.stat-box{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:18px;
    padding:28px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s ease;
}

.stat-box:hover{
    transform:translateY(-8px);
    border-color:#0066CC;
    box-shadow:0 18px 40px rgba(0,102,204,.12);
}

.stat-box strong{
    display:block;
    font-size:2rem;
    color:#0066CC;
    font-family:Poppins,sans-serif;
}

.stat-box span{
    display:block;
    margin-top:8px;
    color:#6B7280;
    font-size:.95rem;
}

@media(max-width:991px){
    .about-header-stats{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .about-header{
        padding:80px 0 60px;
    }

    .about-header-stats{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .eyebrow{
        font-size:.8rem;
        padding:6px 14px;
    }
}

@media (max-width:768px){
    .about-header{
        padding:90px 0 50px;
    }
}
.about-title{
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.25;
    font-weight: 700;
    color: #1D1D1D;
    margin-bottom: 1rem;
}

@media (max-width:768px){
    .about-title{
        font-size: 1.8rem;
        text-align: center;
    }
}

@media (max-width:480px){
    .about-title{
        font-size: 1.55rem;
        line-height: 1.3;
    }
}
/* Services hero — namespaced, no shared classes */
.svc-hero{position:relative;overflow:hidden}

.svc-hero-blob{position:absolute;border-radius:50%;filter:blur(70px);opacity:.22;pointer-events:none}
.svc-hero-blob-a{width:420px;height:420px;background:var(--primary);top:-120px;right:-100px}
.svc-hero-blob-b{width:320px;height:320px;background:var(--green);bottom:-100px;left:-80px}

.svc-hero-inner{position:relative;z-index:1;text-align:center}

.svc-hero-title{max-width:760px;margin:0 auto}
.svc-hero-highlight{
  background:linear-gradient(90deg,var(--primary),var(--green));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}

.svc-hero-sub{
  max-width:600px;margin:1.1rem auto 0;
  color:#4b5563;font-size:1.05rem;
}

.svc-hero-tags{
  display:flex;justify-content:center;flex-wrap:wrap;
  gap:.75rem;margin-top:2.25rem;
}
.svc-tag{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.55rem 1.1rem;border-radius:2rem;
  background:#fff;border:1px solid var(--border);
  font-size:.85rem;font-weight:600;color:var(--dark);
  box-shadow:0 8px 20px -12px rgba(0,0,0,.1);
  transition:all .25s ease;
}
.svc-tag i{color:var(--primary);font-size:.9rem}
.svc-tag:hover{
  transform:translateY(-3px);
  border-color:transparent;
  box-shadow:0 12px 24px -12px rgba(0,71,171,.25);
}

@media (max-width:600px){
  .svc-hero-tags{gap:.5rem}
  .svc-tag{font-size:.8rem;padding:.5rem .9rem}
}


/* ==========================================
   HOME PAGE - SERVICES SECTION
========================================== */
/* ==========================================
   HOME PAGE - SERVICES SECTION
========================================== */

.home-services-section {
    padding-bottom: 100px 0;
    padding-top:40px;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}
.hero-lead{
    margin: 1rem 0 .45rem;
    max-width: 620px;
    line-height: 1.75;
}

.hero-support{
    margin: 0 0 1.5rem;
    max-width: 620px;
    line-height: 1.6;
}
/*========================
      Decorative background
=========================*/

.home-services-bg{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    overflow:hidden;
}

.home-services-dots{
    position:absolute;
    top:40px;
    left:40px;
    width:120px;
    height:80px;
    background-image:radial-gradient(rgba(13,110,253,.35) 1.5px, transparent 1.5px);
    background-size:16px 16px;
}

.home-services-eye{
    position:absolute;
    top:-40px;
    right:-60px;
    width:420px;
    height:420px;
    border-radius:50%;
    object-fit:cover;
    opacity:.16;
    -webkit-mask-image:linear-gradient(135deg, #000 40%, transparent 75%);
    mask-image:linear-gradient(135deg, #000 40%, transparent 75%);
}

/*========================
      Heading
=========================*/

.home-services-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 34px;
    position: relative;
    z-index: 2;
}

.home-services-head h2 {
    font-size: 46px;
    font-weight: 800;
    color: #14213d;
    margin-bottom: 15px;
}

.home-services-head h2 span{
    color:#0d6efd;
}

.home-services-head p {
    color: #6c757d;
    font-size: 18px;
    line-height: 1.8;
}

/*========================
      Eyebrow + divider
=========================*/

.home-services-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(13,110,253,.08);
    color:#0d6efd;
    font-size:13px;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
    padding:8px 18px;
    border-radius:999px;
    margin-bottom:18px;
}

.home-services-eyebrow .dot{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#0d6efd;
}

.home-services-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin:12px auto 16px;
    max-width:220px;
}

.home-services-divider span{
    height:1px;
    flex:1;
    background:linear-gradient(90deg, transparent, rgba(13,110,253,.35));
}

.home-services-divider span:last-child{
    background:linear-gradient(90deg, rgba(13,110,253,.35), transparent);
}

.home-services-divider i{
    color:#0d6efd;
    font-size:15px;
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border:1px solid rgba(13,110,253,.25);
    border-radius:50%;
    flex-shrink:0;
}

/*========================
      Grid
=========================*/

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/*========================
      Card
=========================*/

.home-service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,.07);
    transition: .4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(13,110,253,.08);
}

.home-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,#0d6efd,#00c6ff);
    transform: scaleX(0);
    transition: .4s;
    z-index: 3;
}

.home-service-card:hover::before {
    transform: scaleX(1);
}

.home-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(13,110,253,.18);
}

/*========================
      Image
=========================*/

.home-service-image {
    position: relative;
    height: 160px;
    overflow: visible; /* lets the icon badge poke out below without being clipped */
}

.home-service-image-inner {
    width: 100%;
    height: 100%;
    overflow: hidden; /* this is what crops/zooms the photo itself */
    border-radius: 18px 18px 0 0;
}

.home-service-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.home-service-card:hover .home-service-image-inner img {
    transform: scale(1.08);
}

/*========================
      Icon badge on card image
=========================*/

.home-service-icon{
    position:absolute;
    left:14px;
    bottom:-18px;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#fff;
    color:#0d6efd;
    display:grid;
    place-items:center;
    font-size:15px;
    box-shadow:0 8px 18px -6px rgba(13,110,253,.35);
    border:1px solid rgba(13,110,253,.1);
    z-index:2;
}

/*========================
      Content
=========================*/

.home-service-content {
    padding: 14px 16px;
    padding-top: 26px; /* room for the icon overlapping from above */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-service-title,
.home-service-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #14213d;
    line-height: 1.35;
    margin-bottom: 8px;
}

.home-service-text,
.home-service-content p {
    color: #6b7280;
    font-size: 13.5px;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

/*========================
      Button
=========================*/

.home-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #0d6efd;
    font-weight: 600;
    font-size: 13.5px;
    transition: .3s;
}

.home-service-link i {
    transition: .3s;
}

.home-service-link:hover {
    color: #0047d6;
}

.home-service-link:hover i {
    transform: translateX(6px);
}

/*========================
      Trust tagline row
=========================*/

.home-services-tagline{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    margin-top:60px;
    position:relative;
    z-index:2;
}

.home-services-tagline span{
    height:1px;
    width:70px;
    background:rgba(20,33,61,.15);
}

.home-services-tagline i{
    color:#0d6efd;
    font-size:15px;
}

.home-services-tagline p{
    margin:0;
    font-size:14px;
    font-weight:600;
    color:#14213d;
    letter-spacing:.02em;
    white-space:nowrap;
}

/*========================
      Desktop
=========================*/

@media (max-width:1200px){

.home-services-grid{
    grid-template-columns:repeat(3,1fr);
}

}

/*========================
      Tablet
=========================*/

@media (max-width:992px){

.home-services-section{
    padding:80px 0;
     padding-top: 32px;
}

.home-services-head h2{
    font-size:38px;
}

.home-services-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.home-service-image{
    height:210px;
}

}

/*========================
      Mobile
=========================*/

@media (max-width:768px){

.home-services-section{
    padding:70px 0;
     padding-top: 28px;
}

.home-services-head{
    margin-bottom:40px;
}

.home-services-head h2{
    font-size:32px;
}

.home-services-head p{
    font-size:16px;
}

.home-services-grid{
    grid-template-columns:1fr;
    gap:22px;
}

.home-service-content{
    padding:24px;
    padding-top: 42px;
}

.home-service-content h3{
    font-size:20px;
}

.home-service-content p{
    font-size:15px;
}

.home-service-image{
    height:210px;
}

}

/*========================
      Small Mobile
=========================*/

@media (max-width:480px){

.home-services-head h2{
    font-size:28px;
}

.home-service-image{
    height:190px;
}

.home-service-content{
    padding:20px;
    padding-top: 38px;
}

.home-service-content h3{
    font-size:18px;
}

.home-service-content p{
    font-size:14px;
    line-height:1.7;
}

}

@media (max-width:600px){
    .home-services-eye{ width:260px; height:260px; }
    .home-services-tagline{ flex-wrap:wrap; gap:10px; }
    .home-services-tagline span{ width:36px; }
}




.about-header-stats{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:2rem;
    margin-top:3rem;
    padding-top:2rem;
    border-top:1px solid var(--border);
}

.about-header-stats div{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:.8rem;
    max-width:180px;
}

.about-header-stats i{
    font-size:2rem;
    color:#0066CC;
}

.about-header-stats span{
    font-size:.95rem;
    color:#4b5563;
    font-weight:600;
    line-height:1.5;
}

@media(max-width:768px){
    .about-header-stats{
        gap:1.5rem;
    }

    .about-header-stats div{
        max-width:140px;
    }

    .about-header-stats i{
        font-size:1.7rem;
    }

    .about-header-stats span{
        font-size:.85rem;
    }
}




/* ===========================
   PATIENT JOURNEY
=========================== */

.journey{
    background:#F8FCFF;
      padding-bottom:50px;
    overflow:hidden;
}

.journey h2{
    text-align:center;
    max-width:700px;
    margin:12px auto 10px;
    line-height:1.2;
}

.journey h2 span{
    color:#0066CC;
}

.journey-subtitle{
    max-width:650px;
    margin:0 auto 40px;
    text-align:center;
    color:#6B7280;
    font-size:15px;
    line-height:1.7;
}

/* ===========================
   Timeline
=========================== */

.journey-wrapper{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
}

.progress-line{
    position:absolute;
    top:32px;
    left:8%;
    right:8%;
    height:3px;
    background:#DCEBFF;
    border-radius:30px;
}

.progress-line::after{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:100%;
    border-radius:30px;
    background:linear-gradient(90deg,#0066CC,#57D400);
    animation:fillLine 2.2s ease forwards;
}

@keyframes fillLine{
    to{
        width:100%;
    }
}

/* ===========================
   Step
=========================== */

.journey-step{

    width:20%;

    position:relative;

    z-index:2;

    text-align:center;

    opacity:0;

    transform:translateY(30px);

    transition:.7s;

}

.journey-step.show{

    opacity:1;

    transform:translateY(0);

}

.step-circle{

    width:64px;

    height:64px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    color:#fff;

    background:linear-gradient(135deg,#0066CC,#16A34A);

    box-shadow:0 12px 30px rgba(0,102,204,.18);

    transition:.35s;

}

.journey-step:hover .step-circle{

    transform:translateY(-6px) scale(1.08);

    box-shadow:0 18px 40px rgba(0,102,204,.28);

}

.journey-step h4{

    margin:16px 0 8px;

    font-size:17px;

    font-weight:600;

    color:#111827;

}

.journey-step p{

    margin:0;

    font-size:14px;

    color:#6B7280;

    line-height:1.55;

    padding:0 6px;

}

.journey-cta{

    text-align:center;

    margin-top:35px;

}

/* ===========================
   Tablet
=========================== */

@media(max-width:992px){

.journey{

padding:60px 0;

}

.journey-wrapper{

flex-direction:column;

gap:22px;

}

.progress-line{

left:30px;

top:0;

width:3px;

height:100%;

right:auto;

}

.progress-line::after{

width:100%;

height:0;

animation:fillVertical 2s forwards;

}

@keyframes fillVertical{

to{

height:100%;

}

}

.journey-step{

width:100%;

display:flex;

align-items:flex-start;

gap:18px;

text-align:left;

padding-left:70px;

}

.step-circle{

position:absolute;

left:0;

top:0;

width:56px;

height:56px;

font-size:20px;

}

.journey-step h4{

margin:0 0 6px;

font-size:17px;

}

.journey-step p{

padding:0;

}

}

/* ===========================
   Mobile
=========================== */

@media(max-width:768px){

.journey{

padding:50px 0;

}

.journey h2{

font-size:30px;

}

.journey-subtitle{

margin-bottom:30px;

font-size:14px;

}

.step-circle{

width:50px;

height:50px;

font-size:18px;

}

.journey-step{

padding-left:62px;

}

.journey-step h4{

font-size:16px;

}

.journey-step p{

font-size:13px;

line-height:1.5;

}

.journey-cta{

margin-top:25px;

}

}

/* ===========================
   Small Mobile
=========================== */

@media(max-width:480px){

.journey h2{

font-size:26px;

}

.journey-subtitle{

font-size:13px;

}

.step-circle{

width:46px;

height:46px;

font-size:16px;

}

.journey-step{

padding-left:56px;

}

.journey-step h4{

font-size:15px;

}

.journey-step p{

font-size:12.8px;

}

}
.sp-patient-journey{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:fit-content;
    margin:0 auto 15px;
    padding:8px 18px;

    color:#0066CC;

    border-radius:999px;
    font-size:14px;
    font-weight:600;
}

.sp-patient-journey i{
    color:#16A34A;
}


/*==================================================
        INSURANCE & EMI SECTION
==================================================*/

.finance-section{
    position:relative;
    .finance-section{
    padding-top:50px;
    padding-bottom:90px;
}
    background:linear-gradient(180deg,#F8FCFF 0%,#FFFFFF 100%);
    overflow:hidden;
}

/* Background Blur */

.finance-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#0066CC12;
    border-radius:50%;
    left:-180px;
    top:-150px;
    filter:blur(70px);
}

.finance-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:#57D40012;
    border-radius:50%;
    right:-120px;
    bottom:-100px;
    filter:blur(70px);
}

.finance-section .container{
    position:relative;
    z-index:2;
}

/*---------------------------------------
 Badge
---------------------------------------*/

.finance-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 22px;

    background:#EAF4FF;
    border:1px solid #D6EAFF;

    border-radius:50px;

    color:#0066CC;
    font-weight:600;
    font-size:15px;

    margin-bottom:22px;

}

.finance-badge i{
    color:#16A34A;
}

/*---------------------------------------
 Heading
---------------------------------------*/

.finance-section h2{

    font-size:48px;
    line-height:1.15;
    font-weight:700;

    max-width:760px;
    margin:auto;

    color:#111827;

}

.finance-section h2 span{

    color:#0066CC;

}

.finance-subtitle{

    max-width:760px;
    margin:22px auto 60px;

    font-size:17px;
    line-height:1.9;

    color:#64748B;

    text-align:center;

}

/*---------------------------------------
 Cards
---------------------------------------*/

.finance-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:34px;

}

.finance-card{

    position:relative;

    background:#fff;

    padding:18px;

    border-radius:28px;

    overflow:hidden;

    border:1px solid #EEF2F7;

    transition:.45s ease;

    box-shadow:
    0 15px 40px rgba(15,23,42,.06);

}

/* Animated Gradient Border */

.finance-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#0066CC,#57D400);

    transform:scaleX(0);

    transition:.4s;

    transform-origin:left;

}

.finance-card:hover::before{

    transform:scaleX(1);

}

/* Decorative Circle */

.finance-card::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    right:-120px;
    top:-120px;

    border-radius:50%;

    background:#0066CC08;

    transition:.4s;

}

.finance-card:hover::after{

    transform:scale(1.2);

}

/* Hover */

.finance-card:hover{

    transform:translateY(-12px);

    box-shadow:

    0 20px 60px rgba(0,102,204,.12),

    0 10px 30px rgba(0,0,0,.08);

}

/*---------------------------------------
 Image
---------------------------------------*/

.finance-image{

    height:250px;

    border-radius:22px;

    overflow:hidden;

}

.finance-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s;

}

.finance-card:hover img{

    transform:scale(1.08);

}

/*---------------------------------------
 Content
---------------------------------------*/

.finance-content{

    padding:28px 10px 12px;

    text-align:left;

}

/* Optional Small Tag */

.finance-tag{

    display:inline-block;

    padding:6px 14px;

    border-radius:999px;

    background:#EEF6FF;

    color:#0066CC;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.finance-content h3{

    display:flex;
    align-items:center;
    gap:12px;

    font-size:28px;
    font-weight:700;

    color:#111827;

    margin-bottom:18px;

}

.finance-content h3 i{

    width:52px;
    height:52px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    background:linear-gradient(135deg,#0066CC,#16A34A);

    font-size:20px;

    box-shadow:0 12px 24px rgba(0,102,204,.18);

    flex-shrink:0;

}

.finance-content p{

    font-size:16px;

    color:#64748B;

    line-height:1.9;

}

/*---------------------------------------
 CTA
---------------------------------------*/

.finance-btn{

    margin-top:55px;

    text-align:center;

}

.finance-btn .btn{

    padding:16px 34px;

    border-radius:14px;

    font-size:16px;

    font-weight:600;

    box-shadow:0 18px 35px rgba(0,102,204,.22);

}

/*==================================================
 Tablet
==================================================*/

@media(max-width:992px){

.finance-section{

padding:80px 0;

}

.finance-grid{

grid-template-columns:1fr;

max-width:760px;

margin:auto;

}

.finance-section h2{

font-size:38px;

}

.finance-subtitle{

margin-bottom:45px;

}

}

/*==================================================
 Mobile
==================================================*/

@media(max-width:768px){

.finance-section{

padding:65px 0;

}

.finance-section h2{

font-size:30px;

}

.finance-subtitle{

font-size:15px;

margin-bottom:35px;

}

.finance-image{

height:220px;

}

.finance-content{

padding:22px 6px;

}

.finance-content h3{

font-size:22px;

}

.finance-content h3 i{

width:46px;

height:46px;

font-size:18px;

}

.finance-content p{

font-size:15px;

}

.finance-btn{

margin-top:40px;

}

}

/*==================================================
 Small Mobile
==================================================*/

@media(max-width:480px){

.finance-section{

padding:55px 0;

}

.finance-section h2{

font-size:26px;

line-height:1.3;

}

.finance-subtitle{

font-size:14px;

line-height:1.8;

}

.finance-grid{

gap:24px;

}

.finance-card{

padding:14px;

border-radius:22px;

}

.finance-image{

height:190px;

}

.finance-content{

text-align:center;

padding:20px 8px 8px;

}

.finance-content h3{

justify-content:center;

font-size:20px;

}

.finance-content p{

font-size:14px;

}

.finance-btn .btn{

width:100%;

padding:15px;

}

}

/*==========================
  PROMISE BADGE
===========================*/

.bg-promise-tg{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:fit-content;
    margin:0 auto 24px;

    padding:10px 22px;

   

    color:#0066CC;

    font-size:15px;
    font-weight:600;

    transition:.35s ease;
}

.bg-promise-tg i{
    color:#16A34A;
    font-size:16px;
}



.bg-promise-tg:hover i{
    color:#57D400;
}

/* Mobile */

@media(max-width:768px){

.bg-promise-tg{
    padding:9px 18px;
    font-size:14px;
    gap:8px;
}

.bg-promise-tg i{
    font-size:15px;
}

}


.finance-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto;
    font-size:48px;
    line-height:1.2;
    font-weight:700;
    color:#111827;
}

.finance-heading span{
    color:#111827; /* or #0066CC if you want blue */
}

@media(max-width:768px){
    .finance-heading{
        font-size:32px;
    }
}

@media(max-width:480px){
    .finance-heading{
        font-size:26px;
        line-height:1.3;
    }
}


/*=========================================
        APPOINTMENT MODAL
=========================================*/

.appointment-modal{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    background:rgba(15,23,42,.55);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:9999;
}

.appointment-modal.show{
    opacity:1;
    visibility:visible;
}

/*=========================================
        MODAL BOX
=========================================*/

.appointment-box{
    position:relative;
    width:100%;
    max-width:400px;
    background:#fff;
    border-radius:18px;
    border-top:4px solid #0066CC;
    box-shadow:0 30px 80px rgba(0,0,0,.18);
    overflow:hidden;
    animation:popup .3s ease;
}

@keyframes popup{

    from{
        opacity:0;
        transform:translateY(20px) scale(.96);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

/*=========================================
        CLOSE BUTTON
=========================================*/

.appointment-close{

    position:absolute;

    top:12px;

    right:12px;

    width:36px;

    height:36px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:none;

    border-radius:50%;

    background:#F3F4F6;

    color:#374151;

    cursor:pointer;

    transition:.25s;

    z-index:5;

}

.appointment-close i{

    font-size:18px;

    pointer-events:none;

}

.appointment-close:hover{

    background:#0066CC;

    color:#fff;

}

/*=========================================
        HEADER
=========================================*/

.appointment-header{

    text-align:center;

    padding:20px 20px 12px;

}

.appointment-header h2{

    font-size:24px;

    font-weight:700;

    color:#111827;

    margin-bottom:5px;

}

.appointment-header p{

    font-size:13px;

    color:#6B7280;

    line-height:1.5;

    max-width:300px;

    margin:auto;

}

/*=========================================
        FORM
=========================================*/

#appointmentForm{

    padding:0 20px 20px;

}

/*=========================================
        TWO COLUMN
=========================================*/

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;

}

/*=========================================
        INPUTS
=========================================*/

.input-group{

    margin-bottom:12px;

}

.input-group label{

    display:block;

    font-size:12px;

    font-weight:600;

    color:#374151;

    margin-bottom:5px;

}

.input-group input,

.input-group select{

    width:100%;

    height:44px;

    padding:0 14px;

    border:1px solid #E5E7EB;

    border-radius:10px;

    background:#fff;

    font-size:14px;

    outline:none;

    transition:.25s;

}

.input-group input:focus,

.input-group select:focus{

    border-color:#0066CC;

    box-shadow:0 0 0 4px rgba(0,102,204,.10);

}

/*=========================================
        BUTTON
=========================================*/

.appointment-submit{

    width:100%;

    height:46px;

    margin-top:8px;

    border:none;

    border-radius:10px;

    background:linear-gradient(90deg,#0066CC,#16A34A);

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.appointment-submit:hover{

    transform:translateY(-2px);

    box-shadow:0 15px 30px rgba(0,102,204,.20);

}

/*=========================================
        TABLET
=========================================*/

@media (max-width:768px){

    .appointment-modal{

        padding:16px;

    }

    .appointment-box{

        max-width:420px;

        max-height:90vh;

        overflow-y:auto;

    }

    .form-row{

        grid-template-columns:1fr;

        gap:0;

    }

    .appointment-header{

        padding:18px 18px 10px;

    }

    .appointment-header h2{

        font-size:22px;

    }

    #appointmentForm{

        padding:0 18px 18px;

    }

}

/*=========================================
        MOBILE
=========================================*/

@media (max-width:480px){

    .appointment-modal{

        justify-content:center;

        align-items:center;

        padding:14px;

    }

    .appointment-box{

        width:100%;

        max-width:360px;

        max-height:88vh;

        overflow-y:auto;

        border-radius:18px;

    }

    .appointment-header{

        padding:16px;

    }

    .appointment-header h2{

        font-size:20px;

    }

    .appointment-header p{

        font-size:12px;

        line-height:1.4;

    }

    #appointmentForm{

        padding:0 16px 16px;

    }

    .input-group{

        margin-bottom:10px;

    }

    .input-group input,

    .input-group select{

        height:42px;

        font-size:13px;

    }

    .appointment-submit{

        height:44px;

        font-size:14px;

    }

    .appointment-close{

        width:34px;

        height:34px;

    }

    .appointment-close i{

        font-size:16px;

    }

}



/* about us video section */

/*==============================
 ABOUT VIDEO SECTION
===============================*/
/*==================================================
            ABOUT VIDEO SECTION
==================================================*/

.about-video-section{
    padding:90px 0;
    background:linear-gradient(180deg,#F8FCFF 0%,#FFFFFF 100%);
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* Decorative Blur Circles */

.about-video-section::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(0,102,204,.08);
    top:-120px;
    left:-120px;
    filter:blur(20px);
}

.about-video-section::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(87,212,0,.10);
    right:-80px;
    bottom:-80px;
    filter:blur(20px);
}

/* Badge */

.about-video-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 22px;

    background:#EAF4FF;

    color:#0066CC;

    border-radius:999px;

    font-weight:600;

    font-size:15px;

    margin-bottom:22px;

}

.about-video-badge i{

    color:#57D400;

}

/* Heading */

.about-video-heading{

    font-size:48px;

    line-height:1.15;

    color:#111827;

    margin-bottom:20px;

}

.about-video-heading span{

    color:#0066CC;

}

/* Paragraph */

.about-video-text{

    max-width:780px;

    margin:0 auto;

    color:#6B7280;

    font-size:17px;

    line-height:1.9;

}

/*==========================
      VIDEO CARD
==========================*/

.about-video-wrapper{

    position:relative;

    max-width:900px;

    margin:55px auto 0;

    border-radius:26px;

    overflow:hidden;

    background:#ffffff;

    padding:10px;

    border:1px solid #E5E7EB;

    box-shadow:
    0 35px 70px rgba(0,0,0,.10),
    0 15px 35px rgba(0,102,204,.08);

    transition:.4s;

}

.about-video-wrapper:hover{

    transform:translateY(-8px);

    box-shadow:
    0 45px 80px rgba(0,0,0,.12),
    0 20px 40px rgba(0,102,204,.10);

}

/* Fake Browser Top */

.about-video-wrapper::before{

    content:"";

    position:absolute;

    top:10px;

    left:18px;

    width:12px;

    height:12px;

    border-radius:50%;

    background:#FF5F57;

    box-shadow:
    22px 0 #FEBC2E,
    44px 0 #28C840;

    z-index:20;

}

.about-video-wrapper::after{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:36px;

    background:#F5F7FA;

    border-bottom:1px solid #ECECEC;

}

/* Video */

.about-video-wrapper video{

    width:100%;

    aspect-ratio:16/9;

    display:block;

    border-radius:18px;

    object-fit:cover;

    margin-top:26px;

}

/*==========================
     FEATURES
==========================*/

.video-features{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-top:38px;

}

.video-features div{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    background:#ffffff;

    border:1px solid #E5E7EB;

    border-radius:50px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    font-weight:600;

    color:#374151;

    transition:.35s;

}

.video-features div:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(0,102,204,.10);

}

.video-features i{

    color:#0066CC;

    font-size:18px;

}

/*==========================
      TABLET
==========================*/

@media(max-width:992px){

.about-video-section{

padding:75px 0;

}

.about-video-heading{

font-size:38px;

}

.about-video-text{

font-size:16px;

max-width:700px;

}

.about-video-wrapper{

max-width:720px;

}

}

/*==========================
      MOBILE
==========================*/

@media(max-width:768px){

.about-video-section{

padding:60px 0;

}

.about-video-heading{

font-size:30px;

}

.about-video-text{

font-size:15px;

line-height:1.8;

padding:0 10px;

}

.about-video-wrapper{

max-width:100%;

margin-top:35px;

padding:8px;

border-radius:18px;

}

.about-video-wrapper::after{

height:30px;

}

.about-video-wrapper video{

margin-top:20px;

border-radius:12px;

}

.video-features{

gap:12px;

margin-top:30px;

}

.video-features div{

font-size:14px;

padding:12px 16px;

}

}

/*==========================
      SMALL MOBILE
==========================*/

@media(max-width:480px){

.about-video-heading{

font-size:26px;

}

.about-video-text{

font-size:14px;

}

.about-video-wrapper{

border-radius:15px;

padding:6px;

}

.about-video-wrapper::before{

width:10px;

height:10px;

box-shadow:
18px 0 #FEBC2E,
36px 0 #28C840;

}

.video-features{

flex-direction:column;

align-items:center;

}

.video-features div{

width:90%;

justify-content:center;

}

}




/* about video */


/* ==========================
   About Video Section
========================== */

.about-video-section{
    padding:70px 0;
    background:#fff;
}

.about-video-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    margin-bottom:16px;
}

.about-video-heading{
    font-size:clamp(2rem,4vw,3rem);
    line-height:1.15;
    margin-bottom:14px;
}

.about-video-text{
    max-width:760px;
    margin:0 auto 28px;
    font-size:16px;
    line-height:1.7;
}

/* Video */

.about-video-wrapper{
    width:100%;
    max-width:980px;
    margin:0 auto;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-video-wrapper video{
    width:100%;
    height:500px;      /* Desktop */
    object-fit:cover;
    display:block;
}

/* Features */

.video-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:26px;
}

.video-features div{
    padding:16px 18px;
    border-radius:14px;
    font-size:15px;
}

/* ==========================
Tablet
========================== */

@media (max-width:992px){

.about-video-section{
    padding:55px 0;
}

.about-video-wrapper video{
    height:400px;
}

.video-features{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

}

/* ==========================
Mobile
========================== */

@media (max-width:768px){

.about-video-section{
    padding:45px 0;
}

.about-video-heading{
    margin-bottom:12px;
}

.about-video-text{
    margin-bottom:20px;
    font-size:15px;
}

.about-video-wrapper{
    border-radius:18px;
}

.about-video-wrapper video{
    height:260px;
}

.video-features{
    grid-template-columns:1fr;
    gap:12px;
    margin-top:18px;
}

.video-features div{
    padding:14px 16px;
    font-size:14px;
}

}