.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px; /* ✅ زر على اليمين */
  z-index: 9999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}