.Testimonial {
    height: 120vh;
    width: 100vw;
    background-color: rgb(255, 255, 255);
    position: relative;
    padding-bottom: 6%;

}

.TestimonialWrapper {
    height: 100%;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    overflow-x: auto;
    /* Keep horizontal scrolling */
    overflow-y: hidden;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.TestimonialWrapper::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari, and other WebKit browsers */
}

.Testtop {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}

.TestTopLeft {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topLeftImg {
    width: 70px;
}

.TestimonialText p {
    margin-top: 10px;
    font-size: 24px;
}

.TestimonialText h3 {
    font-size: 30px;
    font-weight: normal;
}

.TestimonialCardBox {
    display: none;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    padding: 10px;
    align-items: center;
    cursor: grab;
    /* Add a grab cursor */
}

.testimonialCard {
    flex: 0 0 auto;
    border-radius: 10px;
    padding: 22px;
    margin: 3px;
    width: 37rem;
    height: 20rem;
    background-color: rgb(244, 248, 250);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.personPicNew {
    width: 50px;
}

.testmosttop {
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 7px;
}

.testcardtop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    width: 105px;
}

.testcardbottom {
    display: flex;
    align-items: center;
    gap: 3px;
    padding-top: 39px;
}

.testcardcenter p {
    margin: 0;
    height: auto;
}

.testPersonName {
    font-weight: bold;
    font-size: 13px;
}

.earthRound {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 13%;
    height: auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    .Testimonial {
        height: auto;
    }

    .TestimonialWrapper {
        width: 90%;
    }

    .Testtop {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .TestTopLeft {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .topLeftImg {
        width: 50px;
    }

    .TestimonialText h3 {
        font-size: 24px;
        text-align: center;
    }
    .TestimonialText p {
        font-size: 24px;
        text-align: center;
    }

  

    .testimonialCard {
        width: 100%;
        height: auto;
    }

    .earthRound {
        width: 20%;
    }
}

@media (max-width: 480px) {
    .TestimonialWrapper {
        width: 95%;
    }

    .topLeftImg {
        width: 40px;
    }

    .TestimonialText h3 {
        font-size: 20px;
    }

    .TestimonialCardBox {
        gap: 15px;
        padding: 0;
        z-index: 5;
        display: none;
    }

    .testimonialCard {
        padding: 15px;
        width: 90%;
    }

    .earthRound {
        width: 25%;
    }
}