/* Nexa Testimonial Slider */
.nexa-ts{
  display:flex;
  width:100%;
}
.nexa-ts__swiper{
  width:100%;
  position:relative;
  padding-bottom: 46px; /* space for dots */
}
.nexa-ts__card{
  margin: 0 auto;
  background:#fff;
  border-radius:10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  text-align:center;
}
.nexa-ts__stars{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:6px;
  margin-bottom: 14px;
}
.nexa-ts__stars svg{
  width:18px;
  height:18px;
  fill:#2aa7d9;
}
.nexa-ts__quote{
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
  color:#3a3a3a;
}
.nexa-ts__quote-mark{
  font-style: normal;
}
.nexa-ts__author{
  margin-top: 10px;
  font-weight: 600;
  color:#111;
}

/* Navigation */
.nexa-ts__nav{
  position:absolute;
  left:0;
  right:0;
  bottom: 6px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  pointer-events:none;
}
.nexa-ts__nav button{
  pointer-events:auto;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.08);
  background:#fff;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.10);
  transition: transform .12s ease, box-shadow .12s ease;
}
.nexa-ts__nav button:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.12);
}
.nexa-ts__nav button svg{
  width:16px;
  height:16px;
  fill: currentColor;
}

/* Dots */
.nexa-ts__pagination{
  position:absolute;
  left:0;
  right:0;
  bottom: 18px;
  text-align:center;
}
.nexa-ts__pagination .swiper-pagination-bullet{
  width:8px;
  height:8px;
  opacity:1;
  margin:0 4px !important;
  background:#d9d9d9;
}
.nexa-ts__pagination .swiper-pagination-bullet-active{
  background:#2aa7d9;
}

/* Responsive tweaks */
@media (max-width: 767px){
  .nexa-ts__swiper{ padding-bottom: 56px; }
  .nexa-ts__card{ max-width: 92%; }
  .nexa-ts__quote{ font-size: 16px; }
}
