.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    cursor: pointer;
    animation: whatsappPulse 1.8s infinite ease-in-out;
}

/* Pulse Animation */
@keyframes whatsappPulse {
    0% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.15);
    }

    100% {
        transform: translateY(-50%) scale(1);
    }
}

/* Tooltip */
.whatsapp-float::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    font-size: 13px;
}

.whatsapp-float:hover::after {
    opacity: 1;
}

/* Hover Color Change */
.whatsapp-float:hover {
    background-color: #1ebe58;
}
.packageimg {
    width: 100%;
    height: 520px!important;
}