        .slider-container {
            max-width: 1200px;
            width: 100%;
            position: relative;
            overflow: hidden;
            margin: 50px auto;
        }
        
        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
             min-width: 100%;
            gap: 2rem;
            padding: 1rem;
            color: black;
        }
        
        .testimonial {
            flex: 0 0 calc(33.333% - 1.33rem);
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .testimonial-content {
            margin-bottom: 1.5rem;
            font-style: italic;
            color: var(--text);
            line-height: 1.6;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }
        
        .testimonial-position {
            font-size: 0.9rem;
            color: var(--text);
            opacity: 0.8;
        }

        .slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
    pointer-events: none;
}

.slider-arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
}
        
        
        
        @media (max-width: 992px) {
            .testimonial {
                flex: 0 0 calc(50% - 1rem);
            }

            .slider-arrows {
                display: none;
            }
            
        }
        
        @media (max-width: 576px) {
            .testimonial {
                flex: 0 0 100%;
            }
        }

