/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

/* Team Section */
.team-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 50px;
  text-align: center;
}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.team-section p {
  color: #555;
  margin-bottom: 40px;
}

/* Doctor Card */
.doctor-card {
  display: flex;
  align-items: center;
  background: #0099ff;
  color: #fff;
  padding: 90px; /* increased for taller card */
  border-radius: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.doctor-card:hover {
  transform: translateY(-5px); /* subtle hover effect */
}

/* Doctor Image */
.doctor-card img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-right: 20px;
}

/* Doctor Info */
.doctor-info {
  flex: 1;
  text-align: left;
  min-width: 250px;
}



.doctor-info h3 {
  margin: 0;
  font-size: 1.5rem;
}

.doctor-info p {
  margin: 10px 0 20px;
  font-size: 0.95rem;
  color: #f0f0f0;
}

.doctor-info button {
  background: #fff;
  color: #0099ff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.doctor-info button:hover {
  background: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .doctor-card {
    flex-direction: column;
    text-align: center;
  }

  .doctor-card img {
    margin: 0 0 15px 0;
  }

  .doctor-info {
    text-align: center;
  }
}




















































/* hero */

