* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
  animation: pulse-animation 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #fff;
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(37, 211, 102, 0);
  }
}

/* Sticky Call Bar */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #2e7d32;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 10000;
  gap: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}

.sticky-call-bar span {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.sticky-call-bar svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Update WhatsApp Float Position */
.whatsapp-float {
  bottom: 80px !important;
}
