
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Target the active nav link */
/* Target the active nav link */
.nav-link.active {
    text-decoration: underline;          /* Adds underline */
    text-decoration-color: red;          /* Red underline */
    text-decoration-thickness: 2px;      /* Thickness of underline */
    text-underline-offset: 15px;          /* Space between text and underline */
}


.navbar-brand img {
  max-width: 100px;
  margin: 0px 0px 0px -20px;
}

.donate-btn {
    background-color: #e63946;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    transition: 0.3s;
}

.donate-btn:hover {
    background-color: #c70000;
}

/* Hero Section */
/* Hero Carousel Section */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 0 20px;
  text-align: center;
  background-blend-mode: overlay;
  background-color: rgba(60, 32, 5, 0.4);
  margin-top: 100px;
}

.hero-slide h1 {
  font-size: 2.8rem;
  font-weight: 600;
}

.hero-slide p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 15px auto 30px;
}

.btn-learn {
  background-color: #e63946;
  color: #fff;
  border-radius: 25px;
  padding: 10px 25px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-learn:hover {
  background-color: #c70000;
}



/* About Section */
.about {
    padding: 80px 20px;
    background-color: #fffdf8;
}

.about h2 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #c70000;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.divider {
    width: 70px;
    height: 4px;
    background-color: #ff3b3b;
    border-radius: 5px;
    margin: 15px auto 30px;
}

/* Footer */
footer {
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}