.coach-section {
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  margin-bottom: -2rem !important;
  min-height: 300px;
  display: flex;
  align-items: center;
  z-index: 5;
  margin-top: -1rem;
}

.container-fluid.px-0 {
  padding-left: 0;
  padding-right: 0;
  max-width: 1320px;
  margin: 0 auto;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.coach-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.coach-text-container {
  max-width: 50%;
  padding-right: 2rem;
  margin-left: 20px;
}

.section-subtitle {
  color: #ff7900;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: none;
}


.coach-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: #ffffff;
}


.coach-label {
  color: #ff7900;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}


.coach-description {
  color: #ffffff;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  max-width: 90%;
  font-weight: bold;
}

.coach-btn a {
  display: inline-block;
  background-color: #ff7900;
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

.coach-btn a:hover {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #ff7900;
}

/* Image */

.coach-image-wrapper {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  height: 450px;
  align-items: center;
  margin-right: 20px;
}

.coach-image-container {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}


.coach-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  object-position: center top;
}

@media (max-width: 991.98px) {
  .coach-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .coach-section {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

  /* Hide carousel arrows on tablet */
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  /* Remove px-5 mt-n5 from container on tablet */
  .container-lg.body.mx-auto.px-5.mt-n5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: -32px !important;
  }
}

@media (max-width: 767.98px) {
  .coach-text-container,
  .coach-image-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    margin-top: 20px;
  }

  .coach-text-container {
    margin-left: 0;
  }

  .coach-image-wrapper {
    margin-top: 2rem;
    height: 350px;
    margin-right: 0;
  }

  .coach-title {
    font-size: 2rem;
  }

  .coach-section {
    padding: 2rem 0;
    min-height: auto;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

  .coach-section .container-fluid {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .coach-content-wrapper {
    padding: 0 1rem;
    flex-direction: column;
    width: 100%;
  }

  .coach-description {
    max-width: 100%;
  }

  /* Hide carousel arrows on mobile */
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  /* Remove px-5 mt-n5 from container on mobile */
  .container-lg.body.mx-auto.px-5.mt-n5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: -23px !important;
  }
}