/* Preloader overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loader dots */
.loader {
  display: flex;
  gap: 10px;
}

.loader .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgb(226, 174, 42); /* golden */
}

/* Hide preloader after animation */
#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ============================ Navbar ============================ */

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgb(34, 34, 34);
  font-size: 24px;
}

.nav-link {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgb(34, 34, 34);
  font-size: 18px;
  transition: color 0.4s ease;
}

.nav-link:hover { color: rgb(226, 174, 42); }



.donate-btn {
  background-color: rgb(226, 174, 42);
  color: white;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px;
  transition: 0.3s ease;
  text-decoration: none;
}
.donate-btn:hover {
  background-color: rgb(180, 140, 30);
  color: #fff;
  transform: scale(1.05);
}


/* Section */
.programs {
  background-color: rgb(230, 229, 229);
}

.programsec {
  background-color: white;
  border-radius: 40px;
  padding: 20px;
}

.section-heading {
  font-size: 38px;
  font-weight: bold;
  color: rgb(0, 0, 0);
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
}

/* Program Titles */
.program-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: rgb(226, 174, 42);
  font-family: 'Playfair Display', serif;
}

/* Program Text */
.program-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  font-family: 'Nunito', sans-serif;
  margin-bottom: 20px;
}

/* Images */
.program-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* .program-img:hover {
  transform: scale(1.05);
} */


/* ============================ Footer ============================ */

.footer { background-color: #000; border-top: 3px solid rgb(226, 174, 42); }
.footer-title { font-size: 20px; font-weight: 700; color: rgb(226, 174, 42); margin-bottom: 15px; }
.footer-title span { color: #fff; }
.footer-text { font-size: 15px; color: #fff; line-height: 1.8; }
.footer-links a { color: #fff; font-size: 16px; text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: rgb(226, 174, 42); }
.footer-contact li { font-size: 15px; color: #fff; margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid #ddd; padding-top: 15px; font-size: 14px; color: #fff; }



