/* xl - DESKTOP STYLES */ 
    /* Testimonial Section Styles */
    .testimonial-section {
        position: relative;
    }

    .testimonial-slider {
        position: relative;
        z-index: 1;
    }

    .testimonial-slide {
        padding: 20px; /* Space for the box shadow */
        outline: none; /* Remove slick focus outline */
    }

    .testimonial-card {
        display: flex;
        background-color: #fff;
        box-shadow: 1px 13px 20px 12px #0000001f;
        margin: 0px 20px 40px;
        overflow: hidden;
    }

    .testimonial-image {
        width: 35%;
        flex-shrink: 0;
            padding: 50px;
    }

    .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .testimonial-content {
        width: 65%;
        padding: 40px 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .testimonial-content .title-wrap {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .testimonial-content .author-info {
        display: flex;
        flex-direction: column;
    }

    .testimonial-content .name {
        font-size: 28px;
        font-weight: bold;
        color: #3f4756; /* Dark slate matching the screenshot */
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .testimonial-content .title {
        font-size: 16px;
        font-weight: 500;
        color: #3f4756;
        margin-bottom: 10px;
    }

    .testimonial-content .star img {
        height: 16px;
        width: auto;
    }

    .testimonial-content .quotes img {
        width: 50px; 
        height: auto;
        opacity: 0.15; /* Make it light grey as in the screenshot */
    }

    .testimonial-content .quote-text p {
        font-size: 18px;
        line-height: 1.6;
        color: #555;
        margin: 0;
    }

    /* Slick dots styling customization */
    .testimonial-slider .slick-dots {
        bottom: -30px;
    }
    .testimonial-slider .slick-dots li button:before {
        font-size: 12px;
        color: #a6cd39;
    }
    .testimonial-slider .slick-dots li.slick-active button:before {
        color: #3f4756;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .testimonial-card {
            flex-direction: column;
        }
        .testimonial-image {
            width: 100%;
            height: 300px;
        }
        .testimonial-content {
            width: 100%;
            padding: 30px;
        }
        .testimonial-image {
            padding: 20px;
        }
        .testimonial-slide {
            padding: 0;
            outline: none;
        }
        .testimonial-card {
            box-shadow: 1px 13px 20px 12px #0000000a;
            margin: 0px 20px 20px;
        }
    }

