/* SECTION */
#doctor-profile {
  padding: 60px 0;
    border-radius: 25px;
}

/* TOP LAYOUT */
.doctor__top {
  display: flex;
  height: 350px;
      border-radius: 15px;
    overflow: hidden;

}

/* LEFT IMAGE */
.doctor__image {
  width: 35%;
  
}

.doctor__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* RIGHT BANNER */
.doctor__banner {
  width: 65%;
  background: url('bg.jpg') center/cover no-repeat;
  position: relative;
}

/* OVERLAY */
.doctor__overlay {
  background: #4561ae;
  height: 100%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

/* TEXT */
.doctor__name {
  font-size: 32px;
  font-weight: 700;
}

.doctor__title {
  font-size: 18px;
  margin: 10px 0;
}

.doctor__qualification {
  font-size: 16px;
  opacity: 0.9;
}

/* BOTTOM LAYOUT */
.doctor__bottom {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
}

/* LEFT INFO BOX */
.doctor__info {
  width: 35%;
  background: #f1f5f9;
  padding: 30px;
}

/* HEADINGS */
.doctor__heading {
  color: #1d4ed8;
  font-weight: 600;
  margin-bottom: 10px;
}

.doctor__heading--space {
  margin-top: 25px;
}

/* LIST */
.doctor__list {
  padding-left: 18px;
}

.doctor__list li {
  margin-bottom: 6px;
  color: black;
}

.doctor__list li::marker {
  color: #2563eb;
}

/* RIGHT CONTENT */
.doctor__content {
  width: 65%;
  padding: 30px;
}

.doctor__content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: black;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .doctor__top,
  .doctor__bottom {
    flex-direction: column;
    height: auto;
  }

  .doctor__image,
  .doctor__banner,
  .doctor__info,
  .doctor__content {
    width: 100%;
  }

  .doctor__overlay {
    padding: 30px;
  }
}