<style>
    /* THEME TOKENS */
    :root {
      --bg: #ffffff;
      --text: #0f172a;
      --muted: #475569;
      --teal: #0ea5a7;
      --teal-600: #0b8d8f;
      --border: #e2e8f0;
      --card: #ffffff;
      --shadow: 0 10px 30px rgba(2, 132, 199, 0.08), 0 6px 12px rgba(15, 23, 42, 0.06);
      --radius: 18px;
      --ring: rgba(14,165,167,.12);
    }
    [data-theme='dark'] {
      --bg: #0f172a;
      --text: #f1f5f9;
      --muted: #cbd5e1;
      --border: #334155;
      --card: #0b1220;
      --shadow: 0 10px 30px rgba(0,0,0,0.35);
      --ring: rgba(45,212,191,.18);
    }

    /* BASE */
    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; overflow-x: hidden; /* Prevent horizontal scroll */ font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--text); background: var(--bg); }
    html { scroll-behavior: smooth; }
    body { line-height: 1.6; }
    img { max-width: 100%; display: block; }
    a { color: inherit; }
    :focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

    /* TRANSITIONS (respect reduced motion) */
    @media (prefers-reduced-motion: no-preference) {
      html, body, .card, .service, header { transition: background-color .35s ease, color .35s ease, border-color .35s ease; }
    }

    /* UTIL */
    .container { width: min(1100px, 92%); margin: 0 auto; }
    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; background: var(--teal); color: white; text-decoration: none; font-weight: 600; letter-spacing: .2px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; box-shadow: 0 8px 20px rgba(14,165,167,.25); }
    .btn:hover { transform: translateY(-2px); background: var(--teal-600); box-shadow: 0 12px 26px rgba(14,165,167,.35); }
    .btn.ghost { background: transparent; color: var(--teal); border: 1px solid var(--teal); box-shadow: none; }
    .btn.ghost:hover { background: rgba(14,165,167,.08); }
    .tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--border); color: var(--muted); font-size: 12px; }
    .grid { display: grid; gap: 26px; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* PROGRESS BAR */
    .progress { position: fixed; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--teal), #06b6d4); transform-origin: 0 50%; scale: 0 1; z-index: 60; }

    /* HEADER */
    header { position: sticky; top: 0; z-index: 50; background: color-mix(in oklab, var(--bg), transparent 25%); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid color-mix(in oklab, var(--border), transparent 25%); }
    .nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
    .logo-img { height: 36px; width: auto; border-radius: 8px; }
    .navlinks { display: flex; gap: 18px; align-items: center; }
    .navlinks a { color: var(--muted); text-decoration: none; font-weight: 500; position: relative; padding: 6px 2px; }
    .navlinks a::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 0; height: 2px; background: var(--teal); transition: width .25s ease; border-radius: 2px; }
    .navlinks a:hover { color: var(--teal); }
    .navlinks a:hover::after { width: 100%; }
    .menu-btn { display: none; }
    #themeToggle { padding: 8px 12px; border-radius: 999px; border: 1px solid var(--border); background: transparent; cursor: pointer; color: var(--text); }
    #themeToggle:hover { background: color-mix(in oklab, var(--teal), transparent 88%); }

    /* HERO */
    .hero { padding: 72px 0 36px; }
    .hero-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
    .hero h1 { font-size: clamp(28px, 4vw, 46px); line-height: 1.1; margin: 12px 0 16px; }
    .hero p.lead { color: var(--muted); font-size: clamp(15px, 2vw, 18px); }
    .hero .cta { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
    .hero-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--card); box-shadow: var(--shadow); }
    .hero-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }


    

    header {
        position: fixed; /* changed from sticky to fixed */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: color-mix(in oklab, var(--bg), transparent 95%);
        backdrop-filter: saturate(180%) blur(10px);
        border-bottom: 1px solid color-mix(in oklab, var(--border), transparent 25%);
    }


        /* Hero section button */
    .hero .btn {
        background-color: var(--teal);  /* dark teal for light theme */
        color: #0f0202;
        box-shadow: 0 8px 20px rgba(14,165,167,.25);
    }
    
    [data-theme='dark'] .hero .btn {
        background-color: #0ea5a7;  /* slightly lighter teal for dark theme */
        color: #0f172a;  /* dark text for contrast */
    }

    /* SECTIONS */
    section { padding: 70px 0; border-top: 1px solid color-mix(in oklab, var(--border), transparent 20%); }
    section .head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
    h2 { font-size: clamp(22px, 3vw, 32px); margin: 0; }
    p.sub { color: var(--muted); margin: 8px 0 0; }

    /* ABOUT */
    .about { grid-template-columns: 1fr 1fr; }
    .about .card { border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; background: var(--card); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
    .about .card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in oklab, var(--teal), transparent 45%); }
    .doc-photo { width: 100%; border-radius: 12px; margin-bottom: 14px; object-fit: scale-down; max-height: 240px; height: 100% }

    
    
    
    .left-transition {
      transform: translateX(-100px);
    }
    
    .right-transition {
      transform: translateX(100px);
    }
    


    .doctor-card {
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 1.2s ease, transform 1.2s ease,
                    box-shadow 0.8s ease, border-color 0.8s ease;
      }
      
      .doctor-card.visible {
        opacity: 1;
        transform: translateX(0);
      }
      
   
    


      
      .doctor-card:hover {
        transform: scale(1.5) translateY(-10px);
        box-shadow: var(--shadow);
        border-color: color-mix(in oklab, var(--teal), transparent 50%);
      }
      
      
    /* SERVICES */


    .service-section {
      opacity: 0;
      transform: translateX(0);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .service-section.left {
      transform: translateX(-100px);
    }

    .service-section.right {
      transform: translateX(100px);
    }
    .service-section.visible {
      opacity: 1;
      transform: translateX(0);
    }


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

.service {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service:hover {
  transform: scale(1.5) translateY(-10px);
  box-shadow: var(--shadow);
  border-color: color-mix(in oklab, var(--teal), transparent 50%);
}
.service h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.service p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  padding: 12px; /* Adds spacing inside card */
}

.service-card img {
  width: 100%;
  height: auto; /* Auto height to avoid cropping */
  max-height: 250px; /* Larger display area */
  object-fit: contain; /* Keeps full image visible */
  display: block;
  margin-bottom: 8px;
}
.service-card h3 {
  margin: 6px 0 4px;
  font-size: 16px; /* Slightly smaller to give more space for image */
  color: var(--teal);
}
.service-card p {
  padding: 0 8px 10px;
  font-size: 13px; /* Smaller text for compact look */
  color: var(--muted);
  line-height: 1.3;
}
@media(max-width:768px) {
  .service-card img {
    max-height: 180px; /* Smaller on mobile */
  }
}


    /* GALLERY */
    .gallery { grid-template-columns: repeat(3, 1fr); }
    .gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; border: 1px solid var(--border); transition: transform .25s ease, box-shadow .25s ease; }
    .gallery img:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow); }

    /* TESTIMONIALS */
    .testi { grid-template-columns: repeat(3, 1fr); }
    .quote { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; background: var(--card); position: relative; }
    .quote p { margin-top: 0; color: var(--muted); }
    .quote .name { margin-top: 12px; font-weight: 600; }

    /* CONTACT */
    /*
    .contact-wrap { grid-template-columns: 1.1fr .9fr; }
    form { display: grid; gap: 12px; }
    .field { display: grid; gap: 6px; }
    .field label { font-size: 14px; color: var(--muted); }
    .field input, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px; font-family: inherit; font-size: 15px; transition: border-color .2s ease, box-shadow .2s ease; background: color-mix(in oklab, var(--card), transparent 0%); color: var(--text); }
    .field input::placeholder, .field textarea::placeholder { color: color-mix(in oklab, var(--muted), transparent 25%); }
    .field input:focus, .field textarea:focus { outline: none; border-color: color-mix(in oklab, var(--teal), transparent 40%); box-shadow: 0 0 0 4px var(--ring); }

    .map { border: 0; width: 100%; height: 100%; min-height: 320px; border-radius: var(--radius); box-shadow: var(--shadow); }*/

    /* FOOTER */
    footer { padding: 36px 0 60px; border-top: 1px solid color-mix(in oklab, var(--border), transparent 20%); color: var(--muted); }
    .foot { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
    .foot a { color: var(--teal); text-decoration: none; }

    /* MOBILE */
    @media (max-width: 980px) {
      .hero-wrap, .about, .services, .testi, .contact-wrap, .foot { grid-template-columns: 1fr; }
      .gallery { grid-template-columns: repeat(2, 1fr); }
      .navlinks { display: none; }
      .menu-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid var(--border); border-radius: 12px; background: transparent; color: var(--text); }
      .mobile-menu { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); }
      .mobile-menu a { display: block; padding: 14px 20px; border-top: 1px solid color-mix(in oklab, var(--border), transparent 30%); color: var(--muted); text-decoration: none; }
      .mobile-menu a:hover { background: color-mix(in oklab, var(--teal), transparent 92%); color: var(--teal); }
      .header-actions { display: flex; align-items: center; gap: 10px; }
    }

    [data-theme='light'] .mobile-menu {
        background: rgba(255, 255, 255, 0.95); /* Light semi-transparent */
        color: var(--text);
      }
      
      [data-theme='dark'] .mobile-menu {
        background: rgba(0, 15, 43, 0.95); /* Dark semi-transparent */
        color: var(--text);
      }

    @media (max-width: 640px) {
      .gallery { grid-template-columns: 1fr; }
    }

            /* Default: hide mobile menu */
        .mobile-menu {
          display: none;
        }

        /* Show on screens smaller than 768px */
        @media (max-width: 768px) {
          .mobile-menu {
            display: none;
            flex-direction: column;
            width: 100%;
          }
          .mobile-menu.show {
            display: flex;
          }
        }

    /* SKIP LINK */
    .skip-link {
      position: absolute; left: -999px; top: -999px; background: var(--teal); color: #fff; padding: 8px 12px; border-radius: 8px;
    }
    .skip-link:focus { left: 12px; top: 12px; z-index: 100; }



      /* WHY CHOOSE US SECTION */
