/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials-slider {
  margin-bottom: 40px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.testimonial-text-left h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.testimonial-text-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.read-more {
  color: #87cc46;
  font-weight: 600;
}

.testimonial-images-right {
  position: relative;
}

.images-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.image-item {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  background: #4a90e2;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.nav-arrow:hover {
  background: #6ba835;
}

.slider-dots-bottom {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #87cc46;
}
