.home-hero {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("../picture/home-hero-background.JPG");

  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  padding-top: 190px;
  align-items: center;
  text-align: center;
}

.home-hero-h1,
.home-hero-p {
  font-family: "Quantico", sans-serif;
}

.home-hero-h1 {
  font-size: 70px;
  margin: 0%;
  padding: 0%;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
}

.home-hero-p {
  font-size: 25px;
  margin: 0px 0px 20px 0px;
  letter-spacing: -1px;
}

.home-hero-button {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding-top: 20px;
}

.home-hero-button-style {
  font-family: "Quantico", sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 15px 35px;
  color: white;
  background-color: #5c946e00;
  /* army green vibe */
  border: 2px solid #2A2D34;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.home-hero-button-style:hover {
  background-color: #3d6d4c;
  /* darker on hover */
  border-color: #5C946E;
  /* subtle contrast */
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
  /* slight lift effect */
}






.section1 {
  background-color: #16171b;
  max-width: 1200px;
  padding: 0px 50px;
  margin: 0px auto;
  overflow-x: hidden;
  display: block;

}

.section1 h2 {
  font-family: "Quantico", sans-serif;
  color: #ffffff;
  text-align: center;
  margin-top: 35px;
  font-size: 30px;
}

.section1 h3 {
  font-family: "Quantico", sans-serif;
  color: #ffffff;
  text-align: center;
  margin-top: 35px;
}

.feature-style {
  gap: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 20px;
}

.feature-button {
  font-family: "Quantico", sans-serif;
  padding: 15px 20px;
  font-size: 20px;
  border-radius: 5px;

}

.feature-button:hover {
  color: #ffffff;
  background-color: #3d6d4c;
  /* darker on hover */
  border-color: #5C946E;
  /* subtle contrast */
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
  /* slight lift effect */

}



.section2 {

  max-width: 1200px;
  padding: 0px 50px 0px 50px;
  margin: 90px auto;
  overflow-x: hidden;
  display: block;


}

.section2 h2 {
  font-family: "Quantico", sans-serif;
  color: #ffffff;
  text-align: center;
  font-size: 39PX;
  padding: 0%;
  margin: 0%;

}

.section2 h3 {
  font-family: "Quantico", sans-serif;
  color: #ffffff;
  text-align: center;
  margin-top: 5px;

}

.cutoff-scores-style {
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 per row */
  justify-content: center;
}

.cutoff-scores-button {
  box-sizing: border-box;
  padding: 10px 20px;
  font-size: 20px;
  font-family: "Quantico", sans-serif;
}

.cutoff-scores-button:hover {
  color: #ffffff;
  background-color: #3d6d4c;
  /* darker on hover */
  border-color: #5C946E;
  /* subtle contrast */
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
  /* slight lift effect */

}



.call-background {
  position: relative;
  background-image: url("../picture/call-background.JPG");

  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* vertical center */
  text-align: center;
}

.call-background::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.6);
  /* 0 = fully transparent, 1 = fully black */
}

.call-background h2 {
  font-family: "Quantico", sans-serif;
  font-size: 60px;
  color: #f8f8f8;
  z-index: 1;
  /* bring text above overlay */
  position: relative;
  /* needed for z-index to work */
  margin: 50px 0px 0px 0px;
  padding: 0;
  text-shadow:
    2px 2px 3px black,
    /* main dark shadow for depth */
    0 0 5px rgba(255, 255, 255, 0.185);


}

.call-background p {
  font-family: "Quantico", sans-serif;
  font-size: 30px;
  color: #f8f8f8;
  z-index: 1;
  /* bring text above overlay */
  position: relative;
  /* needed for z-index to work */
  padding: 0;
  margin: 0;
  text-shadow:
    2px 2px 3px black,
    /* main dark shadow for depth */
    0 0 5px rgba(255, 255, 255, 0.185);
}

