@media (max-width: 768px) {
  .top-banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #002f6c;
    padding: 10px 20px;
    height: auto;
      z-index: 9999;
    gap: 10px;
  }
  
  .import-sections,
  .export-sections {
    margin-top: 10vh;
  }
  .blog-list {    
  margin-top: 12.5vh;
  }
  .services-section {
    margin-top: 6vh;
  }
  
.lower-banner {
  display: flex;
  justify-content: center;   /* Centers children horizontally */
  align-items: center;       /* Centers children vertically */
  background: white;
  height: 35px;
  position: fixed;
  top: 73px;                 /* Assuming top nav is 50px high */
  width: 100%;
  z-index: 10000;
}

  .logo-wrapper {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;          /* 🔥 CRITICAL: remove absolute positioning */
    transform: none;           /* 🔥 CRITICAL: remove center hacks */
  }

  .logo-img {
    height: 50px;
    max-width: 100px;
    display: block;
  }

  .contact-text {
    display: none; /* Only show icons */
  }

  .contact-top-right a,
  .social-top-left a {
    font-size: 20px;
    color: white;
  }

  .hero-logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  #logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    margin-right: 5%;
  }

  /* ✅ LOWER NAVIGATION */
  .lower-banner {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

.menu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #002f6c;
  cursor: pointer;
  margin: 0; /* or remove if you already have flex centering */
}

  .menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: white;
    width: 100%;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .menu.active {
    display: flex;
  }

  .menu-item {
    width: 100%;
    text-align: center;
  }

  .submenu {
    position: relative;
    box-shadow: none;
    width: 100%;
  }

  .menu-item.active .submenu {
    display: flex;
    flex-direction: column;
  }

.hero {
    top: 100px;
}
   .footer-centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo-wrap {
    text-align: center;
    margin-bottom: .25rem;
    padding-right: 60px; /* move logo + text right by 5px */

  }

  .footer-columns-group {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transform: none;      /* reset the desktop shift */
    margin: 0 auto;
  }

  .footer-column {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .footer-column ul {
    padding: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-centered {
    transform: translateX(75px);
  }

  .contact {
      z-index: 1000;
  }
}

