.elementor-135 .elementor-element.elementor-element-04c1c8b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-b29d247 *//* ===== HEADER STYLE ===== */

.mh-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
}

/* Center the logo */
.mh-logo-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.mh-logo img {
  height: 60px; /* Fit nicely in header */
  width: auto;
  border-radius: 15px;
  filter: drop-shadow(1px 4px 1px rgba(0,0,0,0.9));
  transition: 0.3s;
}


/* Make desktop apply button visible always */
.desktop-apply {
  display: inline-block;
   padding-left: 5px;
    padding-right: 5px;
}

.apply-btn{
    background: #78B4C6;
    padding: 10px;
    border: #fff;
    border-radius: 15px;
    color: #fff;
    font-weight:bold;
    font-family: helvetical;
    font-size: 18px;
    
   
}
.apply-btn:hover{
    color:#FFF;
    background: #FF841E;

}

/* Hide old desktop nav */
.left-nav,
.right-nav {
  display: none !important;
}

/* Mobile Toggle Always Visible */
.mh-mobile-toggle {
  font-size: 34px;
  cursor: pointer;
  color: #007A8C;
  display: block;
  z-index: 9999;
}

/* ===== FULL SCREEN MENU ===== */
.mh-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  z-index: 9998;
}

.mh-mobile-menu.show-menu {
  display: flex;
}

/* centermenu items */
.menu-center {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.mh-mobile-menu a {
  font-size: 20px;
  font-weight: 600;
  color: #0B2E3F;
}

/* Close Button at the Bottom */
.menu-close {
  font-size: 20px;
  font-weight: 700;
  padding: 20px;
  cursor: pointer;
  color: #007A8C;
}

/* Keep layout consistent on all devices */
@media (max-width: 900px) {
  .desktop-apply {
    display: none; /* hide desktop version */
  }
}
/* Mobile toggle always visible on tablets and phones */
@media (max-width: 1024px) {
  .left-nav,
  .right-nav {
    display: none;
  }

  .mh-mobile-toggle {
    display: block;
  }

  .mh-logo img {
    height: 50px; /* Fit nicely on tablets too */
  }
  /* Mobile menu full screen */
  .mh-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 1050;
  }

  /* Close button inside menu */
  .mh-mobile-menu .close-menu {
    position: absolute;
    bottom: 30px;
    font-size: 28px;
    cursor: pointer;
  }
}/* End custom CSS */