/* ===== DOCTORS SECTION ===== */
.doctors {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 550px; /* same as hero */
  padding: 5px 3.5%;
  margin: 10px 3.5% 0;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(246, 248, 255, 1), rgba(255, 255, 255, 1));
  direction: rtl;   /* 🔑 set direction to right-to-left */
}

.doctor-card {
  text-align: center;
  flex: 0 0 40%;
}

.doctor-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #374151;
}

.doctor-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f9a8d4; /* matches accent */
  box-shadow: 0 6px 18px rgba(249, 168, 212, 0.35);
}

.doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-title {
  font-size: 16px;
  color: #6b7280;
  max-width: 200px;
  margin: auto;
}

 .doctors-top h1 {
      font-size: clamp(28px, 4vw, 44px);
      margin-bottom: 10px;
      margin-top: 1px;
    }

/* Responsive */
@media (max-width: 900px) {
  .doctors {
    flex-direction: column;
    height: auto;
    padding: 40px 3.5%;
  }

  .doctor-card {
    flex: unset;
    margin-bottom: 30px;
  }
}