body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  color: #000000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: #212529;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000 important;
}

.custom-hover-dark:hover {
  background-color: #0d6efd !important; /* black */
  border-color: #0d6efd !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.highlight, span {
  color: #0d6efd;

}

/* Navbar */
#nav {
  background-color: #0d6efd;
  z-index: 1000;
}

/* Nav link styles */
.navbar-light .navbar-nav .nav-link {
  position: relative;
  color: #ffffff; /* Use white text on primary background */
  font-weight: bold;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #ffffff !important;
}

.navbar-light .navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Mobile nav behavior: push content down */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #0d6efd;
    padding: 1rem;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
  }

  .navbar-nav .nav-item {
    margin: 0.5rem 0;
  }
}


/* Hero Section */
.hero-section {
  background-image: url('images/hero-bg1.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  
  width: 100%;
  height: 900px; /* Or use height: 100vh; for full screen */
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  

  color: white;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.hero-img {
  max-height: 400px;
  border-radius: 20px;
  margin-top: 20px;
}

/* About Section */
#about {
  background-color: #f2f4f8;
  padding: 80px 0;
}

#about img {
  border-radius: 10px;
  margin-bottom: 20px;
  width: 100%;
  height: auto;
}

/* Features Section */
#features {
  background-color: #ffffff;
  padding: 80px 0;
}


.mb-3 {
  height: 40px;
  width: 50px;
}

.card {
  border: solid 1px black;
}

/* Promo Section */
#promo.promo-section {
  height: 75vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)),
              url('images/promo-bg.jpg') center/cover no-repeat;
  background-attachment: scroll;
}
.promo-date {
  color: white;
  font-size: 100px;
  font-weight: 1000;
}

.promo-type {
  color: white;
}

/*Feedback*/
#feedback {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/feedback-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  padding: 2rem 0;
}




/* Footer */
/.site-footer {
  background-color: #000000;
  color: #fff;
  padding: 40px 0;
}

.site-footer h5 {
  font-weight: 600;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #fff;
}

.full-width-wrapper {
  width: 100%;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .navbar-collapse {
    background-color: #0d6efd;
  }

  .form-control {
    width: 100%;
  }

  .hero-img {
    width: 100%;
    height: auto;
  }

ul li a.text-secondary:hover {
  color: #0d6efd !important; /* Bootstrap primary blue */
}

}

