whatsapp button

<!-- WhatsApp Floating Button -->
<a href="https://wa.me/923030639167" class="whatsapp-float" target="_blank">
  <img src="https://cdn-icons-png.flaticon.com/512/733/733585.png" alt="WhatsApp Chat">
</a>

<style>
.whatsapp-float{
  position: fixed;
  width:60px;
  height:60px;
  bottom:20px;
  right:20px;
  z-index:9999;
  cursor:pointer;
}

.whatsapp-float img{
  width:100%;
  height:100%;
  border-radius:50%;
  box-shadow:0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover{
  transform: scale(1.1);
}
</style>