.bk-testimonial-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.bk-testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.bk-testimonial-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

.bk-testimonial {
  flex: 1 1 48%;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.bk-dots {
  text-align: center;
  margin-top: 15px;
}

.bk-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.bk-dots .active {
  background-color: #ffc107;
}

@media (max-width: 768px) {
  .bk-testimonial-slide {
    flex-direction: column;
    gap: 10px;
  }

  .bk-testimonial {
    flex: 1 1 100%;
  }
}
