
.scroll-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: visible;
    padding: 0 10px;
}

.scroll-btn {
    border: none;
    background: none;
    cursor: pointer;
    width: 75px;
}

.scroll-btn:hover {
    background: none;
}

.scroll-btn:focus {
    background: none;
}

.scroll-btn img {
    max-width: 32px;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    align-items: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    /* fixed width to force scrolling */
    padding: 15px 0;


}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.card-nav {
    width: 120px;
    min-width: 120px;
    height: 120px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.card-nav:hover {

    transform: translateY(-10px);
}

.card-nav i {
    font-size: var(--font-xlarge);
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.card-nav span {
    font-weight: 600;
    font-size: var(--font-small);
    color: var(--dark-blue);
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

@media (pointer: coarse) {
    .scroll-btn {
        display: none;
    }
}

@media (min-width: 991px) {
    .scroll-btn {
        display: none;
    }
}