/* Common floating icon style */
.floating-icon {
    position: fixed;
    bottom: 20px;
    font-size: 24px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease;
}

/* Positioning */
.floating-icon.left-icon {
    left: 20px;
}
.floating-icon.right-icon {
    right: 20px;
    background-color: #71bff7; /* red for phone */
}

/* Grow animation */
.pulse {
    animation: pulse-grow 1.5s ease-in-out infinite;
}

@keyframes pulse-grow {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.14);
    }
}
