.testimonials {
    background: #f8f9fa;
    padding: 4rem 2rem;
    position: relative;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    transform: scale(1);
    animation: fadeIn 0.8s ease;
}

.quote-icon {
    font-size: 3rem;
    color: #2B5C6F;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

.client-info {
    margin-top: 2rem;
}

.client-info h4 {
    color: #2B5C6F;
    margin-bottom: 0.5rem;
}

.rating {
    color: #FFA630;
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.dots-container {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #2B5C6F;
    transform: scale(1.3);
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: #2B5C6F;
    cursor: pointer;
    padding: 1rem;
    transition: 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    color: #FFA630;
}

.prev-btn {
    right: 2%;
}

.next-btn {
    left: 2%;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

@media (max-width: 768px) {
    .testimonial-text {
        font-size: 1rem;
    }
    
    .prev-btn, .next-btn {
        font-size: 1.5rem;
    }
}