body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

.hero {
  background-attachment: fixed;
  color: #fff;
}

.card img {
  height: 200px;
  object-fit: cover;
}

footer {
  font-size: 14px;
}


.hero-slide {
  position: relative;
  color: #fff;
}

.navbar .nav-link.active {
  color: #fff !important;
  font-weight: 700;
  border-bottom: 2px solid #fff;
}

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


.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.text-shadow {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}


/* WhatsApp Floating Icon (Fixed on Scroll) */
.whatsapp-float {
  position: fixed;              /* stays in place while scrolling */
  bottom: 20px;                 /* distance from bottom edge */
  right: 20px;                  /* distance from right edge */
  z-index: 9999;                /* ensures it stays on top of everything */
  background-color: #25d366;    /* WhatsApp green */
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
  transform: scale(1.1);
}


/* Call Floating Button (above WhatsApp) */
.call-float {
  position: fixed;
  bottom: 90px; /* WhatsApp se upar */
  right: 20px;
  z-index: 9999;
  background-color: #007bff;
  border-radius: 50px;
  padding: 10px 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.call-icon {
  width: 30px;
  height: 30px;
}

.call-number {
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.call-float:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}
