.container-testimonial {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
}

/* Left Section - Static content */
.left-section {
  flex: 0 0 35%;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.intro-text {
  color: #2d2d2d;
}

.thumbnails-section {
  display: flex;
  gap: 15px;
}

.thumbnail {
  width: 120px;
  height: 150px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  object-fit: cover;
}

.thumbnail.active {
  opacity: 1;
}

.slide-block {
  position: relative;
}

/* Right Section - Slider content */
.right-section {
  flex: 0 0 65%;
  position: relative;
}

.slide-block {
  overflow: hidden;

}

.swiper-container {
  width: 100%;
}

.slide-content {
  display: flex;
  width: 100%;
}

.image-container {
  width: 40%;
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
}

.content-container {
  width: 60%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.employee-name {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 5px;
}

.employee-designation {
  margin-bottom: 5px !important;
  color: #2d2d2d;
  font-weight: 600;
}

.employee-quote {
  font-size: 14px !important;
  /* line-height: 22px !important; */
  color: #2d2d2d !important;
}
.intro-text{font-size: 14px;}

.navigation-buttons {
  position: absolute;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: fit-content;
  left: 310px;
}


.container-testimonial .nav-button {
  width: 40px;
  height: 40px;
  background-color: #85a93f;
  color: white;
  border: none;
  margin-left: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 10px;
  position: absolute;
  border-radius: 0px;

}

.container-testimonial .nav-button:hover {
  background-color: #6d8c33;
}

.container-testimonial .swiper-button-prev:after,
.container-testimonial .swiper-rtl .swiper-button-next:after,
.container-testimonial .swiper-button-next:after,
.container-testimonial .swiper-rtl .swiper-button-prev:after {
  font-size: 10px;
}

.testimonial-heading h2 {
  font-size: 32px;
  /* line-height:42px; */
}

@media(min-width:768px) {
  .container-testimonial .nav-button {
    bottom: 0;
    top: auto;
  }

  .container-testimonial button.nav-button.swiper-button-next {
    right: auto;
    left: 390px;
  }

  .container-testimonial button.nav-button.swiper-button-prev {
    right: auto;
    left: 340px;
  }
}

@media(max-width:767.9px) {
  .container-testimonial {
    display: block;
  }

  .thumbnails-section {
    display: none;
  }

  .content-container,
  .right-section,
  .left-section {
    width: 100% !important;
    padding: 0;
  }

  .container-testimonial .slide-content {
    display: block;
  }

  .container-testimonial .image-container,
  .container-testimonial .slide-content img {
    width: 100%;
  }
}

