.floating-icons {
    position: fixed;
    bottom: 20px;
    left: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #1cba9f;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Hover Effect - Scale, Glow, and Bounce */
.floating-icons a:hover {
    background-color: #17a589;
    transform: scale(1.1) translateY(-3px);  /* Zoom + Thoda sa Upar Move */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Glow Effect */
}

/* Smooth Bounce Effect */
@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.floating-icons a:hover {
    animation: bounce 0.4s ease;
}
