/* Testimonial Component Styles */

/* Testimonial item styling */
.testimonial-item {
    min-height: 200px;
}

/* Custom star spacing and alignment */
.testimonial-stars {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0px !important;
    margin: 0 auto 1rem auto !important;
    flex-wrap: nowrap !important;
}

.testimonial-stars .icon-md {
    flex-shrink: 0 !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 2px 0 0 !important;
    display: inline-block !important;
}

.testimonial-stars .icon-star {
    flex-shrink: 0 !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 2px 0 0 !important;
    display: inline-block !important;
}

/* Custom navigation arrows with icons */
.testimonial .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.testimonial .owl-nav button {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background-color: var(--brand-btn) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial .owl-nav button:hover {
    background-color: #28a745 !important;
    transform: scale(1.1);
}

.testimonial .owl-nav .owl-prev {
    margin-left: -25px;
}

.testimonial .owl-nav .owl-next {
    margin-right: -25px;
}

.testimonial .owl-nav button img {
    width: 20px;
    height: 20px;
}

/* Hide navigation arrows on mobile */
@media (max-width: 768px) {
    .testimonial .owl-nav {
        display: none !important;
    }
}
