 @font-face {
      font-family: 'Red Hat Display';
      src: url('../fonts/static/RedHatDisplay-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
    }

    @font-face {
      font-family: 'Red Hat Display';
      src: url('../fonts/static/RedHatDisplay-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
    }

    body {
      font-family: 'Red Hat Display', sans-serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


    .mobile {
 	display: none !important;
 }

 .desktop {
 	display: block !important;
 }

 @media only screen and (max-width: 768px) {
 	.desktop {
 		display: none !important;
 	}

 	.mobile {
 		display: block !important;
 	}
 }



    header {
      background: #F2F2F2;
      padding-bottom: 26px;
    }

    .header_div {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      max-width: 1200px;
      margin: auto;
      height: 60px;
      position: relative; /* For absolute positioning from child */
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    /* nav {
      height: 100%;
    } */

    .nav-list {
      display: flex;
      gap: 20px;
      list-style: none;
      margin: 0;
      padding: 0;
      height: 100%;
      align-items: flex-end;
    }

    .nav-list li {
      position: relative;
      height: 100%;
      display: flex;
      align-items: flex-end;
    }

 .arrow-icon {
  font-size: 12px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Rotate icon on toggle */
.arrow-icon.rotate {
  transform: rotate(180deg);
}

/* Make sure text aligns right */
.projects-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}

/* Dropdown mobile style */
@media (max-width: 768px) {
  .mobile-projects .dropdown-menu-custom {
    display: flex;
    flex-direction: column;
    padding-left: 0px;
    margin-top: 5px;
  }

  /* Remove absolute if previously applied */
  .dropdown-menu-custom {
    position: static !important;
  }

  .projects-text {
    flex-grow: 1;
  }
}
    .nav-list a {
      color: #004071;
      text-align: center;
     font-style: normal;
    font-variant: normal;
    font-weight: 500; /* 'medium' is equivalent to 500 */
    font-size: 12px;
    line-height: 17px;
    font-family: 'Red Hat Display', sans-serif;
      letter-spacing: 0px;
      opacity: 1;
      text-decoration: none;
      padding: 0 10px;
      height: 100%;
      display: flex;
      align-items: flex-end;
    }

    /* Bottom border that touches the bottom of .header_div */
    .nav-list li::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -26px; /* This equals header's padding-bottom to reach the bottom of header_div */
      height: 5px;
      background-color: transparent;
      transition: background-color 0.3s;
    }

    .nav-list li.active > a{
        font-weight: 600;
    }

  .nav-list > li:hover > a{
color: #88C86F;
  }
.nav-list li.active::after {
  background-color: #88C86F;
  font-weight: 600;
}

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      /* transition: font-size 0.3s ease; */
    }
    .close-menu {
  display: none;
  font-size: 2rem;
  font-weight: bold;
  text-align: right;
  padding: 0 20px;
  cursor: pointer;
}
.footer{
    background: #F2F2F2 0% 0% no-repeat padding-box;
    padding-top: 80px;
    padding-bottom: 50px;
}


.footer-flex{
    display: flex;
     justify-content: space-around;
         align-items: flex-start;
       /* align-items: center; */
}


.address{
    padding-top: 40px;
    width: 300px;
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: 500; /* 'medium' is equivalent to 500 */
    font-size: 14px;
    line-height: 17px;
    font-family: 'Red Hat Display', sans-serif;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}
.footer-menu-list-items ul {
  list-style: none;       /* removes bullet/dot */
     text-align: right;

  padding-left: 0;        /* removes default indent */
}

.footer-menu-list-items ul li a{
  text-align: right;
    font-style: normal;
    font-variant: normal;
    font-weight: 500; /* 'medium' is equivalent to 500 */
    font-size: 12px;
    line-height: 17px;
    font-family: 'Red Hat Display', sans-serif;
    letter-spacing: 0px;
    color: #000000;
text-decoration: none;
}

#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s ease;
}

.hide-header {
 top: -100px !important;
}


#projects-dropdown {
  display: none;
  position: absolute;
  top: 9%;
  left: 0;
  width: 100%;
   background: var(--unnamed-color-004071, #004071) 0% 0% no-repeat padding-box;
  padding: 8px 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  z-index: 999;
}

.project-submenu {
  /* flex: 1; */
  padding: 0 20px;
}
.project-submenu a {
  color: #fff;
   font-style: normal;
    font-variant: normal;
    font-weight: 500; /* 'medium' is equivalent to 500 */
    font-size: 12px;
    line-height: 17px;
    font-family: 'Red Hat Display', sans-serif;
  text-decoration: none;
}
.project-submenu a:hover {
  text-decoration: none;
}

img.ft-lg {
    padding: 2%;
    padding-left: 30%;
}

.custom-dropdown:hover .dropdown-menu-custom {
  display: block;
}
.dropdown-menu-custom {
display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 26px;
    background: var(--unnamed-color-004071, #004071) 0% 0% no-repeat padding-box;
    min-width: 120%;
    /* padding: 15px; */
    font-weight: 500;
    z-index: 999;
    text-transform: uppercase;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-bottom: 10%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.dropdown-menu-custom a {
  display: block;
  padding: 10px 15px;
    color: #fff;
   font-style: normal;
    font-variant: normal;
    font-weight: 500; /* 'medium' is equivalent to 500 */
    font-size: 12px;
    line-height: 17px;
    font-family: 'Red Hat Display', sans-serif;
  text-decoration: none;
  text-align: left;
}
.dropdown-menu-custom a:hover {
 
  color:  #88C86F;
}

.header-space{
    height: 10vw;
}
.gradient-bar {
  height: 10px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #004071 0%,
    #88C86F 0%,
    #4A9449 37%,
    #1C75BB 57%,
    #1B75BB 80%,
    #004071 100%
  );
  opacity: 1;
}


.dropdown-menu-custom a.active {
    background: #fff;
    color: #004071;
    font-weight: 600;
    border-bottom: 3px solid #88C86F;
}


    /* Mobile Styles */
   @media (max-width:768px) {
      .header_div {
        justify-content: space-around;
        align-items: center;
      }
    header {
        padding-bottom: 10px;
    }
     .close-menu {
    display: block;
  }
  .dropdown-menu-custom {
    top: 20%;
    left: -100px;
  }
  .footer{
    background: #F2F2F2 0% 0% no-repeat padding-box;
    padding-top: 40px;
  }
     nav {
        position: absolute;
        top: 65px;
        right: 0;
        background: #dee2e691;
        opacity: 1;
        backdrop-filter: blur(21px);
        -webkit-backdrop-filter: blur(21px);
        width: 100%;
        display: none;
        padding: 10px 0;
        /* padding-right: 10%; */
    }

    .nav-list li{
          flex-direction: column;
    }
    .nav-list li::after {
  content: '';
  position: absolute;
        top: 0px;
        left: unset;
        bottom: 10px;
        right: 0;
        width: 10px;
        height: 30px;
  background-color: transparent;
  transition: background-color 0.3s;
}

.nav-list li.active::after {
  background-color: #88C86F;
}
.menu-toggle.active {
  font-size: 2rem;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    width: 75%;
}

.footer-flex {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    /* align-items: center; */
    flex-direction: column;
}
.footer-menu-list-items, .footer-flex-right {
    padding-right: 15%;
}
.address {
      padding-right: 15%;
width: 350px;
    text-align: right;
}
.footer-flex-left img{
      margin-top: 5%;
}
.nav-list li.active > a {
    font-weight: 600;
    margin-right: 10px ;
}
      .nav-list {
        flex-direction: column;
        align-items: flex-end;
           gap: 10px;
        height: auto;
        padding-top: 25%;
        padding-bottom: 25%;
      }

      .nav-list a {
        padding: 8px 20px;
        text-align: left;
        font-size: 20px;
      }
.dropdown-menu-custom{
  padding: 15px;
}
      .menu-toggle {
        display: block;
      }

      nav.active {
        display: block;
      }

     
    }

    
  @media (max-width: 767px) {


  }

      @media only screen  and (min-width : 1224px) {

        .nav-list {
    gap: 10px;
    }
    .header_div {
    justify-content: space-around;
    max-width: 1200px;
    }
    .nav-list a {
    font-size: 12px;
}
}
      @media only screen  and (min-width : 1800px) {

.nav-list a {
    font-size: 14px;
}
        .nav-list {
    gap: 20px;
    }
    .header_div {
    justify-content: space-between;
    max-width: 1300px;
    }
    
}