
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 240px;
  z-index: 1000;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu {
  position: relative;

}
.dropdown-submenu .drop-menu-a{
  font-size: 13px!important;
      border-bottom: 1px solid #58B5ED;
}
.dropdown-submenu > .dropdown-menu {
  left: 100%;
  top: 0;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.navbar .dropdown-submenu{
    min-width: 200px!important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
    background-color: #1c1c1c !important;
    color: white;
  }
  .items-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .width-full {
    width: 100vw;
  }
  
  .mt-30 {
    margin-top: 45px;
  }
  
  .w-246 {
    width: 246px;
  }
  
  @media (max-width: 768px) {
    .md-show {
      display: none;
    }
  }
  
  @media (min-width: 768px) {
    .md-hide {
      display: none;
    }
  }
  /* 
  ******************************
  ******************************
  Header CSS
  ******************************
  ******************************
  */
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  
  .hamburger-icon {
    width: 50px;
    height: auto;
    color: white;
  }
  
  .navbar {
    margin: auto;
    background-color: #000; /* 50% transparent */
    backdrop-filter: blur(1px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
    padding: 20px 50px !important;
  }
  
  .logo img {
    height: 70px;
    width: 70px;
  }
  
  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    padding: 12px 30px;
    border: 0.5px solid #3cb4f6;
    border-radius: 50px;
    background-color: transparent;
  }
  
  .nav-links li {
    font-size: 14px;
    color: white;
    cursor: pointer;
    font-weight: 100;
    transition: color 0.2s;
  }
  
  .nav-links li:hover {
    color: #3cb4f6;
  }
  
  .contact-btn {
    font-family: "Segoe UI", sans-serif;
    background-color: #56abd2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 100;
  }
  

  .contact-btn a {
    color: inherit;
  }
  
  .contact-btn:hover a {
    color: inherit;
  }
  
  /* Hide navbar */
  .navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
  }
  
  .nav-links a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Drop Down Css */
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    width: 217px;
    border-radius: 12px;
    border: 1px solid rgba(60, 180, 246, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
    margin-top: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  
  .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 100;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
  }
  
  .dropdown-menu a:hover {
    background-color: rgba(60, 180, 246, 0.1);
    color: #3cb4f6;
    border-left: 3px solid #3cb4f6;
    padding-left: 25px;
  }
  
  @media (max-width: 1080px) {
    .nav-links {
      gap: 20px;
    }
  }
  
  @media (max-width: 767px) {
    .nav-links,
    .nav-btn {
      display: none;
    }
    .navbar {
      justify-content: space-between;
    }
  }
  
  @media (min-width: 768px) {
    .hamburger-icon {
      display: none;
    }
  }
  
  /* Hamburger Icon Css */
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 20px;
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 80px; /* adjust as per header height */
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 998;
  }
  
  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .mobile-nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 18px !important;
    font-weight: 300;
  }
  
  .mobile-contact {
    align-self: start;
  }
  .mobile-menu.active {
    display: flex;
  }
  
  
  @media (max-width: 767px) {
    .mobile-menu.show {
      display: flex;
    }
  }
  
  /* Hidden by default */
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 20px;
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 998;
    transition: all 0.3s ease;
    padding-bottom: 30px;
    margin: 10px;
    border: 1px solid rgba(60, 180, 246, 0.3);
    border-radius: 3px;
  }
  
  /* Navigation Links */
  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
  }
  
  .mobile-nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
  }
  
  .mobile-contact {
    align-self: start;
  }
  
  /* Show class to toggle display */
  .mobile-menu.show {
    display: flex;
  }
  
  /* Ensure only on mobile */
  @media (min-width: 768px) {
    .mobile-menu {
      display: none !important;
    }
  }
  
  .mobile-menu .dropdown-menu {
    position: static;
    transform: none;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: none;
    box-shadow: none;
    margin: 0;
    padding-left: 20px;
  }
  
  @media (max-width: 768px) {
    .dropdown:hover .dropdown-menu {
      transform: translateX(0%) translateY(0px);
      padding: 0px;
      margin: 0px;
    }
    .dropdown-menu {
      left: 400px !important;
    }
  
    .mobile-nav-links li {
      min-height: 40px;
      display: flex;
      align-items: center;
    }
    .mobile-nav-links li:hover {
      min-height: 40px;
      background-color: rgba(60, 180, 246, 0.1);
      color: #3cb4f6;
      border-left: 3px solid #3cb4f6;
      padding-left: 25px;
    }
  }
  
  /* 
  ******************************
  ******************************
  FOOTER CSS
  ******************************
  ******************************
  */
  
  .footer-hyzero-logo {
    width: 103px;
    height: auto;
    margin-bottom: 14px;
  }
  
  .location,
  .contact-line,
  .emails {
    font-size: 14px;
    margin: 20px 0;
    line-height: normal;
    text-align: center;
    font-weight: 300;
    color: #fff;
  }
  
  .emails {
    line-height: 1.5;
  }
  
  a {
    color: white;
    text-decoration: none!important;
  }
  
  .socials {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    margin-left: 5px;
  }
  
  footer p {
    margin: 0;
  }
  
  .footer {
    max-width: 800px;
    margin: 20px auto 0px auto;
    padding: 30px;
  }
  
  .copyright {
    text-align: center;
    font-size: 13px;
    font-weight: 100;
    color: #c2b5b5;
    margin: 20px 0px 0px 0px !important;
  }
  

  /* Dropdown container */
.navbar .dropdown {
  position: relative;
}

/* Hide menu initially */
.navbar .dropdown-menu {
  display: none;
  position: absolute;
  background: #ffffff;
  top: 100%;
  right: 0;
  min-width: 300px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 999;
}

/* Dropdown links */
.navbar .dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  font-size: 15px;
}
.drop-submenu-a{
  padding: 5px 15px!important;
}
.navbar .dropdown-menu a:hover {
  background: #f1f1f1;
}

/* Show dropdown on hover (desktop) */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
}