.call-background button {
  font-family: "Quantico", sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 15px 35px;
  color: white;
  position: relative;
  background-color: #5c946e00;
  /* army green vibe */
  border: 2px solid #ffffff;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1;
  /* bring text above overlay */
  /* Shadow for depth */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 40px;
}

.call-background button:hover {
  position: relative;
  z-index: 1;
  /* bring text above overlay */
  background-color: #3d6d4c;
  /* darker on hover */
  border-color: #5C946E;
  /* subtle contrast */
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
  /* slight lift effect */
}










.footer-background {
  background-color: #2A2D34;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* center everything horizontally */

  margin: 0 auto;
  padding: 25px 50px 0px 50px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* center all child sections */
  max-width: 1200px;
  width: 100%;
  padding: 0%;
  margin: 0%;

}

.footer-logo a {
  font-family: "Quantico", sans-serif;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  color: #ffffff;
  font-size: 22px;

  padding-bottom: 4px;
  list-style: none;
  white-space: nowrap;
  font-size: 35px;
  font-weight: 900;

}

.footer-style {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  /* center the grid horizontally */
  gap: 40px;
  text-align: center;
  /* center text inside each div */
  width: 100%;
  padding-bottom: 40px;
}



.footer-div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-div h4,
p {
  font-family: "Quantico", sans-serif;
  color: #f8f8f8;
  margin: 0%;
  margin-bottom: 10px;


}

.footer-div a {
  font-size: 18px;

}

.footer-div h4 {
  font-size: 25px;
}

.footer-div a {
  font-family: "Quantico", sans-serif;
  color: #f8f8f8;
}









.footer-divider {
  width: 100vw;
  max-width: 100vw;
  margin: 20px 0;
  padding: 0%;
  margin: 0%;
  border: none;
  height: 1px;
  background-color: #ffffff;

}

.footer-section2 {
  font-family: "Quantico", sans-serif;
  text-align: center;
  /* center h1 and p elements */
  padding: 0%;
  margin: 0%;
  color: #f8f8f8;
  font-size: 14px;
}






























@media (max-width: 600px) {

  .header-background {
    display: none;
  }




  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px 5px 15px;
    background-color: #16171b;
    z-index: 100;
  }

  .mobile-logo a {
    font-family: "Quantico", sans-serif;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    color: #ffffff;
    font-size: 22px;
    padding-bottom: 4px;
    list-style: none;
    white-space: nowrap;
    font-size: 30px;
  }



  /* Hamburger button */
  .mobile-menu-button {
    display: inline-block;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: relative;
    background-color: #16171b;
  }

  .mobile-menu-button span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    transition: 0.3s;

  }

  .mobile-menu-button.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-button.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Mobile nav */
  .mobile-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #16171b;
    flex-direction: column;
    align-items: left;
    padding: 20px 0;
    z-index: 99;
    background-color: #16171b;
  }

  .mobile-nav.active {
    display: flex;
    background-color: #16171b;
  }

  .mobile-nav a {
    font-size: 20px;
    color: #b6b6b6;
    padding: 0px 0px 10px 15px;
    font-family: "Quantico", sans-serif;
    font-weight: 400;
    /* important */
    text-decoration: none;
  }

  .mobile-nav a:hover {
    color: #5C946E;
  }





  .home-hero {
    padding: 0px 15px 0px 15px;

  }

  .hero-h1,
  .hero-p {

    font-family: "Quantico", sans-serif;
  }

  .hero-h1 {
    font-size: 50px;
    margin: 0%;
    padding: 50px 0px 0px 0px;
    line-height: 60px;
  }

  .hero-p {
    font-size: 23px;
    margin: 0%;
    padding: 0%;
  }



  .home-hero-button {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-top: 20px;
  }

  .hero-button {
    font-size: 15px;
    padding: 10px;
  }






  .section1 {
    padding: 0px 15px 0px 15px;

    overflow-x: hidden;
    display: block;

  }

  .feature-button {
    padding: 10px 20px;
    font-size: 10px;

  }


  .section2 {
    padding: 0px 15px 0px 15px;

    overflow-x: hidden;
    display: block;

  }



}
