 /* @keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 5px; 
}

@media screen and (max-width: 767px) {
    .floating-btn {
        display: none;
    }
}

.btn-box {
    width: 45px;  
    height: 45px; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 5px;
    animation: pulse 1.5s infinite ease-in-out;
} 


.btn-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 5px;
    animation: pulse 1.5s infinite ease-in-out;
}


.btn-box.call {
    background-color: #ffaa00; 
}


.btn-box.whatsapp {
    background-color: #4CAF50; 
}



.btn-box img, .btn-box svg {
    width: 43px;  
    height: 43px; 
}

.btn-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
 
 */



/* @keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}


@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 170, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 170, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 170, 0, 0);
    }
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 5px; 
}

@media screen and (max-width: 767px) {
    .floating-btn {
        display: none;
    }
}

.btn-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 5px;
}


.btn-box.call {
    background-color: #ffaa00; 
    animation: pulse-orange 1.5s infinite ease-in-out;
}


.btn-box.whatsapp {
    background-color: #4CAF50;
    animation: pulse-green 1.5s infinite ease-in-out;
}

.btn-box img, .btn-box svg {
    width: 43px;  
    height: 43px; 
}

.btn-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}  */