.index-testimonial-section{
  padding:70px 20px;
  text-align:center;
}

.section-eyebrow{
  color:#ff2c74;
  font-size:14px;
  font-weight:600;
}

.index-testimonial-title{
  font-size:32px;
  color:#0f172a;
  margin-bottom:40px;
}

/* SLIDER */
.index-testimonial-slider{
  position:relative;
  max-width:1100px;
  margin:auto;
  overflow:hidden;
}

/* TRACK */
.index-testimonial-track{
  display:flex;
  transition:transform 0.4s ease;
}

/* CARD */
.index-testimonial-card{
  flex:0 0 33.33%;
  padding:15px;
}

/* BOX */
.index-testimonial-box{
  position:relative;
  background:#fff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.index-testimonial-box:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* QUOTE */
.index-quote{
  position:absolute;
  top:10px;
  right:15px;
  font-size:30px;
  color:#ff2c74;
  opacity:0.2;
}

/* TEXT */
.index-testimonial-text{
  font-size:14px;
  color:#475569;
  margin:20px 0;
  line-height:1.6;
  
}

/* RATING */
.index-rating{
  color:#fbbf24;
  margin-bottom:10px;
}

/* NAME */
.index-testimonial-name{
  font-size:18px;
  font-weight:600;
  color:#0f172a;
   background: linear-gradient(90deg,#ff2c74,#4f46e5);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  animation:fadeUp 1s ease forwards, gradientMove 4s linear infinite;
}

/* ROLE */
.index-testimonial-role{
  font-size:13px;
  color:#64748b;
}

/* BUTTONS */
.index-testimonial-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#000;
  color:#fff;
  border:none;
  padding:10px 14px;
  cursor:pointer;
  border-radius:50%;
  z-index:999;
}

.index-testimonial-prev{ left:5px; }
.index-testimonial-next{ right:5px; }

/* MOBILE */
@media(max-width:768px){
  .index-testimonial-card{
    flex:0 0 100%;
  }
}