.floating-widget {
    position: fixed;
    bottom: 20px;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none; /* Taki scroll mein dikkat na ho */
}

/* Yellow Strip (Left) */
.left-strip {
    background: #ffcc00;
    padding: 10px 15px;
    border-radius: 0 50px 50px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.5s ease;
    transform: translateX(-85%); /* 15% bahar dikhega */
    pointer-events: auto;
}

.left-strip:hover {
    transform: translateX(0); /* Mouse le jane par pura bahar aa jayega */
}

.left-strip a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}

/* WhatsApp Icon (Right) */
.whatsapp-float {
    pointer-events: auto;
    margin-right: 20px;
    animation: vibrate 2s infinite;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Vibration Animation */
@keyframes vibrate {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    60% { transform: rotate(-15deg); }
    80% { transform: rotate(15deg); }
}