/* / HEADER  / */
.logo img {
    width: 120px;
    
  }
  
  .navbar-one {
    background-color: #004382;
    color: #fff;
    /* / height: 40px; / */
    cursor: pointer;
    display: flex;
    /* / justify-content: space-between; / */
    align-items: center;
    padding: 10px;
  }
  
  .contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .main-head {
    display: flex;
    justify-content: space-between;
  }
  
  .left-h,
  .right-h {
    display: flex;
    align-items: center;
    /* / justify-content: space-between; / */
  }
  
  .left-h a {
    color: var(--white-color);
    text-decoration: none;
    border: 1px solid white;
    border-radius: 100%;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
  }
  
  .left-h a:hover {
    color: #f97700;
    text-decoration: none;
    border: 1px solid #f97700;
  }
  
  .facebook,
  .twitter,
  .linkedin,
  .Youtube {
    margin-right: 10px;
  }
  
  /* .contact-info {
    / padding-left: 200px; /
  } */
  
  /* / floating success image  css/ */
  .icon-bar {
    position: fixed;
    top: 70%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99999;
    width: 20%; /* Set the width to match the image width */
  }
  
  .icon-bar img {
    width: 100%; /* Make the image fill the entire width of its container */
    height: 100%; /* Make the image fill the entire height of its container */
  }
  
  .icon-bar a {
    display: block;
    text-align: center;
    padding: 0; /* Remove padding to ensure the link is the exact size of the image */
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
  }
  
  .icon-bar a:hover {
    background-color: #000;
  }
  
  /* / floating success image / */
  
  /* / Language buttons / */
  .language-buttons {
    display: flex;
  }
  
  .language-button {
    width: 70px;
    height: 30px;
    margin-left: 10px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s;
  }
  
  .language-button:hover {
    background-color: #f97700;
  
  }
  .below-text-logo{
    color: #fff;
   
     size: -5px;
  
  }
  
  
  /* / Navbar-second styles / */
  .navbar-second {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.6); 
  
    border-bottom: 1px solid #fff;
    position: absolute;
    top: 50px;
    z-index: 111;
  
  }
  
  .logo-text h2 {
    margin: 0;
    font-size: 18px;
    color: #fff;
  }
  
  .navigation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  width: 100%;
  
  }
  
  
  .navigation-list li {
    margin: 0 10px;
  }
  
  .navigation-list li {
    position: relative;
  }
  
  .navigation-list li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
    /* / width: fit-content; / */
    width: max-content;
  }
  
  /*underline hover effect */
  .navigation-list li::after {
    content: '';
    height: 3px;
    width: 0;
    background: #f97700;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: width 0.5s;
  }
  
  /* / Hover effect for  links / */
  .navigation-list li:hover::after {
    width: 100%;
  }
  
  .navigation-list li:hover a {
    /* color: #f97700; */
  }
  
  
  .search {
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
  }
  
  .icofont-search-1 {
    color: #fff;
    font-size: 15px;
    /* / Adjust icon size as needed / */
    cursor: pointer;
    /* / padding: 13px; / */
  }
  
  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    gap: 10px;
  }
  
  .header-right-side {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .toggleMenu {
    display: none;
  }
  
  .toggleMenu i {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
  }
  
  .logo-container-mobile {
    display: none;
  }
  
  
  header {
    background-color: #100D2C;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    z-index: 4;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .sticky {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    z-index: 99;
    background-color: #004382;
  }
  
  .hamburger-menu {
    display: none;
  }
  
  .close-btn {
    display: none;
  }
  /* / Your existing CSS styles / */
  
  /* / Add styles for the submenu and sub-submenu / */
  /* .submenu {
    display: none;
    position: absolute;
    background-color: #004382;
    padding: 10px;
    transition:all 0.5s ease-in;
  } */
  
  .submenu li {
    margin: 10px 0;
  }
  
  .submenu a {
    color: #fff;
    text-decoration: none;
  }
  
  .submenu a:hover {
    color: #f97700;
  }
  
  .sub-btn:hover .submenu {
    display: block;
  }
  
  .sub-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color:#fff;
    padding:10px;
  
  }
  .sub-submenu a{
    padding-bottom: 5px;
  }
  
  .submenu li:hover .sub-submenu {
    display: block;
  } 
  
  
  .header-menu ul li .submenu {
    position: absolute;
    text-align: left;
    left: 0;
    top: 75px;
    min-width: 200px;
    background-color: #fff;
    padding: 15px 0;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }
  
  .header-menu ul li .submenu li {
    display: block;
    margin: 0;
  }
  
  .header-menu ul li .submenu li a {
    padding: 5px 20px;
    display: inline-block;
    color: #100D2C;
  }
  
  .header-menu ul li .submenu li a::before {
    display: none;
  }
  
  .header-menu ul li .submenu li a:hover {
    color: #f97700;
  }
  
  .header-menu ul li:hover .submenu {
    top: 35px;
    opacity: 1;
    visibility: visible;
  }
  
  .contact-emails a {
    color: rgb(255, 255, 255);
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
  }
  
  .contact-emails a:hover {
    color: #FD8B04;
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
  }
  
  .contact-emails {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .table-head-decoration .application-link a {
    color:#004382; /* Set the default text color */
    /* font-weight: bold; */
    transition: color 0.3s ease; /* Add a smooth transition effect */
  }
  
  .table-head-decoration .application-link a:hover {
    color: #F97700; /* Set the hover text color */
  }
  
  .service-content .four-link a{
    color:#004382; /* Set the default text color */
    /* font-weight: bold; */
    transition: color 0.3s ease; /* Add a smooth transition effect */
    text-decoration: none;
  
  }
  .service-content .four-link a:hover{
    color: #F97700; /* Set the hover text color */
  }
  
  @media only screen and (max-width: 1400px) {
    .navbar-second {
      padding: 10px 0;
    }
  }
  @media only screen and (max-width: 1200px) {
    .navbar-one {
      display: none;
    }
    .search {
      margin-left: 12px;
  }
    .navbar-second {
      top: 0px;
    }
  
    .header-menu ul li a {
      text-align: right;
      font-size: 22px;
    }
    .mobile-flex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 100%;
    }
  
    .close-btn {
      position: absolute;
      right: 15px;
      top: 15px;
      color: #EFECFF;
      font-size: 26px;
      cursor: pointer;
      -webkit-transition: all 0.4s ease-in-out;
      -o-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out;
      display: block;
    }
  
    .hamburger-menu {
      color: #fff;
      font-size: 23px;
      cursor: pointer;
      -webkit-transition: 0.4s ease-in-out;
      -o-transition: 0.4s ease-in-out;
      display: block;
      transition: 0.4s ease-in-out;
    }
  
    .navigation-list {
      flex-direction: column;
      gap: 15px;
    }
  
    .header-menu {
      position: fixed;
      right: -100%;
      padding-top: 60px !important;
      top: 0;
      width: 300px;
      height: 100vh;
      padding-bottom: 50px;
      overflow-y: auto;
      padding: 10px;
      background-color: #004382;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      z-index: 2;
      -webkit-transition: all 0.4s ease-in-out;
      -o-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out;
      -webkit-transition-property: right;
      -o-transition-property: right;
      transition-property: right;
    }
  
    .header-menu.active {
      right: 0;
    }
  
    .header-menu ul li a {
      text-align: right;
      font-size: 16px;
    }
  
    .header-menu ul li:hover .submenu {
      top: 0px;
    }
  
    .header-menu ul li .submenu {
      display: none;
      position: inherit;
      top: 0px;
      margin-top: 10px;
      margin-left: 9px;
      min-width: auto;
      background-color: transparent;
      padding: 0 0;
      opacity: 1;
      visibility: visible;
      -webkit-transition: none;
      -o-transition: none;
      transition: none;
    }
  
    .header-menu ul li .submenu li a {
      padding: 5px;
      display: inline-block;
      color: #fff;
    }
  }
  .e-service-btn {
    background-color: #FD8B04;
    color: #fff;
    font-size: 14px;
    text-align: center;
    display: block;
    width: 100%;
    padding: 4px 10px 4px 12px;
    border: 1px;
    
    
  }
  .e-tender-btn{
    background-color: #FD8B04;
    color: #fff;
    text-align: center;
    font-size: 14px;
    display: block;
    width: 100%;
    padding: 4px 14px 4px 14px;
    border: 1px;
    
  }
  
  @media (max-width: 768px) {
    .icon-bar {
           height: auto;
           width: 200px;
       }
   }
   
   @media (max-width: 475px) {
   .icon-bar {
           height: auto;
           width: 150px;
       }
   }
  
  
  
  
  
  