.programs-testimonies-section {
  width: 100%;
  padding: 4vh 3vw;
  margin: 0 auto;
  background: #1e293b;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
  margin-top: 10vh;
}

.programs-testimonies-container {
  width: 100%;
  padding: 2vh 2vw;
  display: flex;
}

.programs-testimonies-content {
  display: block;
  width: 30%;
  padding: 0 2vw;
}

.programs-testimonies-title {
  font-size: 2.7rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  width: 100%;
  line-height: 1.2;
}

.programs-testimonies-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 2rem;
  width: 100%;
}

.programs-testimonies-services {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  height: 100%;
}

.programs-testimonies {
  /* width: 100%; */
  background-color: #fff;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.programs-testimonies-user-info {
  display: flex;
  padding: 1vh 1vw;
  background-color: #f8f8f8;
  overflow: hidden;
  position: relative;
  align-items: center;
}

.programs-testimonies-user-info svg {
  position: absolute;
  top: 0;
  right: 0;
  margin: 3px 3px 0 0;
  width: 1.5rem;
  height: 1.5rem;
}

.programs-testimonies-user-image {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 10px;
}

.programs-testimonies-user-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programs-testimonies-user-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
}

.programs-testimonies-desc {
  padding: 1vh 1vw;
  font-size: 1rem;
  line-height: 1.5;
  color: #1e293b;
}

.carousel-prev,
.carousel-next {
  background: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: none;
}

.carousel-prev.disabled,
.carousel-next.disabled {
  background: #f0f0f0;
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}


.carousel-prev {
  left: 0px;
}

.carousel-next {
  right: 0px;
}

.programs-testimonies-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.programs-testimonies-carousel-container {
  position: relative;
  width: 70%;
}

@media screen and (max-width: 768px) {
  
  .programs-testimonies-container {
    display: block;
  }
  
  .programs-testimonies-content {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .programs-testimonies-services {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .programs-testimonies-carousel-container {
    width: 100%;
    display: flex;
    align-items: center;
  }
}