/* All slides default 
.swiper-slide {
    opacity: 0.5; /* less visible 
    transition: opacity 0.3s ease;
}*/

/* Active slide fully visible 
.swiper-slide-active {
    opacity: 1;
}*/

.testimonial-right .testimonial-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem; /* spacing between fields */
}

.testimonial-right .testimonial-details .company {
    font-weight: 500;
    color: #5BD0F4;
}

.testimonial-right .testimonial-details h4 {
    margin: 0;
    font-weight: 700;
}

.testimonial-right .testimonial-details .position {
    color: #fff;
    margin: 0;
}
.testimonial-right .testimonial-details .full-name {
    font-weight: 500;
    color: #fff;
}

.testimonial-details-wrapper {
    display: flex;
    justify-content: space-between; /* details left, button right */
    align-items: flex-end;
    gap: 1rem;
    margin-top: auto; /* pushes it to the bottom */
}

.testimonial-details h4,
.testimonial-details p {
    margin: 0;
}

.btn.outline {
    white-space: nowrap; /* keep text on one line */
}

.testimonial-slider .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.5;
}

.testimonial-slider .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.testimonial-footer {
    max-width: 1340px;
    margin: auto;
    justify-content: center;
}
.testimonial-slider {
  overflow-x: hidden;
  margin:2rem 0;
}

.testimonial-slider .testimonial-footer .testimonial-navigation{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: unset;
  object-fit: unset;
  transform-origin: unset;
  width: unset;
  top: unset;
}

.testimonial-navigation .swiper-button-prev {
  right: 40px;
  left: auto;
  width: 42px;
  height: 42px;
}
.testimonial-navigation .swiper-button-next {
    right: -10px;
    left: auto;
    width: 42px;
    height: 42px;
}

@media (max-width:767px){
  
  .testimonial-details-wrapper {
    align-items: start !important;
    gap: 2rem !important;
    flex-direction: column;
}
.testimonial-navigation .swiper-button-prev {
  right: 60px;
}
.testimonial-navigation .swiper-button-next {
    right: 0;
}
  .testimonial-footer {
    margin: 0 2rem;
}
}

/* Hide default Swiper arrows */
.swiper-button-next:after,
.swiper-button-prev:after {
    display: none !important;
}

@media (max-width: 430px){
.testimonial-slider .swiper-slide .avatar{
max-width:250px !important;
  
  }
}

/* When there's no avatar, make testimonial-right full width */
.swiper-slide.no-avatar .testimonial-slide-inner {
    justify-content: center;
}

.swiper-slide.no-avatar .testimonial-right {
    flex: 1 1 100%;
    max-width: 100%;
}

/* Ensure testimonial-left doesn't appear when there's no avatar */
.swiper-slide.no-avatar .testimonial-left {
    display: none;
}

/* When there's no avatar, make testimonial-right full width */
.swiper-slide.no-avatar .testimonial-slide-inner {
    justify-content: center;
}

.swiper-slide.no-avatar .testimonial-right {
    flex: 1 1 100%;
    max-width: 100%;
}

/* Ensure testimonial-left doesn't appear when there's no avatar */
.swiper-slide.no-avatar .testimonial-left {
    display: none;
}

