
* { box-sizing: border-box; }
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color:aqua;

}
h3{
  font-size-adjust: calc(2);
  color: crimson;
}
header {
  background: #005baa;
  color: #fff;
  text-align: center;
  padding: 30px 20px 20px;
}

header img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
object-position: top center; 
margin-bottom: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

header h1 {
  margin: 5px 0;
  font-size: 26px;
}
header p {
  margin: 0;
  font-size: 16px;
}
.appointment-btn {
  display: inline-block;
  margin-top: 15px;
  background: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}
.location-btn {
  display: inline-block;
  margin-top: 15px;
  background: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
.container {
  padding: 20px;
  max-width: 480px;
  margin: auto;
}
.section-title {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 10px;
  color:greenyellow;

}
.disease-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px; 
margin: 25px;
}

.disease-item {
text-align: justify;
border: 10px solid #ddd;
border-radius: 10px;
padding:20px; 
background:#005baa;
}

.disease-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}
.disease-item p {
  margin: 6px 0 0;
  font-weight: bold;
  font-size: 15px;
}
.contact-box {
  background-color: crimson;
  padding: 20px;
  margin-top: 30px;
  border-radius: 10px;
  text-align: center;
  color: #000;
}
.contact-box a.whatsapp-btn {
  display: inline-block;
  margin: 10px 0;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.contact-box a.call-link {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: #005baa;
  text-decoration: none;
}
.doctor-image {
  margin-top: 25px;
  text-align: center;
}
.doctor-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
}
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
}
