  .top-header {
      background-color: #FEBF02;
      font-size: 14px;
      padding: 5px 0;
  }

  .navbar-brand img {
      height: 40px;
  }

  .nav-link {
      font-weight: 500;
      color: black !important;
  }

  .nav-link:hover {
      color: #FEBF02 !important;
  }

  .round {
      border-radius: 50px;
  }

  .shad {
      box-shadow: 2px 0px 37px -12px #FEBF02;
  }


  /* Container */
#whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: center;
  z-index: 9999;
}

/* WhatsApp Icon */
.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

/* Hidden Message (initially hidden) */
#whatsapp-message {
  display: none;
  background: #25D366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.5s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

