.testimonial-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0 auto;
    max-width: 600px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.testimonial-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.testimonial-nav-btn ion-icon {
    font-size: 24px;
    color: #333;
}

@media (max-width: 768px) {
    .testimonial-slider {
        height: 500px;
    }
    
    .testimonial-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .testimonial-nav-btn ion-icon {
        font-size: 20px;
    }
} 