@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.doc{
    text-align: center;
     font-family: "Roboto", sans-serif;
     margin-top: 2%;
     width: 80%;
     margin-left: 10%;
}

.doctors-profiles {
  padding: 80px 0;
  background: #f8f9fa;
}
.doctor-profile {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease;
}
.doctor-profile:hover {
  transform: translateY(-5px);
}
.doctor-profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
}
.doctor-profile h4 {
  color: #9c4971;
  font-size: 24px;
  margin-bottom: 10px;
}
.doctor-profile h5 {
  color: #666;
  font-size: 18px;
  margin-bottom: 20px;
}
.doctor-profile p {
  text-align: justify;
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}
@media (max-width: 768px) {
  .doctor-profile {
    margin-bottom: 30px;
  }
}
