
      
      <link rel="stylesheet"
      href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">


:root {
  --bg: #ffffff;
  --text: #111111;
  --border: #e5e7eb;
       --accent: #2563eb;
  --soft: #f8fafc;
}

body.dark {
  --bg: #0f172a;
  --text: #e5e7eb;
  --border: #1e293b;
   --soft: #020617;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
      line-height: 1.7;
  padding-top: 0;
  transition: background 0.35s ease, color 0.35s ease;
}

/* ================= HEADER ================= */
header {
  position: sticky;
  top: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0.9rem 1.6rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}

/* Center Title */
.header-title {
  text-align: center;
  font-size: 1.4rem; /* bigger */
}

/* ================= MENU ================= */
.menu {
  position: relative;
}

  .dropdown {
  line-height: normal;
}

.dropdown a,
.dropdown button {
  line-height: 1.3;
}

  
.menu-btn {
  font-size: 1.9rem; /* bigger hamburger */
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

/* Main Dropdown */
.dropdown {
  position: absolute;
  top: 3rem;
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 320px; /* wider */
  padding: 0.6rem 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.25s ease;
}

.dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

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

  width: 100%;
  padding: 0.9rem 1.2rem; /* more space */
  background: none;
  border: none;
  text-decoration: none;
  color: var(--text);
  font-size: 1.05rem; /* bigger text */
  font-weight: 700;
  cursor: pointer;
}

.dropdown a:hover,
.dropdown button:hover {
  background: rgba(100,116,139,0.15);
}

/* ================= SERVICES SUBMENU ================= */
.services-btn {
  font-weight: 400;
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.submenu.open {
  max-height: 700px;
}

.submenu a {
  padding-left: 2.2rem;
  font-size: 1rem; /* bigger */
  font-weight: 400;
}

/* ================= THEME TOGGLE ================= */
.toggle {
  font-size: 1.6rem; /* bigger */
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 700;
  color: var(--text);
  transition: transform 0.3s ease;
}

.toggle:hover {
  transform: rotate(15deg);
}
      /* ===== FOOTER ===== */
.site-footer {
  background: #ffffff;
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.footer-item {
  margin-bottom: 2.5rem;
}

.footer-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 10px;
  background: #e6f4f1;
  color: #2fb29a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #0f172a;
}

.footer-sub {
  font-size: 1rem;
  color: #6b7280;
}

.footer-sub a {
  color: inherit;
  text-decoration: none;
}

/* MAP LINK */
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.8rem;
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  background: #f1f5f9;
  color: #2563eb;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.map-link:hover {
  background: #e0e7ff;
  transform: translateY(-1px);
}

/* SOCIAL ICONS */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  background: #2fb29a;
  color: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* DESKTOP GRID */
@media (min-width: 768px) {
  .site-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .footer-socials {
    grid-column: span 3;
  }
}

/* ===== COPYRIGHT BOX ===== */
.copyright-box {
  background: #e6f4ff;          /* light sky blue */
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  margin: 2rem auto 2.5rem;
  max-width: 1100px;
  text-align: center;
  color: #0f172a;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.copyright-box p {
  margin: 0;
  line-height: 1.6;
}

.copyright-box a {
  color: #0284c7;
  font-weight: 600;
  text-decoration: none;
}

.copyright-box a:hover {
  color: #0369a1;
}

.mobile-break {
  display: none;
}

@media (max-width: 640px) {
  .mobile-break {
    display: block;
  }
}
      /* ===== STICKY FLOATING BUTTONS ===== */
