.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials .section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.testimonials .section-title p {
    font-size: 1.1rem;
    color: #666;
}

.testimonial-carousel {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    position: relative;
    border-left: 4px solid #c19a6b;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 320px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.client-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid #c19a6b;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.client-info p {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.1rem;
}

/* Owl Carousel Custom Navigation */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    color: #c19a6b !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #c19a6b !important;
    color: #fff !important;
}

.owl-prev {
    left: -25px;
}

.owl-next {
    right: -25px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.5s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials .section-title h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        margin: 10px;
        padding: 20px;
    }
    
    .owl-nav button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .client-image {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}