    body {
      margin: 0;
      font-family: "Poppins", sans-serif;
      background: #fdfbf7;
      color: #333;
      scroll-behavior: smooth;
    }

    /* Navbar */
    .navbar {
      background: white;
      padding: 0.6rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 2px solid #f0e5d8;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      transition: padding 0.3s ease, box-shadow 0.3s ease;
    }
    .navbar.shrink {
      padding: 0.4rem 1.2rem;
      box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    }
    .navbar-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .navbar-left img {
      height: 45px;
      border-radius: 50%;
    }
    .logo-text {
      font-size: 1.3rem;
      font-weight: bold;
      color: #a67c00;
      line-height: 1.2;
    }
    .nav-info {
      font-size: 0.9rem;
      color: #555;
    }
    .appointment-btn {
      background: #a67c00;
      color: white;
      border: none;
      padding: 0.6rem 1.2rem;
      border-radius: 25px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .appointment-btn:hover {
      background: #8a6600;
      transform: scale(1.05);
    }
    .hamburger {
      display: none;
      font-size: 1.8rem;
      margin-left: 1rem;
      cursor: pointer;
    }

    /* Menu */
    .menu {
      display: flex;
      justify-content: center;
      gap: 2rem;
      background: #fff;
      padding: 0.8rem;
      border-bottom: 1px solid #eee;
    }
    .menu a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    .menu a.active,
    .menu a:hover {
      color: #a67c00;
    }

    /* Hero */
    .hero {
      position: relative;
      height: 80vh;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }
    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(60%);
    }
    .hero-overlay {
      position: absolute;
      text-align: center;
      color: white;
      animation: fadeIn 1.2s ease;
    }
    .hero-overlay h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
    }
    .hero-btn {
      background: #a67c00;
      color: white;
      border: none;
      padding: 0.9rem 1.6rem;
      border-radius: 25px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .hero-btn:hover {
      background: #8a6600;
      transform: scale(1.05);
    }

    /* Appointment */
    .appointment {
      display: flex;
      justify-content: center;
      margin-top: -80px;
      z-index: 5;
      position: relative;
    }
    .appointment-card {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0px 6px 20px rgba(0,0,0,0.2);
      width: 90%;
      max-width: 500px;
      animation: fadeIn 1s ease;
    }
    .appointment-form input {
      width: 100%;
      padding: 0.8rem;
      margin: 0.6rem 0;
      border: 1px solid #ddd;
      border-radius: 8px;
    }
    .appointment-form button {
      width: 100%;
      padding: 0.8rem;
      background: #a67c00;
      color: white;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .appointment-form button:hover {
      background: #8a6600;
    }

    /* Services */
    
/* Modal */ .modal { display: none; 
  position: fixed;
   top: 0; left: 0;
    width: 100%; height: 100%; 
    background: rgba(0,0,0,0.7);
     justify-content: center;
      align-items: center; 
      z-index: 2000; } 
    .modal-content { 
      background: white; 
      padding: 2rem; 
      border-radius: 12px;
       max-width: 600px; width: 90%; 
       text-align: center; animation: zoomIn 0.3s ease;
       }
        .modal-content img { width: 100%; 
          border-radius: 10px; margin-bottom: 1rem; }
           .close-btn { 
            margin-top: 1rem; 
            padding: 0.6rem 1.2rem; 
            background: #a67c00; 
            color: white; border: none; 
            border-radius: 25px; cursor: pointer;
}
    .services {
      padding: 4rem 2rem;
      text-align: center;
      background: linear-gradient(135deg, #fffdf7, #f3efe6);
    }
    .service-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      animation: fadeIn 1.2s ease;
    }
    .card:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0px 6px 18px rgba(0,0,0,0.15);
    }
    .card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      
    }
    
    .card h3 {
      padding: 1rem;
      color: #a67c00;
    }
    

    /* Doctor */
    .doctor {
      padding: 4rem 2rem;
      text-align: center;
      background: linear-gradient(135deg, #fafafa, #f4f2ec);
    }
   .doctor-img {
  width: 360px;
  height: 360px;
  border-radius: 50%; /* makes it circular */
  object-fit: cover; /* ensures the face/image fits nicely */
  border: 4px solid #fff;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  margin-bottom: 1.5rem;

}

    .doctor-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: white;
      padding: 2rem;
      border-radius: 12px;
      max-width: 700px;
      margin: 0 auto;
      box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
      animation: fadeIn 1.2s ease;
    }.gallery {
  padding: 3rem 2rem;
  text-align: center;
  background: #fafafa;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: 600;
}

/* Limit container width */
.gallery-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;  /* spacing between images */
  flex-wrap: wrap;
  max-width: 1100px;   /* ✅ keeps images closer */
  margin: 0 auto;      /* ✅ centers the grid */
}

.gallery-grid img {
  width: 100%;
  max-width: 480px;  /* ✅ makes both images bigger */
  border-radius: 12px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0px 12px 28px rgba(0,0,0,0.25);
}



    /* Contact */
    .contact {
      padding: 3rem 2rem;
      text-align: center;
      background: linear-gradient(135deg, #fffefb, #f9f5ec);
    }
    .contact-info {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    .info-box {
      background: white;
      padding: 1.2rem;
      border-radius: 12px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
      width: 250px;
    }

    .map-container {
      margin-top: 2rem;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    }
    .map-container iframe {
      width: 100%;
      height: 400px;
      border: none;
    }

    /* Footer */
    footer {
      background: #a67c00;
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes zoomIn {
      from { transform: scale(0.7); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-info { display: none; }
      .hamburger { display: block; }
      .menu { display: none; flex-direction: column; gap: 1rem; }
      .menu.show { display: flex; }
    }
    .hero {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(65%);
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-img.active {
  opacity: 1;
}

.hero-overlay {
  position: relative;
  text-align: center;
  color: white;
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
}
.stat-box h2 {
  font-size: 2rem;
  color: #c59d5f;
}
.stat-box p {
  margin-top: 10px;
  font-weight: 500;
}
.choose-us {
  padding: 60px 20px;
  text-align: center;
}
.choose-us h2 {
  margin-bottom: 30px;
  color: #333;
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.choose-grid img {
  width: 60px;
  margin-bottom: 10px;
}
.gallery {
  padding: 50px 20px;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.cta {
  padding: 60px 20px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/clinic2.jpg') center/cover no-repeat;
  text-align: center;
  color: white;
}
.cta h2 {
  margin-bottom: 15px;
}
.cta .btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #c59d5f;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}
