/* Testimonials Section Styles - Worldwide MICE Gold Theme */
.cs-testimonial-scroller {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  background-color: #050B14;
}

.cs-testimonial-scroll-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
  display: block;
  white-space: nowrap;
}

.cs-testimonial-item-5 {
  background: linear-gradient(267deg, #111a28 0%, #050b14 100%);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  padding: 30px;
  margin: 0 15px;
  width: 450px;
  height: auto;
  min-height: 250px;
  display: inline-block;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: normal;
  vertical-align: top;
  box-sizing: border-box;
}

.cs-testimonial-item-5:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cs-testimonial-item-5 ul.cs-rating {
  display: flex;
  padding: 0;
  margin: 0 0 20px 0;
  list-style: none;
}

.cs-testimonial-item-5 ul.cs-rating li {
  margin-right: 5px;
  color: #D4AF37; /* Gold color */
  font-size: 14px;
}

.cs-testimonial-item-5 p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cs-testimonial-author {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 15px;
}

.cs-testimonial-author .item-text h3 {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
  color: #D4AF37; /* Gold color */
}

/* Animation for marquee */
@keyframes marqueeAnimationLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeAnimationRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.js-marquee-wrapper-left {
  animation: marqueeAnimationLeft 30s linear infinite;
  display: flex;
  width: max-content;
}

.js-marquee-wrapper-right {
  animation: marqueeAnimationRight 30s linear infinite;
  display: flex;
  width: max-content;
}

.js-marquee-wrapper-left:hover,
.js-marquee-wrapper-right:hover {
  animation-play-state: paused;
}

.js-marquee {
  display: flex;
  width: max-content;
}

.responsive-large-heading {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: #050B14;
  padding-top: 80px;
  margin-top: 0;
}

.responsive-large-heading span {
  color: #D4AF37;
}

/* Responsive styles */
@media screen and (max-width: 991px) {
  .cs-testimonial-item-5 {
    width: 380px;
    padding: 25px;
  }
  .responsive-large-heading {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .cs-testimonial-item-5 {
    width: 320px;
    padding: 20px;
  }
  .cs-testimonial-item-5 p {
    font-size: 14px;
  }
  .responsive-large-heading {
    font-size: 2rem;
  }
}
