/* ===== Testimonials Section ===== */
.vs-testimonials-new {
    padding: 30px 0;
}

.vs-testimonials-header {
    margin-bottom: 25px;
}

.vs-testimonials-header h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 10px;
}

.vs-testimonials-header h2 span {
    color: #00e676;
}

.vs-testimonials-header p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonial Card - Horizontal Layout */
.vs-testimonial-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px 35px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.vs-testimonial-avatar {
    flex-shrink: 0;
}

.vs-testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.vs-testimonial-body {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

.vs-testimonial-content {
    flex: 1;
}

.vs-testimonial-quote {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.vs-testimonial-author-info {
    color: #333;
    font-size: 0.9rem;
}

.vs-testimonial-author-info h4 {
    display: inline;
    font-weight: 600;
    color: #333;
}

.vs-testimonial-author-info span {
    color: #666;
}

.vs-testimonial-author-info span::before {
    content: ' / ';
    color: #999;
}

.vs-testimonial-company {
    flex-shrink: 0;
}

.vs-testimonial-company img {
    max-height: 50px;
    max-width: 140px;
    object-fit: contain;
}

/* Navigation Buttons */
.vs-testimonials-nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 15px;
}

.vs-testimonials-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.vs-testimonials-nav button:hover {
    background: #00e676;
    border-color: #00e676;
    color: #fff;
}

/* Owl Carousel Override */
.vs-testimonials-new .owl-stage-outer {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 991px) {
    .vs-testimonials-new {
        padding: 60px 0;
    }
    .vs-testimonial-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .vs-testimonials-new {
        padding: 50px 0;
    }
    .vs-testimonials-header h2 {
        font-size: 1.8rem;
    }
    .vs-testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    .vs-testimonial-body {
        align-items: center;
    }
    .vs-testimonial-content {
        text-align: center;
    }
    .vs-testimonials-nav {
        justify-content: center;
    }
}
