.navbar-nav .nav-link {
  font-weight: 500;
  color: white !important;
}


.navbar-nav .nav-link:hover {
  color: blue !important;
}

.contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
}

.welcome {
  background-image: url('../images/welcome_banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.welcome-heading {
  font-size: 56px;     /* larger size */
  font-weight: 800;      /* thicker */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* optional, helps readability */
}

.welcome-subheading {
  font-size: 24px;
  font-weight: 600;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}


.welcome .overlay {
  background-color: rgba(0, 0, 0, 0.4); /* semi-transparent dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

#mission {
  padding-top: 64px;
  padding-bottom: 64px;
}

#mission h2 {
  color: #b30000; /* Dark red or your brand color */
}

#mission p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 20px;
}


.goals-section {
  background-image: url('../images/background_image1.jpg'); /* Replace with your own */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.goals-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Darker overlay: increase from 0.3 to 0.5 */
  z-index: 0;
}

.goals-section-heading {
  font-size: 70px;     /* larger size */
  font-weight: 800;      /* thicker */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* optional, helps readability */
}

.goals-section .container {
  position: relative;
  z-index: 1;
}

.goal-card {
  background-color: rgba(255, 255, 255, 0.9);
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 15px;
  text-align: center;
}


.goal-card .card-title {
  color: #b30000; /* Or keep #b30000 if you prefer contrast */
  font-size: 24px;
  font-weight: 800;
}

.goal-card .card-text {
  font-size: 16px;
  font-weight: 600;
}


.goal-card:hover {
  transform: translateY(-10px);
}

.goal-card .card-title {
  color: #b30000;
  font-weight: 600;
}
