#testimoni {
  background: #f8f9fa;
}

.testimoni-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

.rating {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimoni-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--gray);
}

.testimoni-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimoni-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimoni-author h5 {
  margin: 0;
  font-weight: 600;
}

.testimoni-author span {
  color: var(--gray);
  font-size: 0.9rem;
}

.gallery-slider {
  overflow: hidden;
  margin-top: 40px;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: scrollGallery 30s linear infinite;
}

.gallery-track img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-track img {
  transition: 0.4s;
}

.gallery-track img:hover {
  transform: translateY(-8px);
}
