
    :root {
      --primary: #36546d;
      --secondary: #b8dce6;
      --light: #f5f8fa;
      --dark: #223645;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      font-size: 20px;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f7f9fb;
      color: #333;
      line-height: 1.8;
      font-size: 1rem;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    section {
      padding: 80px 0;
    }

    h1, h2, h3 {
      color: var(--primary);
      line-height: 1.3;
    }

    h1 { font-size: 4rem; }
    h2 { font-size: 2.6rem; }
    h3 { font-size: 1.7rem; }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
      font-size: 3rem;
    }

    /* --- NAVIGATION BAR --- */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #fff;
      box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    }

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

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

    .navbar nav {
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
    }

    .navbar a {
      text-decoration: none;
      color: var(--primary);
      font-weight: 600;
      font-size: 1.15rem;
    }

    /* --- HERO SECTION --- */
    .hero {
      background: linear-gradient(135deg, #36546d, #4f728a);
      color: #fff;
      padding: 100px 0;
    }/* Hide hamburger menu on desktop */
.menu-toggle {

    .hero-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 50px;
    }

    .hero-text {
      flex: 1;
      min-width: 300px;
    }

    .hero-text h1, .hero-text h2 { color: #fff; }
    .hero-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
    .hero-text p { font-size: 1.3rem; max-width: 700px; }

    .hero-img { flex: 1; text-align: center; }
    .hero-img img {
      width: 340px;
      height: 340px;
      object-fit: cover;
      border-radius: 50%;
      border: 8px solid rgba(255, 255, 255, .3);
    }

    /* --- LAYOUT CARDS & GRIDS --- */
    .card {
      background: #fff;
      border-radius: 18px;
      padding: 35px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    }

    .grid-2, .services, .gallery {
      display: grid;
      gap: 30px;
    }

    .grid-2/* Hide hamburger menu on desktop */
.menu-toggle { { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
    .services { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

    .service {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      font-weight: 600;
      font-size: 1.2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    }

    /* --- BASE LIST LAYOUT (Global Conditions/Insurance) --- */
    ul { list-style: none; }
    li { margin-bottom: 14px; font-size: 2.15rem; }
    li:before { content: "✓ "; color: #1f9c6d; font-weight: bold; }

    /* --- POST-COVID COMPLICATIONS SECTION (UPDATED) --- */
    .covid {
      background: var(--primary);
      color: #fff;
      border-radius: 25px;
      padding: 60px;
    }

    .covid h2 {
      color: #fff;
      text-align: center;
      font-size: 3rem; 
      margin-bottom: 50px;
    }

    .covid-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(320px, 450px)); /* Enforces 2-columns with generous text real-estate */
      justify-content: center;
      align-items: start;
      gap: 60px 80px;
      margin: 0 auto;
    }

    .covid-grid ul {
      margin: 0;
      padding: 0;
    }

    .covid-grid li {
      font-size: 1.85rem; /* Larger font size */
      font-weight: 500;
      line-height: 1.8;
      margin-bottom: 16px;
      text-align: left;
      display: flex;
      align-items: center;
    }

    /* Scope isolation to keep checkmarks running cleanly alongside the larger text sizes */
    .covid-grid li:before {
      content: "✓";
      color: #7be495;
      font-weight: 700;
      font-size: 2rem; 
      margin-right: 18px;
      display: inline-block;
      line-height: 1;
    }

    /* --- FACILITY & MAP --- */
    .gallery { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin-top: 40px; }
    .gallery img {
      width: 100%;
      height: 320px;
      object-fit: contain;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    }

    .location-map {
      display: block;
      width: 100%;
      max-width: 900px;
      margin: 30px auto;
      border-radius: 15px;
    }

    .btn-center { text-align: center; margin: 30px 0; }
    .insurance { background: #eef5f8; }

    /* --- CONTACT SECTION --- */

.contact {
    background-image: linear-gradient(rgba(34,54,69,.75), rgba(34,54,69,.75)), url("images/n1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
    .contact h2, .contact h3, .contact a { color: #fff; }
    .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
    .contact p { font-size: 1.15rem; margin-bottom: 10px; }


    /* --- BUTTONS & FOOTER --- */
    .btn {
      display: inline-block;
      background: #fff;
      color: var(--primary);
      padding: 16px 32px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.15rem;
      margin-top: 20px;
      transition: background-color 0.3s ease;
    }

    .btn:hover {
      background: var(--secondary);
    }

    footer {
      background: #203240;
      color: #fff;
      text-align: center;
      padding: 25px;
      font-size: 1rem;
    }


footer {
  background:
    linear-gradient(rgba(32, 50, 64, 0.75), rgba(32, 50, 64, 0.75)),
    url("images/n2.jpg") center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 40px 25px;
  font-size: 1rem;
}



    /* --- MEDIA QUERIES (MOBILE RESPONSIVENESS) --- */
    @media(max-width: 768px) {
      html { font-size: 18px; }
      .hero-text h1 { font-size: 2.8rem; }
      .hero-text h2 { font-size: 1.8rem; }
      .section-title { font-size: 2.2rem; }
      .navbar .container { flex-direction: column; gap: 15px; }
      .hero-img img { width: 260px; height: 260px; }
      
      /* Responsive fallbacks for the post-covid block elements */
      .covid {
        padding: 40px 20px;
      }
      .covid h2 {
        font-size: 2.2rem;
      }
      .covid-grid {
        grid-template-columns: 1fr; /* Safe collapse to single file row layouts on touch screens */
        justify-items: center;
        gap: 20px;
      }
      .covid-grid ul {
        width: 100%;
        max-width: 360px;
      }
      .covid-grid li {
        font-size: 1.5rem;
      }
    }
  


.hero {
    position: relative;
}

.hero-badge {
    position: absolute;
    right: 40px;
    bottom: 30px;
}

.hero-badge img {
    width: 180px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
}

/* Hide hamburger menu on desktop */
.menu-toggle {
    display: none;
}







