/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Child theme for Hello Elementor.
Author: Neo
Author URI: https://github.com/amit-neo
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* --------------------------------------------------------------
Parent Theme Styles
-------------------------------------------------------------- */

@import url("../hello-elementor/style.css");

 
.st-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    z-index: 99999;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .3);
}

.st-whatsapp-icon {
    width: 34px !important;
    height: 34px !important;
    display: block;
    position: relative;
    z-index: 2;
}

.st-whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: st-whatsapp-pulse 2s infinite;
    z-index: 0;
}

@keyframes st-whatsapp-pulse {
0% {
    transform: scale(1);
    opacity: .6;
}
70% {
    transform: scale(1.45);
    opacity: 0;
}
100% {
    opacity: 0;
    }
}

.st-whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
}

.st-whatsapp-label {
    position: absolute;
    right: 74px;
    top: 50%;
    transform: translateY(-50%);
    padding: 11px 14px;
    background: #102A56;
    color: #fff;
    font: 600 13px/1 Inter, Arial, sans-serif;
    white-space: nowrap;
    border-radius: 7px;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}

.st-whatsapp-float:hover .st-whatsapp-label {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .st-whatsapp-float {
        right: 18px;
        bottom: 78px;
        width: 56px;
        height: 56px;
    }
    
    .st-whatsapp-icon {
        width: 30px !important;
        height: 30px !important;
    }
    
    .st-whatsapp-label {
        display: none;
    }


}

@media (prefers-reduced-motion: reduce) {
    .st-whatsapp-pulse {
    animation: none;
    }
}
