/* Testimonial Marquee CSS */
.testimonial-marquee-wrapper {
    overflow: hidden;
    padding: 40px 0;
    background: #fdfdfd;
    position: relative;
}

.testimonial-marquee-row {
    display: flex;
    width: max-content;
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-marquee-row.row-left {
    animation: scroll-left 60s linear infinite;
}

.testimonial-marquee-row.row-right {
    animation: scroll-right 60s linear infinite;
}

.testimonial-marquee-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    width: 400px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.testimonial-marquee-item:hover {
    transform: translateY(-5px);
    border-color: var(--fixpro-base);
}

.t-client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.t-client-name {
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

.t-client-sub {
    font-size: 12px;
    color: #888;
}

.t-stars {
    color: #f5a623;
    font-size: 14px;
}

.t-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Pause on hover */
.testimonial-marquee-wrapper:hover .testimonial-marquee-row {
    animation-play-state: paused;
}
