.doctors-section {
    background: #f4fafa;
    padding: 50px 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .section-heading {
    font-size: 18px;
    color: #148060;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: center;
  }
  
  .section-subheading {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .section-subheading span {
    color: #2f3e46;
  }
  
  .doctor-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .doctor-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  
  .doctor-card:hover {
    transform: translateY(-5px);
  }
  
  .doctor-img-new {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
  }
  
  .doctor-img-new img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }
  
  .doctor-info {
    padding: 20px;
    text-align: center;
  }
  
  .doctor-name {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin: 10px 0 5px 0;
  }
  
  .qualification {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
  }
  
  .specialization {
    display: inline-block;
    background-color: #148060;
    color: white;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 15px;
    margin: 10px 0;
  }
  
  .location {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
  }
  
  .location i {
    margin-right: 5px;
    color: #148060;
  }
  
  .recommended {
    color: #148060;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
  }
  
  .recommended i {
    margin-right: 5px;
  }
  
  .view-all {
    margin-top: 30px;
    text-align: right;
  }
  
  .view-all-btn {
    background: #e8f6f2;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .view-all-btn:hover {
    background: #148060;
    color: #fff;
  }
  