/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: #000;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    background-color: #6bc9c2;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: none;
}

.whatsapp-float i {
    margin-top: 2px;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(128, 216, 208, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(128, 216, 208, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(128, 216, 208, 0);
    }
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
