/* ===== Doctor Section ===== */
.doctor-heading {
  text-align: center;
  margin-bottom: 40px; /* Increased spacing */
  font-size: 36px;     /* Larger heading */
  font-weight: 700;
}

.doctor-card {
  background: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 20px; /* Rounder corners for larger card */
  padding: 24px;       /* Increased internal padding */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  
  /* --- INCREASED SIZE HERE --- */
  width: 100%;
  max-width: 450px;    /* Increased from 320px */
  height: auto;
}

.doctor-container {
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 20px;          /* More space between image and text */
}

.doctor-image {
  width: 100%;        /* Image will now fill the 450px width */
}

.doctor-image img {
  width: 100%;
  height: auto;
  border-radius: 15px; 
  display: block;
  object-fit: cover;
}

.doctor-content {
  text-align: center;
  width: 100%;
}

.doctor-content h4 {
  /* --- INCREASED FONT SIZE --- */
  font-size: 28px;    
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.doctor-content p {
  /* --- INCREASED FONT SIZE --- */
  font-size: 18px;    
  line-height: 1.5;
  /*color: #555;*/
  color: #000000;
}

/* Maintain center alignment */
@media (min-width: 1200px) {
  .col-xl-6:first-child .doctor-card {
    margin-left: auto;   
    margin-right: 20px;  
  }

  .col-xl-6:last-child .doctor-card {
    margin-right: auto;  
    margin-left: 20px;   
  }
}

@media (max-width: 1199px) {
  .doctor-card {
    margin: 0 auto 30px auto;
  }
}