.testimonial-slider-wrapper {
    overflow: hidden; /* Hide overflow to make it appear seamless */
    width: 100%;
    padding: 20px;
    position: relative;
}

.testimonial-slider {
    display: flex;
    gap: 15px; /* Space between slides */
    white-space: nowrap; /* Prevent line breaks */
    transition: transform 0.3s ease-in-out; /* Smooth sliding */
}

.testimonial-slide {
    flex: 0 0 250px; /* Fixed width for each slide */
    padding: 15px;
    background-color: #EDE8F5;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    overflow: hidden;
}

.testimonial-slide:hover {
    transform: scale(1.05);
}

.testimonial-image img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
}

.company-name {
    color: #3D52A0;
    font-weight: bold;
    margin-bottom: 8px;
}

.testimonial-desc {
    color: #7091E6;
    font-size: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis; /* Avoids overflow text */
    white-space: normal; /* Allow text wrapping */
}

.testimonial-rating {
    color: #FFCC00; /* Star color */
    font-size: 16px;
}
