/* styles.css */

 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}

.whatsapp-pulse {
    position: relative;
    width: 60px;
    height: 60px;
}

.whatsapp-button {
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366; /* WhatsApp green */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-decoration: none;
}
.whatsapp-pulse {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    z-index: 9999; /* Ensure it appears on top of other content */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Optional: adds a shadow to make it stand out */
}

.whatsapp-button img {
    width: 60px; /* Adjust image size */
    height: 60px; /* Adjust image size */
}

/* Optional: Adding a 'pulse' effect to the button */
/*@keyframes pulse {*/
/*    0% {*/
/*        transform: scale(1);*/
/*    }*/
/*    50% {*/
/*        transform: scale(1.1);*/
/*    }*/
/*    100% {*/
/*        transform: scale(1);*/
/*    }*/
/*}*/

/*.whatsapp-pulse {*/
/*    animation: pulse 2s infinite;*/
/*}*/
/*.whatsapp-button img {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*}*/

/* Pulse animation
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
} */

.whatsapp-pulse {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

/* Blinking animation (optional) */
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
    }
    50% {
        transform: scale(1.3); /* Increased scale for a stronger pulse */
        box-shadow: 0 0 35px rgba(0, 255, 0, 1); /* More intense shadow */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
    }
}

/* Styling for the WhatsApp button */
.whatsapp-button img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
