body {
  font-family: Arial, sans-serif;
}
.navbar-toggler {
  border: none !important; /* remove default border */
  box-shadow: none !important; /* remove default shadow */
  outline: none !important; /* remove focus outline */
}

.navbar-toggler:focus,
.navbar-toggler:active {
  border: none !important; /* remove border on click/focus */
  box-shadow: none !important; /* remove shadow on click/focus */
  outline: none !important; /* remove outline on click/focus */
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 88, 182, 0.6), rgba(0, 0, 0, 0.6)),
    url("../../static/images/Laguna_Provincial_Capitol,_Dec_2023_(1).jpg")
      no-repeat center center;
  background-size: cover;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-hero {
  background-color: #007bff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

.btn-hero:hover {
  background-color: #0056b3;
}

/* Features Section */
.features {
  padding: 5rem 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 3rem;
  /* color: #007bff; */
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: #007bff;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

/* Call to Action Section */
.cta {
  background-color: #007bff;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.btn-cta {
  background-color: white;
  color: #007bff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 5px;
}

.btn-cta:hover {
  background-color: #e6e6e6;
}

/* Mobile navbar background white */
@media (max-width: 991.98px) {
  .navbar {
    background-color: white !important; /* full navbar white */
  }

  .navbar-collapse {
    text-align: center; /* center links */
  }

  .navbar-collapse .navbar-nav {
    flex-direction: column; /* stack links vertically */
    align-items: center; /* center horizontally */
  }

  .navbar-collapse .nav-item {
    margin: 0.5rem 0; /* spacing between links */
  }

  .navbar-toggler {
    z-index: 1051; /* ensures toggler is on top */
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .main-content {
    zoom: 85%;
  }
}


