/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 17 2025 | 15:51:20 */
.testimonial-component-wrapper .testimonials-section {
        display: flex;
        justify-content: center;
        overflow: hidden;
        padding: 24px 0;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .testimonial-component-wrapper .testimonials-section::-webkit-scrollbar {
        display: none;
    }

    .testimonial-component-wrapper .testimonials-wrapper {
        display: flex;
        flex-direction: column;
    }

    .testimonial-component-wrapper .testimonials-row {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        padding-bottom: 24px;
        position: relative;
    }

    .testimonial-component-wrapper .top-row {
        animation: scroll-right 20s linear infinite;
    }

    .testimonial-component-wrapper .bottom-row {
        animation: scroll-left 20s linear infinite;
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-10%);
        }
    }
    
    @keyframes scroll-right {
        0% {
            transform: translateX(-10%);
        }
        100% {
            transform: translateX(0);
        }
    }

    .testimonial-component-wrapper .testimonial-card {
        background-color: white;
        border-radius: 20px;
        padding: 30px;
        margin: 0 12px;
        width: 380px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        transition: transform 0.3s ease;
    }

    .testimonial-component-wrapper .testimonial-card:hover {
        transform: translateY(-5px);
    }

    .testimonial-component-wrapper .stars {
        color: #ffb43a;
        margin-bottom: 16px;
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    .testimonial-component-wrapper .quote {
        font-size: 1.05rem;
        line-height: 1.6;
        color: #4B5563;
        margin: 0;
        flex-grow: 1;
    }

    .testimonial-component-wrapper .author {
        display: flex;
        align-items: center;
        margin-top: 20px;
    }

    .testimonial-component-wrapper .author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
        object-fit: cover;
    }

    .testimonial-component-wrapper .author-info h4 {
        font-size: 1rem;
        font-weight: 700;
        color: #111827;
        margin: 0 0 -3px 0;
    }

    .testimonial-component-wrapper .author-info p {
        font-size: 0.875rem;
        color: #6B7280;
        margin: 0;
        line-height: 1.5;
    }