:root {
    --darkgray: #212329;
    --lightgray: #808080;
    --brightred: #F9423D;
    --graygreen: #6b856d;
    --white: #fff;
    --lightred: #f9433dcc;
    --green:#008e4c;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
}

.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  z-index: 9999;
}

.cookie-popup p {
  margin: 0;
  font-size: 14px;
}

.cookie-popup .button-container {
  margin-top: 10px;
}

.cookie-popup button {
  margin: 0 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  background-color: #007bff;
  cursor: pointer;
}

.privacy-preferences {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  z-index: 9999;
}

.privacy-preferences a {
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
}

/* Navbar */
.nav-container  {
    width: 100%;
    background-color: var(--darkgray);
}

.navbar {
    display: grid;
    grid-template-columns: 0.2fr auto 1fr;
    align-items: center;
    height: 80px;
    width: 90%;
    max-width: 1720px;
    margin: 0 auto;
}

#navbar-logo {
    color: var(--white);
    justify-self: start;
    margin-left: 20px;
}

#navbar-logo a {
    text-decoration: none;
    color: var(--white);
}

#navbar-logo {
    cursor: pointer;
}

.nav-menu {
    display: grid;
    grid-template-columns: repeat(5, auto);
    list-style: none;
    text-align: center;
    width: 70%;
    justify-self: end;
}

.nav-links {
    color: white;
    text-decoration: none;
}

.nav-links:hover {
    color: var(--green);
    transition: all0.2s ease-out;
}

.nav-links-btn {
    background-color: var(--green);
    padding: 6px 16px;
    border-radius: 4px;
}

.nav-links-btn:hover {
    background-color: transparent;
    columns: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    border: solid 1px var(--green);
    transform: all 0.3s ease-out;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: var(--white);
}

@media screen and (max-width: 760px) {
    .nav-container {
        position: relative;
    }

    .nav-menu {
        display: grid;
        grid-template-columns: auto;
        background: var(--darkgray);
        margin: 0;
        width: 100%;
        position: absolute;
        top: 80px;
        left: -100%;
        opacity: 0;
        transition: all 0.5s ease;
    }

    #navbar-logo {
        margin-left: 20px;
    }

    .nav-menu.active {
        background: var(--darkgray);
        left: 0;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 2;
    }

    .nav-links {
        text-align: center;
        line-height: 60px;
        width: 100%;
        display: table;
    }

    .nav-linkes:hover {
        background-color: var(--brightred);
        color: var(--white);
        transition: all 0.4s ease-out;
    }

    .navbar {
        width: 100%;
    }

    .nav-links-btn {
        border: none;
        padding: 0;
        border-radius: 0;
        background-color: var(--darkgray);
        color: var(--white);
        transition: all 0.4s ease-out;
    }

    .nav-links-btn:hover {
        border: none;
        padding: 0;
        border-radius: 0;
        background-color: var(--green);
        color: var(--white);
        transition: all 0.4s ease-out;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .menu-toggle .bar {
        display: block;
        cursor: point;
    }

    .menu-toggle:hover {
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* MAIN BODY */

/* HOME MOS */
body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
  }

h1 {
  font-size: 1.5em;
}

h2 {
    font-size: 1.5em;
    margin-top: 1em;
    margin-bottom: 5px;
    margin-left: 4em;
    margin-right: 4em;
}

h3 {
  font-size: 4em;
  margin-bottom: 30px;
  margin-left: 4em;
  margin-right: 4em;
}

h6 {
  font-size: 1em;
}

p {
    font-size: 1.2em;
    margin-bottom: 40px;
    margin-left: 4em;
    margin-right: 4em;
}


/* Content */
.video-container {
  position: relative;
  height: 500px;
  width: 100%;
}

video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
  opacity: 90%;
  background-color: var(--darkgray);
}

.home {
    height: 500px;
    width: 100%;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
  }

  .our-promise {
    display: flex;
    justify-content: space-around;
    padding: 50px;
    background-color: var(--graygreen);
  }
  
  .promise {
    text-align: center;
    max-width: 100%;
    margin-left: 4em;
    margin-right: 4em;
  }
  
  .promise h2 {
    font-size: 20px;
    color: var(--white);
  }
  
  .promise p {
    font-size: 16px;
    color: var(--white);
  }

