.social-icons {
    position: fixed;
    right: 10px; /* Distance from the right side */
    bottom: 20px; /* Distance from the bottom */
    align-items: right;
    display: flex;
    flex-direction:column;
    gap: 10px;
    z-index:100;
}

/* Each Social Icon Style */
.social-icon {
    background-color: #333;
    color: white;
    padding:8px;
    border-radius:50%;
    font-size: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index:100;
}

/* Hover Effects for Icons */
.social-icon:hover {
    background-color:#f0f2f7; /* Change to your preferred hover color */
    transform: scale(1.1); /* Slight scale effect on hover */
}

/* Different colors for each social icon */
.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.twitter {
    background-color: #1c1d1f;
}

.social-icon.instagram {
    background-color: #e4405f;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.youtube {
    background-color: #ff0000;
}

/* Optional: Adjust Icon size on smaller screens */
@media screen and (max-width: 768px) {
    .social-icon {
        padding: 12px;
        font-size: 20px;
    }
}


