.social-icon {
    width: 50px;
    height: 50px;
    background-color: #333;
    /* Dark gray circle */
    color: #ffa500;
    /* Orange color for icons */
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    /* Slightly enlarge on hover */
    background-color: #555;
    /* Slightly lighter gray on hover */
}
