/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}
.whatsapp-float img {
  width: 40px;
  height: 40px;
}
.whatsapp-tooltip {
  font-weight: bold;
  white-space: nowrap;
}

/* Intro section color fix */
section.py-5.text-center {
  background-color: #f8f9fa; /* light gray background */
  color: #0a0a0a; /* dark text */
}
