.testi-btn {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: clamp(6px, 1vw, 10px) clamp(40px, 8vw, 115px);
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: clamp(13px, 1.5vw, 18px);
    letter-spacing: 1px;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    transition: all 0.3s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.testi-btn:hover {
    background: linear-gradient(135deg, #111827, #1f2937);
    transform: translateX(3px);
}



.testimonial-section {
    padding: 0px 0;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.slider {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

.testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

/* quote */
.quote {
    font-size: 80px;
    color: black !important;
   
    position: absolute;
    top: -10px;
    left: 20px;
  
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 25px 0;
}

/* user */
.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.user strong {
    font-size: 15px;
    color: #222;
}

.user span {
    font-size: 12px;
    color: #777;
}

/* arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff65;
    color: #01c2be;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: 0.3s;
}

.arrow:hover {
    background: #01c2be;
    color: #fff;
    
}

.arrow.left {
    left: 0px;
}
.arrow.right {
    right: 0px;
}

/* dots */
.dots {
   display: flex; justify-content: center; margin-top: 25px; gap: 10px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
    opacity: 0.5;
}

.dot.active {
    background: #fff;
    opacity: 1;
}

/* responsive */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}
