* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
}

/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
  background: url("https://i.ibb.co/Zb1Pp9k/testimonial.jpg") center/cover no-repeat;
  padding: 80px 8%;
  position: relative;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 30, 0.9);
}

.testimonial-container {
  position: relative;
  max-width: 900px;
}

.testimonial-title {
  font-size: 26px;
  margin-bottom: 30px;
}

/* ================= SLIDER ================= */
.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.7s ease;
}

/* Show TWO cards */
.testimonial {
  flex: 0 0 48%;
  background: rgba(255,255,255,0.06);
  border: 1px solid #ffe85c;
  border-radius: 14px;
  padding: 25px;
}

.testimonial h4 {
  margin-bottom: 5px;
}

.stars {
  color: gold;
  font-size: 14px;
  margin-bottom: 12px;
}

.testimonial p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .testimonial {
    flex: 0 0 100%;
    padding: 20px;
  }

  .testimonial-section {
    padding: 60px 6%;
  }
}