.doctor-section {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 0;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
}

.doctor-card {
  background-color: #fff;
  height: fit-content;
  color: blue;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  width: 350px;
  text-align: left;
  transition: all 0.3s ease;
    
}

.doctor-card h2 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.doctor-card p {
  margin: 5px 0;
  font-size: 16px;
  /*color: black;*/
  color: black !important;
}

/*.doctor-card:hover {*/
/*  transform: translateY(-6px);*/
/*  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);*/
/*  background-color: #0052a3; */
/*}*/