html {
    scroll-behavior: smooth;
}

.fixed-icons {
    position: fixed;
    bottom: 20px;
    /* Adjust as needed */
    right: 20px;
    /* Adjust as needed */
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Space between icons */
    z-index: 1000;
    /* Ensure icons are above other content */
    background-color: transparent;
}




.icon {
    background-color: white;
    /* Background color for icons */
    border-radius: 50%;
    /* Circular background */
    padding: 10px;
    /* Padding around icons */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Shadow for depth */
    transition: background-color 0.3s;
    border: 2px solid black;
    width: 40px;
    /* Set a default width */
    height: 40px;
    /* Set a default height */
    display: flex;
    /* Center the icon */
    align-items: center;
    /* Center the icon vertically */
    justify-content: center;
    /* Center the icon horizontally */
    text-decoration: none;
}

.icon:hover {
    background-color: gray;
    /* Change background on hover */
}

#icon2 {
    color: green;
}

#icon2:hover {
    background-color: green;
    color: black;
}

#icon1 {
    color: rgb(57, 57, 219);
}

#icon1:hover {
    background-color: rgb(57, 57, 219);
    color: black;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .fixed-icons {
        bottom: 15px;
        /* Adjust position for smaller screens */
        right: 15px;
        /* Adjust position for smaller screens */
        gap: 8px;
        /* Reduce space between icons */
    }

    .icon {
        width: 40px;
        /* Smaller width for mobile */
        height: 40px;
        /* Smaller height for mobile */
        padding: 8px;
        /* Adjust padding for mobile */
    }
}

@media (max-width: 480px) {
    .fixed-icons {
        bottom: 10px;
        /* Further adjust position for very small screens */
        right: 10px;
        /* Further adjust position for very small screens */
        gap: 5px;
        /* Further reduce space between icons */
    }

    .icon {
        width: 35px;
        /* Even smaller width for very small screens */
        height: 35px;
        /* Even smaller height for very small screens */
        padding: 6px;
        /* Adjust padding for very small screens */
    }
}