body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }
    .testimonials-container {
        width: 100%;
        margin: 50px auto;
        overflow: hidden;
        position: relative;
    }
    .testimonials {
        display: flex;
        flex-direction: row; /* Change direction to row */
        gap: 20px;
        transition: transform 0.5s ease-in-out;
    }
    .testimonial {
        width: 250px;
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .testimonial img {
        height: 100%;
        width: auto;
    }
    .testimonial-content {
        flex: 1;
        width: 400px;
    }
    .testimonial-name {
        font-weight: bold;
    }
    .testimonial-designation {
        font-style: italic;
    }