body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Common style for floating icons */
.floating-icon {
  position: fixed;
  width: 60px;
  height: 60px;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 28px;
  z-index: 999;
  animation: bounce 2s infinite;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

/* WhatsApp Icon */
.whatsapp {
  background-color: #25D366;
  bottom: 100px;
 left: 20px;
}

/* Call Icon */
.call {
  background-color:#00AFD6;
  bottom: 30px;
  left: 20px;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Hover effect */
.floating-icon:hover {
  transform: scale(1.1);
}