.sticky-whatsapp,
.sticky-call,
.sticky-email {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sticky-whatsapp i
{
  font-size: 2.2rem; /* 👈 bigger icon */
}
  .sticky-email i
{
  font-size: 2.0rem; /* 👈 bigger icon */
}
.sticky-call i
{
  font-size: 1.7rem; /* 👈 bigger icon */
}
.sticky-whatsapp:hover,
.sticky-call:hover,
.sticky-email:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

/* RIGHT SIDE */
.sticky-whatsapp {
  right: 16px;
  bottom: 110px;
  background: #25D366;
}

.sticky-call {
  right: 16px;
  bottom: 40px;
  background: #2563eb;
}

/* LEFT SIDE (CENTER BETWEEN BOTH) */
.sticky-email {
  left: 16px;
  bottom: 75px; /* centered between 110px & 40px */
  background: #f97316; /* email orange */
}

/* Mobile-only (remove if needed on desktop) */
@media (min-width: 768px) {
  .sticky-whatsapp,
  .sticky-call,
  .sticky-email {
    display: ;
  }
}
  /* HERO */
.hero {
  background: linear-gradient(180deg, #f1f5f9, #ffffff);
  text-align: center;
  padding: 4.5rem 1.5rem;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.hero .cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

/* HIGHLIGHTS */
.highlights {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.highlight {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.highlight span {
  font-size: 2.2rem;
}

/* ABOUT */
.about {
  background: var(--soft);
  padding: 4rem 1.5rem;
}

.about-inner {
  max-width: 1100px;
  margin: auto;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1.1rem;
  max-width: 900px;
}

/* SERVICES */
.services {
  max-width: 1100px;
  margin: auto;
  padding: 4rem 1.5rem;
}
  
  .service {
  text-align: center;
}

.service span {
  display: block;
  margin-bottom: 0.6rem;
}


.services h2 {
  text-align: center; /* centered */
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.service {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.service span {
  font-size: 1.8rem;
}

.service h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.service p {
  font-size: 1.05rem;
  opacity: 0.85;
}

/* DOCTOR */
.doctor {
  background: var(--soft);
  padding: 4rem 1.5rem;
}

.doctor-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.doctor img {
  width: 100%;
  max-width: 220px;
  border-radius: 18px;
}

.doctor h3 {
  font-size: 1.9rem;
}

.doctor span {
  font-weight: 600;
  opacity: 0.8;
}

/* CTA STRIP */
.cta-strip {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
}

.cta-strip h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-strip a {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

  .all-services {
  background: var(--soft);
  padding: 4rem 1.5rem;
}

.all-services-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* SERVICES */
.services-box {
  flex: 2;
}

.services-box h2 {
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
}

.services-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.services-flex a {
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.services-flex a:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-1px);
}

      services-flex a {
  text-align: center;
}
.services-box h2,
.hours-box h2 {
  text-align: center;
}
.hours-box {
  text-align: center;
}
.services-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center; /* ✅ centers services */
}

.services-flex a {
  min-widtfh: 180px;
}
/* OPENING HOURS */
.hours-box {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem;
}

.hours-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hours-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-box li {
  padding: 0.5rem 0;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .all-services-inner {
    flex-direction: column;
  }
}
  
/* LOCATION */
.location {
  padding: 4rem 1.5rem;
  text-align: center;
}

.location h2 {
  font-size: 2rem;
}

.map {
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .doctor-inner { grid-template-columns: 1fr; text-align: center; }
  .doctor img { margin: auto; }
}
  
  /* ================= DARK MODE GLOBAL FIX ================= */
body.dark {
  background: #0f172a;
  color: #e5e7eb;
}

/* Sections */
body.dark .hero {
  background: linear-gradient(180deg, #020617, #0f172a);
}

body.dark .about,
body.dark .doctor {
  background: #020617;
}

body.dark .services,
body.dark .location {
  background: #0f172a;
}

/* Cards */
body.dark .highlight,
body.dark .service {
  background: #020617;
  border-color: #1e293b;
}

/* Footer */
body.dark .site-footer {
  background: #020617;
  border-top-color: #1e293b;
}

body.dark .footer-title {
  color: #e5e7eb;
}

body.dark .footer-sub {
  color: #94a3b8;
}

/* Footer icons */
body.dark .footer-icon {
  background: #022c22;
  color: #2fb29a;
}

/* Copyright box */
body.dark .copyright-box {
  background: #020617;
  color: #e5e7eb;
}

/* Map link */
body.dark .map-link {
  background: #020617;
  color: #60a5fa;
}

/* Dropdown menu */
body.dark .dropdown {
  background: #020617;
  border-color: #1e293b;
}

/* CTA strip */
body.dark .cta-strip {
  background: #1d4ed8;
}

/* Sticky buttons keep brand colors (no change needed) */

  /* Disable page scroll when menu is open */
body.menu-open {
  overflow: hidden;
}
/* Allow menu to scroll independently */
.dropdown {
  max-height: calc(100vh - 90px); /* full height minus header */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* smooth mobile scrolling */
}

  
