.top-nav-info-bar {
  background-color: #f8faff;
  border-bottom: 1px solid #e9ecef;
}

.info-bar-wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 0.85rem;
  color: #6c757d;
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.info-bar-item svg {
  width: 16px;
  height: 16px;
}

/* Main Header Section */

.main-header-nav {
  background-color: #ffffff;
  border-bottom: 1px solid #e9ecef;
}

.main-header-nav-wrapper {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-header-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.main-header-logo {
  max-width: 180px;
  height: auto;
  display: block;
}

.main-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}


.icon-button {
  position: relative;
  border: 1px solid #D0D5DD;
  box-shadow: 0px 1px 2px 0px #1018280D;
  border-radius: 5px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0px 10px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.icon-button:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
}

.icon-button svg {
  width: 24px;
  height: 24px;
  stroke: #344054
}

.icon-button .icon-button-link {
  color: var(--primary-color);
}



.cart-badge {
  border: 1px solid #CD9A0F;
  background: #EFB71E;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Navigation Bar */

.main-nav-bar {
  background-color: #0037B0;
}

.main-nav-bar-wrapper {
  padding-top: 7px;
  padding-bottom: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #ffffff;
  position: relative;
}

.main-nav-bar-left-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-item {
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 0;
}

.nav-item-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.nav-item-link:hover {
  opacity: .8;
}

.nav-item-link svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  transition: transform 0.2s ease;
}

.nav-item-link.active svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  min-width: 200px;
  z-index: 1000;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  opacity: 0;
  width: fit-content;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu-item-link {}

.dropdown-menu-item-link {
  color: var(--secondary-text-color);
  padding: 10px 20px;
  font-size: 1rem;
  display: block;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.dropdown-menu-item-link.mainItem {
  border-bottom: 1px solid #b4b4b4;
  font-weight: 600;
}

.dropdown-menu-item-link:hover {
  background-color: #f0f0f0;
}

.main-nav-bar-right-actions .separator-vt {
  display: flex;
  height: 75%;
  width: 1px;
  background-color: #ffffff;

}

.main-nav-bar-right-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 30px;
  justify-content: flex-end;
}

.faq-link {
  color: #ffffff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.faq-link svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}

.zip-search-form {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  height: 30px;
  width: 220px;
  padding: 5px;
}

.zip-search-form-input {
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 0.9rem;
  flex-grow: 1;
  font-size: .75rem;
}

.zip-search-form-input::placeholder {
  color: #adb5bd;
  font-size: .75rem;
}

.zip-search-form-button {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.zip-search-form-button:hover {
  opacity: .9;
}

.zip-search-form-button svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
}


.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}


.mobile-menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-icon svg {
  fill: #ffffff;
}

.mobile-menu-icon.open .mobile-menu-icon__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-icon.open .mobile-menu-icon__bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-icon.open .mobile-menu-icon__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



/* For sub-menus in dropdowns (e.g., Industries -> DOT) */
.has-sub-menu {
  position: relative;
  /* Needed for positioning the sub-menu */
}

.has-sub-menu>.dropdown-menu-item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow-right {
  margin-left: auto;
  display: flex;
  color: var(--secondary-text-color);
  transition: transform 0.2s ease;
}

.arrow-right svg {
  width: 24px;
  height: 24px;
  fill: var(--secondary-text-color);
  transform: rotate(270deg);
}

.has-sub-menu>.dropdown-menu-item-link.active {
  background-color: #f0f0f0;
}

.has-sub-menu>.dropdown-menu-item-link.active .arrow-right svg {
  transform: rotate(0deg);
  /* Example: rotate arrow when sub-menu is open */
}


