.testimonial-row {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 30px);
    min-width: calc(33.333% - 30px);
    margin: 0 15px;
    background: var(--primary);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-name {
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
}

.testimonial-content {
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.6;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.arrow {
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
    border: none;
}

.arrow:hover {
    opacity: 1;
    transform: scale(1.05);
}

.arrow:active {
    transform: scale(0.95);
}

@media (max-width: 1100px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 30px);
        min-width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 calc(100% - 30px);
        min-width: calc(100% - 30px);
    }
}