.whatsapp{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
z-index:1000;
}

/* Bottom Action Bar CSS */
.custom-bottom-action-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 65px !important;
    background: #ffffff !important;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 20px !important;
    z-index: 99999 !important;
    box-sizing: border-box !important;
}

.counselling-tag {
    background: #ff9500 !important;
    color: #ffffff !important;
    padding: 8px 14px !important;
    border-radius: 30px !important;
    font-size: 14px !important;
    font-weight: bold !important;
}

.enquiry-trigger-btn {
    background: linear-gradient(135deg, #0b3d91, #2563eb) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    font-size: 15px !important;
    font-weight: bold !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    transition: transform 0.2s !important;
}

/* Continuous Vibration Animation Logic */
@keyframes whatsappVibrate {
    0% { transform: scale(1) rotate(0deg); }
    5% { transform: scale(1.1) rotate(-10deg); }
    10% { transform: scale(1.1) rotate(12deg); }
    15% { transform: scale(1.1) rotate(-10deg); }
    20% { transform: scale(1.1) rotate(10deg); }
    25% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Mobile Devices Optimization */
@media (max-width: 480px) {
    .whatsapp-right-fixed {
        right: 15px !important;
        bottom: 30% !important;
        width: 50px !important;
        height: 50px !important;
    }
    .counselling-tag {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
    .enquiry-trigger-btn {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
}

body {
    padding-bottom: 70px !important;
}