/* Background */
body, html {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.bg-overlay {
  height: 100vh;
  width: 100%;
  background: url("banner123.jpg") no-repeat center center/cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  font-size: 40px;
  padding: 20px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

/* Text Animation */
.animate-text {
  font-size: 4.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s forwards;
}

.animate-text.delay {
  animation-delay: 1.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn-group .btn {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
}

.btn-group .btn:hover {
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .animate-text {
    font-size: 1.8rem;
  }
  .btn-group {
    flex-direction: column;
  }
  .btn-group .btn {
    margin: 5px 0;
    width: 100%;
  }
}
.whatsapp_float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 60px;
    right: 120px;
    background-color: #25d366; /* fallback color */
    background-image: url('images/WhatsApp.svg'); /* WhatsApp logo */
    background-size: 60%;   /* adjust size */
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 31px;
    z-index: 100;
}

.whatsapp-icon {
    display: none; /* hide the old icon if using background image */
}

/* for mobile */
@media screen and (max-width: 768px){
    .whatsapp_float {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 20px;  /* smaller screen fix */
      background-size: 55%;
    }
}