/* ABOUT MOS */

  .about-bg {
    height: 450px;
    width: 100%;
    background-image: url(assets/pexels2.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
  }

  .about-txt {
    display: flex;
    justify-content: space-around;
    background-color: var(--white);
  }
  
  .about {
    text-align: left;
    max-width: 100%;
    margin-left: 4em;
    margin-right: 4em;
    margin-top: 4em;
    margin-bottom: 2em;
  }

  .pub-service {
    width: 100%;
    overflow: hidden; /* Clear float */
  }

  .service {
    width: 50%;
    height: 720px;
    float: left; /* Float left */
    box-sizing: border-box; /* Include padding in width */
  }
  
  .gov {
    height: 100%;
    background-color: var(--graygreen);
    padding-top: 2em;
    padding-bottom: 4em;
  }

  .gov h2 {
    margin-bottom: 20px;
    color: var(--white);
  }

  .gov li {
    padding: 4px;
    margin-left: 5em;
    margin-right: 1em;
    color: var(--white);
  }

  .gov p {
    margin-left: 4em;
    color: var(--white);
    text-align: left;
  }
  
  .projects {
    height: 100%;
    background-color: var(--graygreen);
    padding-top: 2em;
    padding-bottom: 4em;
  }

  .projects h2 {
    margin-bottom: 20px;
    text-align: left;
    color: var(--white);
  }

  .projects li {
    padding: 4px;
    margin-right: 4em;
    margin-left: 3em;
    color: var(--white);
  }

  .projects p {
    color: var(--white);
    margin-left: 2em;
  }

  /* PRODUCTS */
  .products {
    height: 750px;
    width: 100%;
    background-image: url(assets/pexels4.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
  }
  
  .products p {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 2em;
  }

  .quote {
    background-color: var(--green);
    border: none; /* Remove border */
    color: white; /* Set text color */
    padding: 20px 40px; /* Set padding */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
    display: inline-block; /* Display as inline block */
    font-size: 20px; /* Set font size */
    margin: 15px; /* Set margin */
    cursor: pointer; /* Add cursor on hover */
    border-radius: 20px;
  }

  .quote:hover {
    background-color: var(--white);
    color: var(--darkgray);
  }

  
  /* SERVICES */
  .services {
    height: 450px;
    width: 100%;
    background-image: url(assets/pexels3.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
  }

  .service-body {
    margin-top: 4em;
    height: 100%;
  }

  .float-container {
    width: 100%;
    overflow: hidden; /* Clear float */
  }
  
  .float-child1 {
    width: 20%;
    float: left; /* Float left */
    box-sizing: border-box; /* Include padding in width */
    margin-left: 4em;
    margin-right: 1em;
    margin-bottom: 2em;
  }
  
  .float-child2 {
    width: 60%;
    float: left; /* Float left */
    box-sizing: border-box; /* Include padding in width */
    margin-left: 1em;
    margin-bottom: 2em;
  }

  .blue h2 {
    margin-left: 2.6em;
  }

  .blue p {
    font-size: 16px;
  }

  /* CONTACT */
  .contact {
    height: 450px;
    width: 100%;
    background-image: url(assets/pexels6.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
  }

  .float-contact {
    width: 100%;
    overflow: hidden; /* Clear float */
    margin-top: 4em;
    margin-bottom: 4em;
  }
  
  .float-box {
    width: 50%;
    float: left; /* Float left */
    box-sizing: border-box; /* Include padding in width */
  }
  
  .form {
    height: 100%;
    margin-left: 4em;
    margin-right: 1em;
  }
  
  .info {
    height: 100%;
    margin-left: 1em;
    margin-right: 4em;
  }

  /* CSS styles for the form */
  form {
    max-width: 500px;
    margin: 0 auto;
  }

  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  label p {
    margin: 0;
  }

  input[type=text], input[type=email], textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  textarea {
    height: 150px;
  }

  button[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  button[type=submit]:hover {
    background-color: #45a049;
  }

  .form-message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
  }

  .form-success {
    background-color: #e6ffe6;
    border: 1px solid #006600;
    color: #006600;
  }

  .form-error {
    background-color: #ffe6e6;
    border: 1px solid #cc0000;
    color: #cc0000;
  }

  /* ALLIANCE */
.alliance {
  height: 650px;
  width: 100%;
  background-image: url(assets/pexels5.jpg);
  background-size: cover;
  opacity: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  }
  


/* FOOTER */
.footer {
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-color: var(--darkgray);
  }

  .footer p {
    font-size: 15px;
  }
