@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&display=swap');

body {
  font-family: 'Baloo Bhai 2', cursive;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #ECF0F1;
  color: #000;
  font-size: 18px;
}

header {
  background-color: #2C3E50;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  width: 50px;
  height: 50px;
}

.contact-info {
  display: flex;
  gap: 10px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
}

/* ========== NAVBAR STYLING ========== */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  background-color: #2980B9;
  padding: 10px 15px;
  border-radius: 5px;
  margin: 10px;
}

nav {
  background-color: #2980B9;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav ul li {
  display: inline;
}

nav ul li a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}


/* ========== HERO ========== */
.hero {
  background: linear-gradient(90deg, #3498DB 0%, #2980B9 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 24px;
}

/* ========== SERVICES SECTION ========== */
section {
  padding: 40px 20px;
  text-align: center;
}

#services_list {
    margin: 0 auto;
    padding: 0;
    text-align: left;
    max-width: 400px; 
  }
  
  #services_list ol {
    padding-left: 20px; /* gives space to the numbers */
  }
  
  .services_listitem {
    text-align: left; 
    margin-bottom: 10px; /* spacing between items */
    font-size: 16px; 
  }

section h3 {
  color: #2C3E50;
  margin-bottom: 20px;
}

section p {
  max-width: 600px;
  margin: 0 auto 20px auto;
}

/* ========== DOCTORS SECTION ========== */
.doctors-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.doctor-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  width: 250px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.doctor-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.doctor-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.doctor-card h4 {
  margin-top: 10px;
  margin-bottom: 5px;
  color: #2980B9;
}

/* ========== FOOTER ========== */
footer {
  background-color: #2C3E50;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #E74C3C;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
/* ========== RESPONSIVE NAV ========== */
@media (max-width: 768px) {
    /* Show hamburger menu */
    .menu-toggle {
      display: block;
    }
  
    nav ul {
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 0;
      display: none;
      width: 100%;
      background-color: #2980B9;
      padding: 0;
    }
  
    nav ul li {
      width: 100%;
      text-align: center;
      padding: 15px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
  
    nav ul li:first-child {
      border-top: none;
    }
  
    /* When navbar has class 'active', show menu */
    nav.active ul {
      display: flex;
    }
  }
  
