.elementor-823 .elementor-element.elementor-element-2c9190ac{--display:flex;}.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-3525525b *//* =========================
   Shared Wrapper
========================= */
.bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================
   Top Bar
========================= */
.top-bar {
  background-color: #5b7796;
  width: 100%;
  padding: 10px 0;
}

.top-bar-left-links,
.top-bar-right-links {
  display: flex;
  align-items: center;
  gap: 15px; /* spacing between links */
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.top-bar a:hover {
  opacity: 0.8;
}

/* =========================
   Top Bar Images
========================= */
.top-bar .top-bar-right-links img {
  width: 100px;       /* desktop width */
  height: 60px;       /* desktop height */
  min-width: 100px;   /* prevent shrinking */
  min-height: 60px;   /* prevent shrinking */
  flex-shrink: 0;     /* prevent shrinking in flex container */
  display: inline-block;
}

/* =========================
   Bottom Bar
========================= */
.bottom-bar {
  background-color: #ffd700;
  width: 100%;
  padding: 15px 0;
}

.bottom-bar-links {
  display: flex;
  gap: 15px; /* spacing between bottom links */
}

.bottom-bar a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.bottom-bar a:hover {
  color: #004080;
}

/* =========================
   Hamburger Button
========================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* =========================
   Mobile Styles
========================= */
@media (max-width: 768px) {
  /* Show hamburger button */
  .menu-toggle {
    display: block;
    margin-left: auto; /* push to right */
  }

  /* Stack bars vertically */
  .bar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Hide links until menu opens */
  .top-bar-left-links,
  .top-bar-right-links,
  .bottom-bar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 8px; /* spacing between stacked links */
  }

  /* Show links when menu is open */
  body.menu-open .top-bar-left-links,
  body.menu-open .top-bar-right-links,
  body.menu-open .bottom-bar-links {
    display: flex;
  }

  /* Center links */
  .top-bar a,
  .bottom-bar a {
    display: block;
    width: auto;
    text-align: center;
    margin: 0;
  }

  /* Reduce padding for mobile bars */
  .top-bar,
  .bottom-bar {
    padding: 10px 0;
  }

  /* Mobile top-bar images */
  .top-bar .top-bar-right-links img {
    width: 80px;    /* mobile width */
    height: 48px;   /* mobile height */
    min-width: 80px;
    min-height: 48px;
    flex-shrink: 0;
  }
}
/* =========================
   Dropdown Menus (Bottom Bar)
========================= */
.bottom-bar .dropdown {
  position: relative;
  display: inline-block;
}

.bottom-bar .dropbtn {
  background: none;
  border: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: color 0.2s ease;
}

.bottom-bar .dropbtn:hover {
  color: #004080;
}

/* The dropdown menu itself */
.bottom-bar .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  padding: 6px 0;
}

/* Dropdown links */
.bottom-bar .dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #eee;
}

.bottom-bar .dropdown-content a:hover {
  background: #f7f7f7;
  color: #004080;
}

/* Show dropdown on hover (desktop) */
.bottom-bar .dropdown:hover .dropdown-content {
  display: block;
}

/* =========================
   Responsive Dropdown Adjustments
========================= */
@media (max-width: 768px) {
  .bottom-bar .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
  }

  .bottom-bar .dropdown-content a {
    padding: 8px 0;
    border: none;
  }

  .bottom-bar .dropdown-content a:hover {
    background: #ffe866;
  }
}/* End custom CSS */