.social-media-section {
  display: none;
}
.hero-left .hero-content p{
    margin-top:15px;
}
.hero-container {
  gap: 120px;
}
.single-doctors .hero-section {
  height: 690px;
}
/* .single-doctors .hero-right-image img {
  margin-bottom: -65px;
} */
.hero-right-image img {
  width: auto;
}
.testimonials-section {
  margin-top: -300px;
  padding-top: 300px;
  padding-bottom: 80px;
}
.single-doctors .teams-slider-wrapper {
  margin: 70px auto;
  padding: 0 20px;
  max-width: 1200px;
}

.single-doctors .appointment-section {
  padding: 0px 20px 80px;
  background: transparent;
  z-index: 1;
  position: relative;
}

.single-doctors .social-media-section {
  display: none;
}

.teams-slider-header {
  margin-bottom: 30px;
}

/* Button wrapper */
.teams-slider-buttons {
  position: absolute;
  top: -90px;
  right: 60px;
  display: flex;
  gap: 10px;
  z-index: 20;
}

/* Arrow buttons */
.teams-slider-buttons .slider-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  bottom: 65px;
}

.teams-slider-wrapper .slider-btn.prev {
  right: 30px;
}
/* Hover */
.teams-slider-buttons .slider-btn:hover {
  opacity: 1;
}

.teams-slider-buttons {
  top: 15px;
  gap: 10px;
  right: 33px;
}

.team-card {
  height: 394px !important;
}

.cta-btn-section {
  display: flex;
  justify-content: center;
}

.team-awards-section {
  padding: 90px 0;
  background: #ffffff;
}

.team-awards-section .container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Row: Title + Intro */
.team-awards__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 50px;
}

.team-awards__title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  max-width: 420px;
  background: linear-gradient(135deg, #173a75 0%, #2c5aa0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-awards__intro {
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
  max-width: 520px;
  color: #4a5568;
  opacity: 0.95;
}

/* Logos Row */
.team-awards__logos {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin: 60px 0 80px;
  padding: 0 0 0 30px;
}

.team-awards__logo-item {
  flex-shrink: 0;
}

.team-awards__logo-item img {
  height: 72px;
  width: auto;
  display: block;
  opacity: 0.88;
  transition: all 0.3s ease;
  filter: grayscale(20%) brightness(1.1);
}

.team-awards__logo-item img:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter: grayscale(0%) brightness(1);
}

/* Bottom Row */
.team-awards__bottom {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
}

.team-awards__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.team-awards__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.team-awards__image:hover img {
  transform: scale(1.05);
}

/* Blue Content Box */
.team-awards__content-box {
  background: linear-gradient(145deg, #173a75 0%, #1e4a8a 100%);
  color: #ffffff;
  padding: 50px 40px;
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(23, 58, 117, 0.3);
  position: relative;
  overflow: hidden;
}

.team-awards__small-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.95;
}

.team-awards__big-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 22px;
  color: #ffffff;
}

.team-awards__text {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  opacity: 0.92;
}

@media (max-width: 1080px){
    .single-doctors .hero-section{
        height: auto;
    }
    .hero-cta-buttons {
    gap: 0 !important;
    display: flex;
    flex-direction: column !important;
}
}

/* Responsive */
@media (max-width: 991px) {
    .single-doctors .hero-section {
        height: auto !important;
        padding-block:50px;
    }
  .team-awards__top {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .team-awards__title {
    max-width: 100%;
    font-size: 34px;
  }

  .team-awards__bottom {
    grid-template-columns: 1fr;
  }

  .team-awards__image {
    border-radius: 20px;
  }

  .team-awards__content-box {
    border-radius: 20px;
    order: -1;
  }

  .team-awards__logos {
    justify-content: center;
    padding-left: 0;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .team-awards-section {
    padding: 60px 0;
  }

  .team-awards__content-box {
    padding: 35px 25px;
  }

  .team-awards__big-title {
    font-size: 24px;
  }

  .team-awards__logos {
    gap: 16px;
  }

  .team-awards__logo-item img {
    height: 55px;
  }
}

@media (max-width: 550px) {
  .single-doctors .teams-slider-buttons {
    top: 60px !important;
  }
}

@media (max-width: 411px) {
  .single-doctors .teams-slider-buttons {
    top: 85px !important;
    justify-content: left !important;
    left: -40px !important;
  }
}
