

/* TESTIMONI */
/* HEADER */
/* SECTION */
.testimonial-section{
  background:#F9FAFB;
}


/* HEADER */
.testimonial-header{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:40px;
}


.testimonial-header h3{
  font-size:34px;
  font-weight:700;

  color:#111827;
}


/* NAV */
.testimonial-nav{
  display:flex;
  gap:14px;
}


.testimonial-nav button{
  width:54px;
  height:54px;

  border-radius:50%;

  border:1.5px solid #0E9F8D;

  background:transparent;
  color:#0E9F8D;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:18px;

  cursor:pointer;

  transition:all 0.3s ease;
}


/* ACTIVE */
.testimonial-nav .testi-next{
  background:#0E9F8D;
  color:#fff;

  box-shadow:
  0 8px 20px rgba(14,159,141,0.25);
}


/* HOVER */
.testimonial-nav button:hover{
  background:#0E9F8D;
  color:#fff;

  transform:translateY(-3px);

  box-shadow:
  0 8px 20px rgba(14,159,141,0.25);
}


/* SLIDER */
.testimonial-slider{
  display:flex;
  gap:34px;

  overflow-x:auto;
  scroll-behavior:smooth;

  scrollbar-width:none;
}

.testimonial-slider::-webkit-scrollbar{
  display:none;
}


/* ITEM */
.testimonial-item{
  min-width:760px;

  display:flex;
  align-items:center;
  gap:34px;

  background:#fff;

  border-radius:28px;

  padding:8px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);
}


/* IMAGE */
.testi-img{
  width:280px;

  aspect-ratio:4/3;

  border-radius:22px;

  overflow:hidden;

  flex-shrink:0;
}


.testi-img img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.5s ease;
}


/* IMAGE HOVER */
.testimonial-item:hover .testi-img img{
  transform:scale(1.08);
}


/* CONTENT */
.testi-content p{
  position:relative;
  z-index:2;

  font-size:15px;

  line-height:1.6;

  color:#374151;

  margin:0;
}


/* QUOTE */
.quote{
  position:absolute;

  top:-20px;
  left:-10px;

  font-size:80px;
  line-height:1;

  font-weight:700;

  color:rgba(14,159,141,0.08);

  z-index:0;
}


/* TEXT */
.testi-content p{
  position:relative;
  z-index:2;

  font-size:17px;

  line-height:1.9;

  color:#374151;

  margin:0;
}


/* META */
.testi-meta{
  margin-top:24px;
}


.testi-meta strong{
  display:block;

  font-size:17px;
  font-weight:700;

  color:#111827;
}


.testi-meta span{
  font-size:14px;

  color:#6B7280;
}
/* =========================
   MOBILE TESTIMONI
========================= */

@media(max-width:768px){

  /* HEADER */
  .testimonial-header{
    margin-bottom:24px;
  }


  .testimonial-header h3{
    font-size:22px;

    line-height:1.2;

    max-width:180px;
  }


  /* NAV */
  .testimonial-nav{
    gap:10px;
  }


  .testimonial-nav button{
    width:42px;
    height:42px;

    font-size:15px;
  }


  /* SLIDER */
  .testimonial-slider{
    gap:16px;
  }


  /* CARD */
  .testimonial-item{
    min-width:100%;

    flex-direction:column;

    align-items:flex-start;

    gap:18px;

    padding:20px;

    border-radius:22px;
  }


  /* IMAGE */
  .testi-img{
    width:100%;

    aspect-ratio:16/10;

    border-radius:18px;
  }


  /* QUOTE */
  .quote{
    font-size:56px;

    top:-10px;
    left:-4px;
  }


  /* TEXT */
  .testi-content p{
    font-size:14px;

    line-height:1.7;
  }


  /* META */
  .testi-meta{
    margin-top:18px;
  }


  .testi-meta strong{
    font-size:15px;
  }


  .testi-meta span{
    font-size:13px;
  }

}
