.sticky-icon {
    z-index: 99;
    position: fixed;
    top: 30%;
    left: 0%;
    width: 50px;
    display: flex;
    direction: ltr;
    flex-direction: column;
}

    .sticky-icon a {
        border-radius: 50%;
        text-align: center;
        margin: 2px;
        text-decoration: none;
        text-transform: capitalize;
        padding: 0;
        font-size: 18px;
        background: transparent;
    }

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000000 !important; /* Force black background */
    background: #000000 !important; /* Ensure solid black */
    margin: 5px 0;
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

    .icon-circle i {
        color: white; /* Changed from black to white so icons are visible */
        font-size: 20px;
        line-height: 1;
    }

#myBtn {
    height: 50px;
    width: 50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    text-align: center;
    padding: 0;
    line-height: 50px;
    border: none;
    outline: none;
    background-color: #000000;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.fa-arrow-circle-up {
    font-size: 24px;
}

@media (max-width: 991px) {
    .sticky-icon {
        z-index: 99;
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0%;
        width: 100%;
        display: flex;
        justify-content: center;
        direction: ltr;
        flex-direction: row;
        background-color: #000000;
        text-align: center;
        padding: 10px 0;
    }

    .icon-circle {
        margin: 0 5px;
        width: 45px;
        height: 45px;
    }

        .icon-circle i {
            font-size: 18px;
            color: white; /* Ensure white icons on mobile too */
        }
}
