/* Container for the logo */
.logo {
  display: flex;
  align-items: center; /* vertically center if text exists */
  justify-content: flex-start; /* align to left */
  position: absolute; /* fix it to the corner */
  top: 0;
  left: 10px;
  padding: 5px; /* optional spacing from edges */
  z-index: 1000; /* make sure it’s above other elements */
}

/* Size only the image */
.logo-img {
  width: 80px;
  height: auto;
  vertical-align: middle;
  margin-right: 8px;
}

/* Glitter effect on hover */
.logo:hover .logo-img {
  filter: drop-shadow(0 0 5px gold) drop-shadow(0 0 10px orange);
  animation: glitter 1.5s infinite alternate;
}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease-in-out;
  animation: pulse 1.5s infinite;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

/* Notification Badge */
.whatsapp-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: red;
  color: white;
  font-size: 14px;
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 1s infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Bounce Animation for Badge */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes glitter {
  0% {
    filter: drop-shadow(0 0 5px gold) drop-shadow(0 0 10px orange);
  }
  50% {
    filter: drop-shadow(0 0 15px gold) drop-shadow(0 0 20px orange);
  }
  100% {
    filter: drop-shadow(0 0 5px gold) drop-shadow(0 0 10px orange);
  }
}
