body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background-color: #05423B !important;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  position: relative;
  color: white;
}
.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-section .prayer-box {
  position: absolute;
  top: 80px;
  right: 50px;
  background: white;
  color: #05423B;
  padding: 15px 20px;
  border-radius: 10px;
  width: 180px;
  text-align: center;
  z-index: 2;
}

/* Promo Boxes */
.promo-box {
  border-radius: 20px;
}

/* Services */
.service-card {
  background: #f8f9fa;
  border: 2px solid #0E9C8E;
  color: #05423B;
  transition: all 0.3s ease;
  font-weight: 600;
}
.service-card:hover {
  background: #0E9C8E;
  color: white;
  transform: translateY(-5px);
}

/* Footer */
.footer-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.footer-link:hover {
  text-decoration: underline;
  color: #fff;
}

footer h5 {
  color: #fff;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section .prayer-box {
    right: 10px;
    top: 60px;
    width: 150px;
  }
  .hero-section {
    height: 80vh;
  }
}