.testimoneal .testimonial-btn button {
    background: linear-gradient(135deg, #0099b4, #007e9b);
    color: white;
    padding: 8px 35px;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 126, 155, 0.3);
}



.testimoneal .prev-button {
    left: -110px;
}

.testimoneal .next-button {
    right: -110px;
}

/* Inner box / container */
/*.carousel-wrapper .box {
    display: flex;
    gap: 25px;
    scroll-behavior: smooth;
    overflow-x: auto;
    padding: 20px;
}*/

/* Hide scrollbar */
.carousel-wrapper .box::-webkit-scrollbar {
    display: none;
}

/* Card */
.carousel-card {
    background: linear-gradient(145deg, #ffffff, #f2fdff 90%);
    border-radius: 22px;
    min-width: 280px;
    max-width: 280px;
    padding: 25px;
    text-align: center;
    border: 2px solid #0090a7;
    box-shadow:
        0 12px 25px rgba(0,0,0,0.10),
        0 5px 10px rgba(0,144,167,0.10);
    transition: 0.35s ease;
}



/* Card Image */
.carousel-card img {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 4px solid #0090a7;
    padding: 3px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,144,167,0.25);
}

/* Text */
.carousel-card p {
    font-size: 15px;
    margin: 12px 0;
    color: #444;
    line-height: 1.5;
}

.carousel-card h3 {
    color: #007e9b;
    font-weight: 600;
    margin-bottom: 6px;
}

.carousel-card small {
    color: #666;
    font-style: italic;
}





.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-card {
        min-width: 250px;
    }

    .testimoneal .prev-button {
        left: -10px;
    }
    
    .testimoneal .next-button {
        right: -10px;
    }
}
