.testimonial-section {
  display: flex;
  justify-content: space-between;
  /* padding: 40px; */
  font-family: Arial, sans-serif;
}

.testimonial-header {
  max-width: 30%;
}

.testimonial-header h2 {
  font-size: 36px;
  line-height: 1.2;
}

.testimonial-header h2 span {
  font-weight: bold;
}

.testimonial-header p {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 16px;
}

.testimonial-nav {
  margin-top: 20px;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border: 2px solid #00ab9f;
  border-radius: 50%;
  font-size: 18px;
  margin-right: 10px;
  background: white;
  cursor: pointer;
}

.view-more {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  border: 2px solid #00ab9f;
  border-radius: 30px;
  color: #00ab9f;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.testimonial-carousel-wrapper {
  width: 65%;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  background: #00ab9f0a;
  border: 1px solid #00ab9f0a;
  border-radius: 20px;
  padding: 20px;
  margin-right: 20px;
  min-width: 350px;
  max-width: 350px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex-shrink: 0;
  text-align: left;
}

.testimonial-item-odd {
    background: linear-gradient(0deg, #ffffff, #00ab9f50 100%) no-repeat;
}
.testimonial-item-even {
    background: linear-gradient(0deg, #00ab9f50, #ffffff 100%) no-repeat;
}

.testimonial-item img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.testimonial-item h3 {
  margin: 10px 0 5px;
}

.testimonial-item .title, .viewtestimonial .title {
  color: #00ab9f;
  font-weight: bold;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-header,
  .testimonial-carousel-wrapper {
    width: 100%;
    max-width: 100%;
  }
}

.testimonial-notFound {
    text-align: center;
    position: relative;
    top: 50%;
    color: #00ab9f;
}

.viewtestimonial .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}
.viewtestimonial .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 750px;
    max-height: 500px;
    /* overflow-y: auto; */
    border-radius: 10px;
    position: relative;
}
.viewtestimonial .close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
}
.viewtestimonial p#modalTestimony {
    overflow-y: auto;
    padding: 12px;
    /* border: 1px solid #6A6A6A; */
    border-radius: 10px;
    text-align: justify;
    box-shadow: rgba(0, 171, 159, 0.31) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}