/* Testimonial Section Swiper Styles */
.ascend-testimonial-section {
  position: relative;
  padding: 40px 0;
  z-index: 1;
  margin: 0 auto;
}

.testimonial-section-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.testimonial-section-title {
  color: var(--Color-Palette-Copper);
  text-align: center;
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 400;
}

.testimonial-section-subtitle {
  color: var(--Color-Palette-Copper);
  text-align: center;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
}

.testimonial-slider-wrapper {
  margin-bottom: 40px;
}

/* Testimonial Slider - Vertical Configuration */

.testimonial-slide-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.testimonial-quote {
  margin: 0;
  max-width: 1200px;
}

.testimonial-text {
  font-family: var(--heading-font);
  font-size: 48px;
  font-style: italic;
  line-height: 1.6;
  color: var(--Color-Palette-Dark-Chocolate);
  margin-bottom: 20px;
  display: block;
}

.testimonial-client {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 300;
  color: var(--Color-Palette-Dark-Chocolate);
  margin-top: 20px;
  letter-spacing: 0.6px;
}

/* Testimonial Slider Navigation */
.testimonial-slider .slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 0px;
  position: relative;
  display: none;
}

.testimonial-slider .slider-nav-icon {
  width: 30px;
  height: auto;
  display: none;
}
.swiper-wrapper {
  justify-content: flex-start;
  align-items: center;
}
/* Testimonial Slider Pagination */
.testimonial-slider-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  margin-top: 0 !important;
  display: none;
}

.testimonial-slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid var(--Color-Palette-White);
  background: transparent;
  opacity: 0.5;
  margin: 0 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.testimonial-slider-pagination .swiper-pagination-bullet-active {
  border: 1px solid var(--Color-Palette-White);
  background: var(--Color-Palette-White);
  opacity: 1;
  transform: scale(1.2);
}

.testimonial-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  height: 46px;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  letter-spacing: 0.48px;
  line-height: 1;
  justify-content: center;
}

.testimonial-cta:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.cta2-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Testimonial Styles */
@media (max-width: 920px) {
  .ascend-testimonial-section {
      padding: 30px 0;
  }
  .testimonial-section-subtitle {
    font-size: 16px;
  }
  .testimonial-section-title {
      font-size: 32px;
      margin-bottom: 0px;
  }
 
  .testimonial-slider-wrapper {
    margin-bottom: 0px;
  }
  .testimonial-text {
      font-size: 20px;
  }
  
  .testimonial-client {
      font-size: 16px;
  }
  
  .testimonial-ctas {
      flex-direction: column;
      align-items: center;
  }
  
  .testimonial-cta {
      width: 100%;
      max-width: 100%;
  }
  
  .testimonial-slider .slider-nav-icon {
      width: 25px;
      display: block;
  }
  
  .testimonial-slider-pagination .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
  }
}