/* === Logo Testimonials Slider Styles === */

.testimonial-slider-fade {
    position: relative;
    padding: 30px 0;
    background: #f0f0f0; /* matches fade color */
}

.testimonial-slider-fade .owl-stage-outer {
    overflow: hidden;
    position: relative;
}

.testimonial-slider-fade .owl-stage {
    display: flex;
}

/* Testimonial Box */
.testimonial-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px 20px;
    margin: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-5px);
}

/* Testimonial text */
.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Logo */
.testimonial-logo {
    max-width: 80px;
    max-height: 50px;
    margin: 0 auto 15px auto;
    object-fit: contain;
}

/* Name & Role */
.testimonial-name {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 5px;
    color: #000;
}

.testimonial-role {
    font-size: 13px;
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
}

/* Company */
.testimonial-company {
    font-size: 13px;
    font-weight: 500;
    color: #3597BF;
    margin-bottom: 5px;
}

/* Location */
.testimonial-location {
    font-size: 12px;
    color: #777;
}

/* Owl Dots */
.testimonial-slider-fade .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial-slider-fade .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    margin: 0 5px;
    border-radius: 50%;
}

.testimonial-slider-fade .owl-dot.active {
    background: #3597BF;
}

/* Edge Fade Effect */
.testimonial-slider-fade::before,
.testimonial-slider-fade::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-slider-fade::before {
    left: 0;
    background: linear-gradient(to right, #f0f0f0 0%, rgba(240,240,240,0) 100%);
}

.testimonial-slider-fade::after {
    right: 0;
    background: linear-gradient(to left, #f0f0f0 0%, rgba(240,240,240,0) 100%);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .testimonial-box {
        padding: 20px 15px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .testimonial-name {
        font-size: 14px;
    }

    .testimonial-role,
    .testimonial-company,
    .testimonial-location {
        font-size: 12px;
    }
}
