
/* Testimonial Section */
.testimonial-left,
.testimonial-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-left img,
.testimonial-right img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-left img:hover,
.testimonial-right img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Testimonial Item */
.testimonial-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-item img {
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-item p {
    color: #666;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-item h4 {
    color: #333;
    font-weight: 600;
}

.testimonial-item span {
    font-size: 0.9rem;
}

/* Quote Icon */
.fa-quote-left {
    opacity: 0.2;
}

/* Owl Carousel Navigation */
.testimonial-carousel .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.testimonial-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bs-primary) !important;
    color: white !important;
    font-size: 18px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-nav button:hover {
    background: var(--bs-dark) !important;
    transform: scale(1.1);
}

.testimonial-carousel .owl-nav button i {
    line-height: 45px;
}

/* Owl Carousel Dots */
.testimonial-carousel .owl-dots {
    margin-top: 25px;
    text-align: center;
}

.testimonial-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dot.active {
    background: var(--bs-primary) !important;
    width: 30px;
    border-radius: 10px;
}

/* Rating Stars */
.testimonial-item .fa-star {
    font-size: 1rem;
    margin: 0 2px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .testimonial-item {
        padding: 20px;
    }

    .testimonial-item img {
        width: 100px;
        height: 100px;
    }

    .testimonial-item p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonial-item {
        padding: 15px;
    }

    .testimonial-item img {
        width: 80px;
        height: 80px;
    }

    .testimonial-item p {
        font-size: 0.9rem;
    }

    .testimonial-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Animation */
.testimonial-left img,
.testimonial-right img {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Empty State */
.alert-light {
    border: 2px dashed #ddd;
    background: #f8f9fa;
}

.alert-light i {
    opacity: 0.5;
}