.sub-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  /* Positions it to the right of the parent */
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  min-width: 180px;
  /* Adjust as needed */
  z-index: 1001;
  /* Higher z-index than parent dropdown */
  padding: 10px 0;
  display: none;
  /* Hidden by default */
  flex-direction: column;
  opacity: 0;
  width: fit-content;
  transform: translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sub-dropdown-menu.visible {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.sub-dropdown-menu-item-link {
  color: var(--secondary-text-color);
  padding: 10px 20px;
  font-size: 1rem;
  display: block;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.sub-dropdown-menu-item-link.mainItem {
  border-bottom: 1px solid #b4b4b4;
  font-weight: 600;
}

.sub-dropdown-menu-item-link:hover {
  background-color: #f0f0f0;
}

.mobile-popup {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(-100%);
  background-color: #0037b0;
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
  overflow-y: auto;
  transform: translateX(-100%);
  background-color: #0037B0;
  transition: all .8s ease-in-out;
}

.mobile-popup .mobile-nav-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 15px;
}

.mobile-popup .mobile-menu-links {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: calc(100vh - 62px);
  overflow: auto;
}

.mobile-popup .mobile-menu-links .nav-dropdown-menu {
  width: 100%;
}

.mobile-menu-close-icon {


  display: flex;
  margin-right: 5px;
}

.mobile-menu-close-icon svg {
  width: 14px;
  height: 14px;
  fill: #000000;
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {
  .main-header {
    align-items: center;
    text-align: center;
  }

  .main-header__actions {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }

  .main-nav-bar-left-menu,
  .main-nav-bar-right-actions {
    /* width: 100%; */
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }

  .nav-item {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  /* .dropdown-menu {
    position: static; 
    box-shadow: none;
    border-radius: 0;
    width: 100%; 
    padding: 0;
    background-color: #2a3e61;
    transform: translateY(0);
  }
  .dropdown-menu-item-link {
    color: #ffffff;
    padding: 10px 15px;
  }
  .dropdown-menu-item-link:hover {
    background-color: #3b5073;
  } */

  .mobile-menu-icon {
    display: flex;
  }

  .main-nav-bar-left-menu {
    display: none;
  }

  .mobile-popup.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 999;
  }
}


@media (max-width: 992px) {
  .sub-dropdown-menu {
    position: static;
    /* Stack vertically in mobile */
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background-color: #2a3e61;
    /* Match parent dropdown background */
    transform: none;
    /* Remove transform */
  }

  .sub-dropdown-menu-item-link {
    color: #ffffff;
    padding-left: 30px;
    /* Indent sub-items */
  }

  .sub-dropdown-menu-item-link:hover {
    background-color: #3b5073;
  }

  .has-sub-menu>.dropdown-menu-item-link.active .arrow-right {
    transform: rotate(90deg);
    /* Keep rotation for consistency in mobile */
  }
}


@media (max-width: 768px) {

  .main-nav-bar-wrapper {
    justify-content: flex-start;
    padding-left: 15px;
    padding-right: 15px;
  }

  .info-bar {
    gap: 15px;
    padding: 8px 10px;
    justify-content: center;
  }

  .info-bar-item {
    font-size: 0.8rem;
  }

  .info-bar-item svg {
    width: 14px;
    height: 14px;
  }

  .main-header {
    padding: 15px 10px;
  }

  .main-header__logo {
    max-width: 150px;
  }

  .action-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .icon-button svg {
    width: 20px;
    height: 20px;
  }

  .icon-button .icon-button-link {
    display: none;
  }

  .cart-badge {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    top: -6px;
    right: -6px;
  }

  .main-nav-bar-right-actions .faq-link {
    display: none;
  }

  .main-nav-bar-right-actions .separator-vt {
    display: none;
  }

}


@media (max-width: 768px) {
  .info-bar-wrapper {
    display: none;
  }

  .main-header__logo-link {
    order: -1;
    flex-grow: 1;
    justify-content: flex-start;
  }

  .main-header__actions {
    order: 1;
    justify-content: flex-end;
    flex-grow: 0;
  }

  .main-header__actions .action-button {
    display: none;
  }

  .main-header-actions button {
    height: 40px;
  }

  .main-header-actions button span {
    display: none;
  }

  .icon-button.shopping-cart .cart-badge {
    position: absolute;
  }

  .main-header-actions {
    gap: 7px
  }

  .main-header-logo {
    max-width: 140px;
  }
}









.blog-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.blog-post {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
}

.blog-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #0037B0;
}

.blog-meta {
    color: #777;
    margin-bottom: 30px;
}

.blog-featured-image {
    margin-bottom: 30px;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.blog-content {
    line-height: 1.8;
    font-size: 18px;
}

.blog-content h2,
.blog-content h3 {
    margin-top: 30px;
    color: #0037B0;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.blog-navigation a {
    display: inline-block;
    padding: 12px 20px;
    background: #0037B0;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.blog-navigation a:hover {
    opacity: .9;
}

.related-heading {
    margin: 50px 0 20px;
}

.related-posts {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.related-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.related-card img {
    width: 100%;
}

.related-card h3 {
    padding: 15px;
    font-size: 18px;
}

/* BLOG INDEX PAGE */

.blog-list-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.blog-page-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: #0037B0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
    transition: all .3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-card-title a {
    color: #0037B0;
    text-decoration: none;
}

.blog-card-excerpt {
    color: #555;
    line-height: 1.7;
}

.blog-pagination {
    margin-top: 50px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.blog-pagination .current {
    background: #0037B0;
    color: #fff;
}

@media(max-width:992px) {
    .blog-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-page-title {
        font-size: 32px;
    }
}

.blog-content {
    line-height: 1.8;
    font-size: 18px;
    color: #333;
}

/* Paragraph spacing */
.blog-content p {
    margin-bottom: 20px;
}

/* Headings */
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    margin-top: 35px;
    margin-bottom: 15px;
    color: #0037B0;
    line-height: 1.4;
    text-decoration: none;
}

/* Lists */
.blog-content ul {
    list-style: disc !important;
    padding-left: 30px;
    margin: 20px 0;
}

.blog-content ol {
    list-style: decimal !important;
    padding-left: 30px;
    margin: 20px 0;
}

.blog-content li {
    margin-bottom: 10px;
    line-height: 1.8;
	 list-style: disc !important;

}

/* Links */
.blog-content p a,
.blog-content li a {
    color: #0037B0;
    text-decoration: none;
}

.blog-content h2 a,
.blog-content h3 a,
.blog-content h4 a,
.blog-content h5 a,
.blog-content h6 a {
    text-decoration: none;
}

/* Blockquotes */
.blog-content blockquote {
    border-left: 4px solid #0037B0;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #555;
}

/* Images */
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Tables */
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.blog-content table th,
.blog-content table td {
    border: 1px solid #ddd;
    padding: 12px;
}

.blog-content table th {
    background: #f5f7fb;
}