#social-icons {
    position: fixed;
    top: 50%; /* Middle of the page */
    right: 20px; /* Position on the right side */
    transform: translateY(-50%); /* Center vertically */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduced gap between icons */
    opacity: 0.7; /* Make icons transparent */
    transition: opacity 0.3s;
    z-index: 1000;
}

#social-icons:hover {
    opacity: 1; /* Full opacity on hover */
}

#social-icons a {
    color: #000000; /* Icon color set to black */
    font-size: 18px; /* Smaller icon size */
    text-decoration: none;
    width: 40px; /* Smaller circle width */
    height: 40px; /* Smaller circle height */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000000; /* Black circular border */
    border-radius: 50%; /* Make the border circular */
    background-color: transparent; /* Transparent background by default */
    background-color: orange;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Smooth transition */
}

#social-icons a:hover {
    color: #000000; /* Keep icon color black on hover */
    border-color: #FFD700; /* Change border color to yellow on hover */
    background-color: #FFD700; /* Change background color to yellow on hover */
}
