/*
Theme Name: Maxcare Child
Template: maxcare
Theme URI: https://maxcare.casethemes.net/
Author: Case-Themes
Description: Maxcare Child Theme with WhatsApp Button
Version: 1.0.1
Text Domain: maxcare-child
*/

.whatsapp-float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse-animation 2s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float-btn svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
