@media screen and (max-width: 768px) {
    .wpb_row_new {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start; /* Align to the left for scrolling */
        align-items: center;
        overflow-x: auto !important; /* Ensure horizontal scrolling */
        overflow-y: hidden;
        white-space: nowrap; /* Prevent wrapping */
        gap: 0; /* Remove gaps */
        padding: 5px;
        scrollbar-width: none; /* Show a small scrollbar (optional) */
        scroll-behavior: smooth; /* Smooth scrolling */
    }

    /* WebKit (Chrome, Safari) scrollbar fix */
    .wpb_row_new::-webkit-scrollbar {
        height: 5px; /* Small scrollbar */
    }

    .wpb_row_new::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2); /* Scrollbar color */
        border-radius: 10px;
    }

    /* Ensure buttons don’t break layout */
    .wpb_column_new {
        flex: 0 0 auto;
        min-width: auto;
    }

    .vc_btn3-container_new {
        text-align: center;
    }

    .vc_btn3_new {
     /*   display: inline-block; 
        font-size: clamp(12px, 4vw, 18px);
        padding: 5px 10px;
        margin: 0;
        border-radius: 5px; */
        gap: 0;
    }
    .active {
        gap: 0;
    }
    }
}