html {
   height: 100%; 
   overflow-x: hidden;
}
body {
     
    height: 100%;  
  margin: 0;
  padding: 0;
  background-color: #16171b;
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 0.5s ease;
 
}
* {
  outline: 0px solid red;
}
.mobile-header {
  display: none;
}







  

.header-background {
  background-color: #16171b;
  width: 100%;
   
}
.header {
    max-width: 1200px;
    padding: 5px 40px;
    margin: 0px auto;
    overflow-x: hidden;
    display: block;
     
 display: flex;
    align-items: center;
    justify-content: space-between;
    
    

  }

  
  .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;
    font-weight: 900;
  }


  .header-nav {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    gap: 20px;
   
   
  
  }


  .nav {
    display: flex;
  }

  .nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
  }

  .nav li {
    margin: 0;
  }


  .header-nav button {
    margin-left: 40px;
    background-color: #3d6d4c;
    border: 0;
    border-radius: 3px;
    color: #ffffff;
    padding: 5px 15px;
    font-size: 15px;
    font-family: "Quantico", sans-serif;
  }

 .nav a {
   font-family: "Quantico", sans-serif;
  font-weight: 400; /* important */
  text-decoration: none;
  
  color: #ffffff;
  font-size: 22px;
  padding-bottom: 4px;
}

  .nav a:hover {
    color: #5C946E;
    border-bottom: 2px solid #5C946E;
  }



.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.nav-links {
  display: flex;  /* horizontal links on desktop */
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0px 0px 0px 0px;
}











.hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  padding-top: 100px;
  align-items: center;
  text-align: center;
}

.hero-h1,.hero-p {
 
  font-family: "Quantico", sans-serif;
}

.hero-h1 {
  font-size: 60px;
  margin: 0%;
  padding: 0%;
  font-weight: 700 ;
color: #ffffff;  
letter-spacing: -1px; 
}

.hero-p {
  font-size: 25px;
  margin: 0px 0px 20px 0px;
letter-spacing: -1px; 
}



















.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;
  }
.footer-background {
    display: flex;
}



  .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;
  }







  .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;
  }











  .footer-style {
    grid-template-columns: 1fr;   /* 🔥 STACK EVERYTHING */
    gap: 20px;
    text-align: center;
  }

  .footer-div {
    text-align: center;
  }


















}
