.scrollable {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    scroll-behavior: smooth; /* Enable smooth scrolling */
    scrollbar-width: none; /* Hide scrollbar */
}

.scrollable-card {
    overflow-x: auto; /* Enable horizontal scrolling */
    -ms-overflow-style: none; /* Hide scrollbar for Internet Explorer and Edge */
    scrollbar-width: none; /* Completely hide scrollbar for modern browsers like Firefox */
}
.scrollable.has-scroll {
    border: 1px solid #ccc; /* Optional: Add a border to indicate scrollable area */
    padding: 10px; /* Optional: Add padding */
}

.dot-div{
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap; /* Allow dots to wrap on smaller screens */
    padding: 0 15px;
}

.dot-div .dot-container {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D1D1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    margin: 0 2px;
}

.dot-div .dot-container.active {
    background: var(--ssbond-blue);
    transform: scale(1.2);
}
.dragging {
    cursor: grabbing;
}