/** Shopify CDN: Minification failed

Line 8:13 Expected identifier but found whitespace
Line 8:20 Unexpected "/"
Line 40:1 Expected identifier but found "."

**/
Save this as: assets/section-customer-testimonials.css

.customer-testimonials {
  background-color: #000;
  padding: 60px 0;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 0px;
}

.testimonials-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.testimonials-subtitle {
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-slider-wrapper {
  position: relative;
  padding: 20px 0 0px;
}

..testimonials-swiper {
  padding: 0 10px;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}
/* 

.swiper-slide {
  height: auto;
} */
.divider {
 border: 1px dashed #9B9B9B66;
    width: 100%;
    height: auto;
    display: block !important;
    margin: 25px 0;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(var(--color-foreground), 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-image {
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 0px solid rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.star {
  color: rgba(255, 255, 255, 0.2);
  font-size: 20px;
      line-height: 1;

}

.star.filled {
  color: #ffd700;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.testimonial-designation {
  font-size: 13px;
  color: #7E7E7E;
  margin-bottom: 0px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

/* Swiper Navigation Buttons */
 .swiper-button-next , .swiper-button-prev
 {
  color: #fff;
  background-color: rgba(var(--color-button), var(--alpha-button-background));
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}



 .swiper-button-next:after,
 .swiper-button-prev:after {
  font-size: 12px;
  font-weight: bold;
}

/* .swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
} */

 .swiper-button-prev {
  left: 20px !important;
}

 .swiper-button-next {
  right: 20px !important;
}

/* Swiper Pagination */
.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #fff;
  width: 30px;
  border-radius: 5px;
}
@media screen and (min-width: 990px) {
    .customer-testimonials .title {
        margin: 5rem 0 0rem 0rem;
    }
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
  .swiper-button-prev {
    left: 0;
  }
  
  .swiper-button-next {
    right: 0;
  }
}

@media screen and (max-width: 749px) {
  .testimonials-title {
    font-size: 32px;
  }
  
  .customer-testimonials {
    padding: 40px 0;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 16px;
  }
  
  .swiper-button-prev {
    left: 10px;
  }
  
  .swiper-button-next {
    right: 10px;
  }
}