@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;600;700&display=swap');

body {
  font-family: 'Figtree', sans-serif;
  scroll-behavior: smooth;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)),
              url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

h2 {
  color: #212529;
}

footer {
  font-size: 0.9rem;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
}
.floating-whatsapp:hover {
  background-color: #20b857;
  transform: scale(1.05);
}

/* Map Wrapper */
.map-wrapper iframe {
  border-radius: 10px;
}
#contact h4 {
  color: #222;
}
#contact p {
  font-size: 1rem;
  line-height: 1.6;
}
#contact .btn {
  border-radius: 10px;
  padding: 10px 24px;
}
