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 {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 5px;
        display: flex;
        gap: 15px;
        flex-direction: column;
        align-items: center;
        max-width: 250px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
    .testimonial img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
    }
    .testimonial-content {
        flex: 1;
    }
    .testimonial-name {
        font-weight: bold;
    }
    .testimonial-designation {
        font-style: italic;
        color: red;
        padding: 5px;
    }