Chat with us
/* WhatsApp Button Styling */
.whatsapp-float {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #25d366;
color: #FFF;
border-radius: 50px;
text-align: center;
padding: 10px 20px;
box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
z-index: 1000;
display: flex;
align-items: center;
text-decoration: none;
font-family: Arial, sans-serif;
transition: transform 0.3s ease;
}
.whatsapp-float:hover {
transform: scale(1.05);
background-color: #128c7e;
color: #fff;
}
.whatsapp-icon {
width: 30px;
height: 30px;
margin-right: 10px;
}
/* Mobile responsive - agar sirf icon dikhana ho */
@media screen and (max-width: 767px) {
.whatsapp-float span {
display: none;
}
.whatsapp-float {
padding: 12px;
border-radius: 50%;
}
.whatsapp-icon {
margin-right: 0;
}
}