
.header-new-logo-wrapper {
    background-color: #004D64;
    text-align: center;
    height: 44px;
    overflow: hidden;
    padding: 5px 0;
}

.header-new-img {
    width: auto;
    height: 100%;
    object-fit: contain;
    vertical-align: middle;
}

.header-new-main-nav {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.header-new-nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.header-new-nav-menu li a {
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;

}


/* Hamburger icon styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Show the toggle on smaller screens */
@media (max-width: 768px) {
    .mobile-menu-toggle {
         display: flex;
	 justify-content: center;
	 left: 0;
         position: absolute;
         padding: 12px;
    }

    .header-new-main-nav {
         display: none; /* Hide main nav on mobile */
    }
    .header-new-logo-wrapper {
        height: 44px;
        overflow: hidden;
        padding: 5px 15px;
      	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
    }
}

/* Off-canvas menu styles */
.mobile-menu-wrapper {
     position: fixed;
     top: 0;
     left: -100%;
     width: 75%;
     max-width: 260px;
     height: 100%;
     background: #111;
     color: white;
     transition: all 0.3s ease;
     z-index: 1000;
     padding: 20px;
}

.mobile-menu-wrapper.open {
     left: 0;
}

.mobile-menu-close {
      font-size: 40px;
      cursor: pointer;
      text-align: right;
      color: #fff;
}

.mobile-nav-menu {
      list-style: none;
      padding: 10px 0 0 0;
}

.mobile-nav-menu li a {
      color: white;
      text-decoration: none;
      display: block;
      padding: 14px 0;
      text-transform: uppercase;
      font-weight: 600;
}

.mobile-menu-toggle.hidden {
    display: none;
}

@media (max-width: 315px) {
    .header-new-logo-wrapper {
        padding: 5px 20px;
    }
}
