.testimonials-carousel-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.testimonials-carousel {
    padding: 1rem 0;
    margin: -1rem 0;
}

.carousel-controls {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-btn {
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.carousel-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
