.testimonial-tab-section {
  display: flex;
  gap: 40px;
  padding: 60px 20px;
  background: #111;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* Left: Client List */
.client-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.client-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 16px;
  border-left: 4px solid transparent;
  cursor: pointer;
  transition: 0.3s;
}

.client-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-item.active {
  border-left: 4px solid #e91e63;
  background: #1a1a1a;
}

.client-item h4 {
  font-size: 16px;
  margin: 0;
  color: #ffffff;
}

.client-item p {
  font-size: 13px;
  color: #fffefa;
  margin: 0;
}

/* Right: Testimonial Details */
.testimonial-details {
  flex: 2;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 6px 12px rgba(0,0,0,0.4);
}

.testimonial-details p {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
}

/* ✅ Responsive Design */
@media (max-width: 900px) {
  .testimonial-tab-section {
    flex-direction: column;
    gap: 20px;
    padding: 40px 15px;
  }

  .client-item {
    padding: 10px 12px;
  }

  .client-item img {
    width: 45px;
    height: 45px;
  }

  .client-item h4 {
    font-size: 15px;
  }

  .client-item p {
    font-size: 12px;
  }

  .testimonial-details {
    padding: 20px;
    font-size: 14px;
  }

  .testimonial-details p {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .testimonial-tab-section {
    padding: 30px 10px;
  }

  .client-item {
    gap: 10px;
  }

  .client-item img {
    width: 40px;
    height: 40px;
  }

  .client-item h4 {
    font-size: 14px;
  }

  .client-item p {
    font-size: 11px;
  }

  .testimonial-details {
    padding: 15px;
    font-size: 13px;
  }
}