.elementor-156 .elementor-element.elementor-element-6e5f40a6{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-156 .elementor-element.elementor-element-49aefae{--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;}@media(max-width:767px){.elementor-156 .elementor-element.elementor-element-5115987{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for html, class: .elementor-element-2d23ce7a */.mhhf-header {
  background: linear-gradient(135deg, #1a3a5f 0%, #2c5c8a 100%);
  color: #ffffff;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mhhf-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #4CAF50, #8BC34A);
}

.mhhf-header-container {
 
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mhhf-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.mhhf-header-logo-icon {
  font-size: 32px;
  color: #4CAF50;
  margin-right: 12px;
}

.mhhf-header-logo-text {
  font-size: 24px;
  font-weight: 700;
}

.mhhf-nav {
  display: flex;
  align-items: center;
  margin-right:120px;
}

.mhhf-nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mhhf-nav-links > li {
  margin: 0 5px;
  position: relative;
}

.mhhf-nav-links > li > a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.mhhf-nav-links > li > a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #4CAF50;
}

.mhhf-nav-links i {
  margin-right: 8px;
  font-size: 16px;
}

.mhhf-dropdown-arrow {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mhhf-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, #1a3a5f 0%, #2c5c8a 100%);
  min-width: 220px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.mhhf-nav-links > li:hover .mhhf-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mhhf-nav-links > li:hover .mhhf-dropdown-arrow {
  transform: rotate(180deg);
}

.mhhf-submenu li {
  margin: 0;
}

.mhhf-submenu a {
  color: #e0e0e0;
  text-decoration: none;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mhhf-submenu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #4CAF50;
  border-left-color: #4CAF50;
  padding-left: 25px;
}

.mhhf-submenu i {
  margin-right: 10px;
  width: 18px;
  text-align: center;
  font-size: 14px;
}

.mhhf-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mhhf-donate-btn-header {
  background: linear-gradient(to right, #4CAF50, #8BC34A);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
margin-left: 15px;
}

.mhhf-donate-btn-header:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.mhhf-donate-btn-header i {
  margin-right: 8px;
}

.mhhf-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 992px) {
  .mhhf-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a3a5f 0%, #2c5c8a 100%);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  
  .mhhf-nav-links.active {
    display: flex;
  }
  
  .mhhf-nav-links > li {
    margin: 5px 0;
    width: 100%;
  }
  
  .mhhf-nav-links > li > a {
    padding: 12px 15px;
    width: 100%;
    border-radius: 4px;
    justify-content: space-between;
  }
  
  .mhhf-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 5px;
    border-radius: 4px;
    display: none;
    padding: 5px 0 5px 20px;
  }
  
  .mhhf-nav-links > li.mhhf-active-submenu .mhhf-submenu {
    display: block;
  }
  
  .mhhf-nav-links > li.mhhf-active-submenu .mhhf-dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .mhhf-submenu a {
    padding: 10px 15px;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mhhf-submenu a:hover {
    padding-left: 20px;
    border-left: none;
    border-bottom-color: #4CAF50;
  }
  
  .mhhf-mobile-toggle {
    display: block;
  }
  
  .mhhf-header-actions {
    margin-left: auto;
    margin-right: 15px;
  }
}

@media (max-width: 576px) {
  .mhhf-header-logo-text {
    font-size: 20px;
  }
  
  .mhhf-header-logo-icon {
    font-size: 28px;
  }
  
  .mhhf-donate-btn-header {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .mhhf-header-container {
    padding: 0 15px;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
  .mhhf-header-container {
    padding: 10px 15px;
    flex-wrap: wrap;
  }
  
  .mhhf-header-container img {
    width: 200px !important;
    height: auto !important;
  }
  
  .mhhf-nav {
    margin-right: 0;
    width: 100%;
    order: 3;
    margin-top: 15px;
  }
  
  .mhhf-nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a3a5f 0%, #2c5c8a 100%);
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow-y: auto;
  }
  
  .mhhf-nav-links.active {
    display: flex;
  }
  
  .mhhf-nav-links > li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mhhf-nav-links > li:last-child {
    border-bottom: none;
  }
  
  .mhhf-nav-links > li > a {
    padding: 15px;
    width: 100%;
    border-radius: 0;
    justify-content: space-between;
    font-size: 16px;
  }
  
  .mhhf-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
    margin: 0;
    border-radius: 0;
    display: none;
    padding: 0;
    width: 100%;
  }
  
  .mhhf-nav-links > li.mhhf-active-submenu .mhhf-submenu {
    display: block;
  }
  
  .mhhf-nav-links > li.mhhf-active-submenu .mhhf-dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .mhhf-submenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .mhhf-submenu li:last-child {
    border-bottom: none;
  }
  
  .mhhf-submenu a {
    padding: 12px 15px 12px 25px;
    border-left: none;
    font-size: 14px;
  }
  
  .mhhf-submenu a:hover {
    padding-left: 30px;
  }
  
  .mhhf-header-actions {
    margin-left: auto;
    margin-right: 0;
    gap: 10px;
  }
  
  .mhhf-donate-btn-header {
    padding: 8px 16px;
    font-size: 14px;
    margin-left: 10px;
  }
  
  .mhhf-mobile-toggle {
    display: block;
    z-index: 1001;
    position: relative;
  }
}

@media (max-width: 768px) {
  .mhhf-header-container {
    padding: 8px 15px;
  }
  
  .mhhf-header-container img {
    width: 180px !important;
  }
  
  .mhhf-nav-links > li > a {
    padding: 12px 15px;
    font-size: 15px;
  }
  
  .mhhf-submenu a {
    padding: 10px 15px 10px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .mhhf-header-container {
    padding: 5px 10px;
  }
  
  .mhhf-header-container img {
    width: 150px !important;
  }
  
  .mhhf-nav {
    margin-top: 10px;
  }
  
  .mhhf-donate-btn-header {
    padding: 6px 12px;
    font-size: 13px;
    margin-left: 5px;
  }
  
  .mhhf-mobile-toggle {
    font-size: 20px;
    padding: 5px;
  }
  
  .mhhf-nav-links {
    padding: 60px 15px 15px;
  }
  
  .mhhf-nav-links > li > a {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .mhhf-submenu a {
    padding: 8px 12px 8px 20px;
    font-size: 13px;
  }
  
  .mhhf-nav-links i {
    margin-right: 6px;
    font-size: 14px;
  }
}

/* Prevent horizontal scrolling on mobile */
@media (max-width: 992px) {
  body {
    overflow-x: hidden;
  }
  
  .mhhf-header {
    position: relative;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .mhhf-dropdown-arrow {
    pointer-events: auto;
    padding: 10px;
    margin-left: auto;
  }
  
  .mhhf-nav-links > li > a {
    pointer-events: none;
  }
  
  .mhhf-nav-links > li > a .mhhf-dropdown-arrow {
    pointer-events: auto;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5115987 */.mobile-header {
    background: linear-gradient(135deg, #1a3a5f 0%, #2c5c8a 100%);
    color: white;
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    height: 70px; /* Fixed height */
  }

  .mobile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #4CAF50, #8BC34A);
  }

  .mobile-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
  }

  .mobile-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
  }

  .mobile-menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
  }

  .mobile-menu-toggle:active {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-nav {
    position: fixed;
    top: 70px; /* Start below header */
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a3a5f 0%, #2c5c8a 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    padding: 20px;
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .mobile-nav-links {
    list-style: none;
  }

  .mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-item:last-child {
    border-bottom: none;
  }

  .mobile-nav-link {
    color: white;
    text-decoration: none;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  /* HIGHLIGHT ACTIVE MENU ITEM */
  .mobile-nav-item.active > .mobile-nav-link {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border-radius: 8px;
    padding: 15px;
    margin: 5px 0;
  }

  .mobile-nav-link i {
    margin-right: 12px;
    font-size: 18px;
    width: 24px;
    text-align: center;
  }

  .mobile-dropdown-arrow {
    transition: transform 0.3s ease;
  }

  .mobile-nav-item.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
  }

  .mobile-submenu {
    list-style: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin: 10px 0;
    padding: 0;
    display: none;
  }

  .mobile-nav-item.active .mobile-submenu {
    display: block;
  }

  .mobile-submenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-submenu li:last-child {
    border-bottom: none;
  }

  .mobile-submenu a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 12px 15px 12px 45px;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  /* HIGHLIGHT ACTIVE SUBMENU ITEMS */
  .mobile-submenu a.active {
    background: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    border-left: 3px solid #4CAF50;
  }

  .mobile-submenu a:active {
    background: rgba(255, 255, 255, 0.1);
    color: #4CAF50;
    padding-left: 50px;
  }

  .mobile-submenu i {
    margin-right: 10px;
    font-size: 14px;
    width: 16px;
  }

  .mobile-donate-btn {
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .mobile-donate-btn i {
    margin-right: 8px;
  }

  .mobile-overlay {
    position: fixed;
    top: 70px; /* Start below header */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
  }

  .mobile-overlay.active {
    display: block;
  }

  /* Add padding to body to prevent header overlap */
  body {
    padding-top: 70px;
  }

  @media (min-width: 993px) {
    .mobile-header {
      display: none;
    }
    
    body {
      padding-top: 0;
    }
  }/* End custom CSS */