/* Mobile Dialer Floating Icon */
.dialer-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 95px; /* Positioned just above the WhatsApp icon (which is at 30px) */
    right: 20px;   /* Moved to right side */
    background-color: #007bff; /* Action Blue */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px; /* Reduced to balance visual weight against WhatsApp icon */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dialer-float:hover {
    color: #FFF;
    background-color: #0056b3;
    transform: scale(1.1);
}

/* Ensure it is ONLY visible on mobile screens */
@media (min-width: 769px) {
    .dialer-float {
        display: none !important;
    }
}
