/* Testimonial Slider Styles */
.cs_testimonial_section {
  position: relative;
  overflow: hidden;
}

.cs_testimonial_slider {
  margin: 0 -60px;
   /* Further increased margin for more space between cards */
}

.cs_testimonial_card {
  padding: 0 60px;
  background: none; 
  border: none;/* Further increased padding for more space between cards */
}

.cs_testimonial_card_inner {
  background-color: #121b21;
  border: 1px solid #252d32;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.cs_testimonial_card_inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cs_testimonial_quote {
  margin-bottom: 20px;
}

.cs_testimonial_text {
  margin-bottom: 25px;
}

.cs_testimonial_text p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.cs_testimonial_author {
  display: flex;
  align-items: center;
}

.cs_testimonial_author_img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.cs_testimonial_author_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs_testimonial_author_info h3 {
  margin: 0 0 5px;
}

.cs_testimonial_author_info p {
  margin: 0;
}

/* Slick Slider Custom Styles */
.cs_testimonial_slider .slick-dots {
  display: flex;
  justify-content: center;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.cs_testimonial_slider .slick-dots li {
  margin: 0 5px;
}

.cs_testimonial_slider .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #252d32;
  text-indent: -9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cs_testimonial_slider .slick-dots li.slick-active button {
  background-color: #6366F1;
  width: 30px;
  border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .cs_testimonial_card_inner {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .cs_testimonial_card_inner {
    padding: 20px;
  }
  
  .cs_testimonial_text p {
    font-size: 14px;
  }
}