/* Banner Section */
.doctor-banner-section {
  background-color: #f9f9fb;
}

.doctor-banner-section h1 {
  color: #233064;
  font-size: 2.5rem;
  font-weight: 700;
}

/* Team Section */
.team-section .card-img-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.team-section .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.team-section .card:hover .card-img-top {
  transform: scale(1.06);
}

/* Workflow Cards */
.workflow-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.workflow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 2rem rgba(35, 48, 100, 0.15);
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .doctor-banner-section .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .doctor-banner-section img {
    max-height: 280px;
  }

  .team-section .card-img-wrapper {
    height: 220px;
  }
}
