.scroll-container {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    justify-content: flex-start; /* Left-align to prevent centering issues */
    align-items: center;
    scrollbar-width: none;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    font-family: Arial, sans-serif;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
    text-decoration: none;
    color: black;
    transition: background-color 0.3s, transform 0.3s;
    border-radius: 5px;
}

.item:hover {
    transform: translateY(-2px);
}

.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #f8f5f0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, border-color 0.3s;
}

.circle:hover {
    transform: scale(1.01);
    border: 2px solid #DAA520;
}

.circle img {
    width: 70%;
    height: 70%;
    object-fit: cover;
}

.item h3 {
    margin: 5px 0 0;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .circle {
        width: 70px;
        height: 70px;
    }
    .item h3 {
        font-size: 13px;
    }
    .item {
        margin-right: 18px;
    }
}

@media (max-width: 768px) {
    .scroll-container {
        justify-content: flex-start; /* Align left for smaller screens */
    }
    .circle {
        width: 65px;
        height: 65px;
    }
    .item h3 {
        font-size: 12px;
    }
    .item {
        margin-right: 16px;
    }
}

@media (max-width: 400px) {
    .circle {
        width: 60px;
        height: 60px;
    }
    .item h3 {
        font-size: 11px;
    }
    .item {
        margin-right: 14px;
    }
}
