/* Doctor Section — శ్రీ రామా హోమియో క్లినిక్ Theme */
.dr1043doctors {
  background: linear-gradient(135deg, #f0fdf4, #ffffff, #fefce8);
  padding: 80px 20px;
  font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
  border-radius: 20px;
  color: #064e3b;
  position: relative;
  overflow: hidden;
}

/* Subtle Healing Glow */
.dr1043doctors::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16,185,129,0.12), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.doctors-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.doctors-title {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(to right, #047857, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  text-shadow: 0 2px 6px rgba(4, 120, 87, 0.1);
}

.doctors-subtitle {
  font-size: 1.1rem;
  color: #065f46;
  margin-bottom: 40px;
  font-style: italic;
}

/* Doctor Card */
.doctor-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(4, 120, 87, 0.08);
  transition: all 0.3s ease;
  border-top: 5px solid #10b981;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(4, 120, 87, 0.15);
  border-top-color: #f59e0b; /* golden accent */
}

.doctor-photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  margin-bottom: 15px;
  border: 4px solid #10b981;
}

.doctor-header h3 {
  font-size: 1.5rem;
  color: #047857;
  margin-bottom: 6px;
}

.doctor-header span {
  font-size: 1rem;
  color: #f59e0b; /* saffron-gold */
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
}

.doctor-content ul {
  text-align: left;
  list-style: disc;
  padding-left: 25px;
  line-height: 1.6;
  color: #374151;
}

/* Action Buttons */
.doctor-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.whatsapp-btn,
.call-btn {
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
}

.whatsapp-btn {
  background: linear-gradient(45deg, #10b981, #16a34a);
}

.call-btn {
  background: linear-gradient(45deg, #f59e0b, #dc2626);
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Awards Section ===== */
.awards-section {
  margin-top: 50px;
  text-align: center;
}

.awards-title {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(to right, #047857, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.awards-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  color: #374151;
  font-size: 1rem;
  line-height: 1.7;
  transition: max-height 0.5s ease;
  overflow: hidden;
}

.awards-list li {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 15px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(4, 120, 87, 0.08);
  border-left: 4px solid #10b981;
}

.awards-list.collapsed {
  max-height: 90px;
}

.toggle-btn {
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  background: linear-gradient(45deg, #047857, #10b981);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(4, 120, 87, 0.3);
}