/* ---------- Breadcrumb ---------- */
.banner-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.banner-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.banner-breadcrumb .breadcrumb-item a:hover {
  color: #ffc107;
}

.banner-breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

/* ---------- Doctor Banner ---------- */
.doctor-banner {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-bottom: 4px solid #233064;
}

.doctor-banner .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}

.banner-name {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-speciality {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0.9;
}

/* ---------- Doctor Profile Section ---------- */
.container.doctor-profile {
  max-width: 1000px;
}

/* Larger horizontal gap between columns */
.doctor-profile .row {
  --bs-gutter-x: 3.5rem; /* Increased from 2rem to 3.5rem */
}

/* Doctor Card */
.doctor-card {
  border-radius: 10px;
  overflow: hidden;
}

.doctor-card .card-img-top {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* “Call Us” Button Styling */
.btn.btn-primary {
  background-color: #233064;
  border: none;
  font-weight: 600;
}

.btn.btn-primary:hover {
  background-color: #1b2450;
}

/* Right Column (Doctor Details) */
.doctor-details {
  height: auto;
  overflow-y: visible;
  padding-left: 3rem; /* increased spacing between left and right */
}

.doctor-details h2 {
  font-weight: 700;
  color: #233064;
}

.doctor-details h5 {
  color: #233064;
  font-weight: 700;
  margin-top: 1.5rem;
}

.doctor-details ul {
  margin-left: 1.25rem;
}

.doctor-details ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 991px) {
  .doctor-details {
    padding-left: 1.5rem;
  }
}

@media (max-width: 767px) {
  .doctor-banner {
    height: 260px;
  }

  .banner-name {
    font-size: 1.8rem;
  }

  .banner-speciality {
    font-size: 1rem;
  }

  .doctor-details {
    padding-left: 0;
    margin-top: 1.5rem;
  }

  .doctor-card .card-img-top {
    height: 300px;
  }
}

/* ---------- Call-To-Action Section (Full Width) ---------- */
.doctor-cta-section {
  background: linear-gradient(135deg, #233064d7, #1b2450ad);
  color: #fff;
  border-top: 4px solid #ffc107;
  border-radius: 0;
  width: 100%;
}

.doctor-cta-section .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cta-text {
  font-size: 1.1rem;
  opacity: 0.9;
}

.doctor-cta-section .btn.btn-primary {
  background-color: #ffc107;
  border: none;
  color: #233064;
  font-weight: 700;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.doctor-cta-section .btn.btn-primary:hover {
  background-color: #ffdb4d;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 767px) {
  .cta-heading {
    font-size: 1.5rem;
  }

  .cta-text {
    font-size: 1rem;
  }
}