.why-choose {
  padding: 70px 0;
  border-top: 1px solid color-mix(in oklab, var(--border), transparent 20%);
}

.why-choose .head {
  text-align: center;
  margin-bottom: 36px;
}

.why-choose .head h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 8px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  list-style: none; /* Remove default bullets */
  padding: 0;
}

.why-list li {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding-left: 30px; /* space for custom bullet */
}

.why-list li::before {
  content: "•"; /* Custom bullet */
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 24px;
}



.why-list li p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}





/* CONTACT SECTION */
.contact-container {
    text-align: center;
    padding: 50px 20px;
    display: grid;
    gap: 30px;
  }
  
  .contact-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .contact-btn {
    display: inline-block;
    padding: 18px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid var(--teal); /* Added border */
    background: var(--button-bg); /* Variable for theme */
    color: var(--button-text);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  }

  
  :root {
    --button-bg: #ffffff; /* Light background */
    --button-text: #333333; /* Light text */
    --teal: #008080;
  }
  
  [data-theme="dark"] {
    --button-bg: #1e1e1e; /* Dark background */
    --button-text: #ffffff;
  }

.contact-btn.mobile-btn:hover {
    background: var(--teal);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-btn.mobile-btn i {
    font-size: 18px;
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-btn {
        display: none;
    }
}

  
  /* Desktop QR */
  .desktop-qr {
    text-align: center;
  }
  .desktop-qr img {
    width: 250px;
    max-width: 80%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    margin-top: 10px;
    transition: transform 0.3s ease;
  }
  .desktop-qr img:hover {
    transform: scale(1.05);
  }
  
  /* Contact Info + Map */
  .contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
  }
  .info-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    background: var(--card);
    box-shadow: var(--shadow);
    text-align: left;
  }
  .info-card h3 {
    margin-bottom: 10px;
  }
  .map-wrapper .map {
    border: 0;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .desktop-only {
      display: none;
    }
    .mobile-btn {
      display: inline-block;
    }
  
    .contact-info {
      grid-template-columns: 1fr;
    }
  }
  @media (min-width: 769px) {
    .mobile-btn {
      display: none;
    }
    .desktop-only {
      display: block;
    }
  }




/* UNIFIED CARD HOVER */
.card, .service, .service-card, .doctor-card, .why-list li, .info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    overflow: hidden;
  }
  
  .card:hover, 
  .service:hover, 
  .service-card:hover, 
  .doctor-card:hover, 
  .why-list li:hover, 
  .info-card:hover {
    transform: scale(1.05) translateY(-6px); /* unified movement */
    box-shadow: 0 12px 35px rgba(14,165,167,0.25); /* same shadow as service hover */
    border-color: color-mix(in oklab, var(--teal), transparent 50%);
    background: color-mix(in oklab, var(--card), var(--teal) 5%); /* subtle teal tint */
  }
  
  .card:hover h3,
  .service:hover h3,
  .service-card:hover h3,
  .doctor-card:hover h3,
  .why-list li:hover h3,
  .info-card:hover h3 {
    color: var(--teal);
  }

</style>