.ts-testimonial {
  background: #0f172a;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.ts-title {
  font-size: 34px;
  margin-bottom: 50px;
}

.ts-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.ts-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.ts-item {
  min-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.ts-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
}

.ts-stars {
  color: #facc15;
  margin-bottom: 15px;
}

.ts-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.ts-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.ts-user h4 {
  margin: 0;
  font-size: 16px;
}

.ts-user span {
  font-size: 13px;
  color: #94a3b8;
}

/* Buttons */
.ts-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff20;
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.ts-prev { left: 10px; }
.ts-next { right: 10px; }

.ts-btn:hover {
  background: #ffffff40;
}

/* Dots */
.ts-dots {
  margin-top: 25px;
}

.ts-dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  display: inline-block;
  background: #64748b;
  border-radius: 50%;
  cursor: pointer;
}

.ts-dot.active {
  background: #facc15;
}

/* Responsive */
@media(max-width:768px){
  .ts-card {
    padding: 20px;
  }
}
