.new-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 18px;
}

.new-menu li {
    margin: 0;
}

.new-menu a {
    display: block;
    padding: 10px 20px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background 0.18s, color 0.18s;
}

.new-menu a:hover,
.new-menu a:focus {
    background: #f1f8fa;
    color: #3a3a3b;
}

.top_header{
    position: fixed;
    top:45px !important;
}

.new-bar {
  background: #15617a;
  color: #fff;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  padding: 0.7em 2em;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(21, 97, 122, 0.08);
  position: fixed;
  width: 100%;
  text-align: center;
  align-content: stretch;
  align-items: center;
  z-index: 1000;
}

.bar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bar-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}

.bar-contact a:hover {
    text-decoration: underline;
    color: #c3f1ff;
}

.bar-divider {
    margin: 0 8px;
    color: #aad4e1;
}

.bar-quote-btn {
    background: #ffb800;
    color: #15617a;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(255,184,0,0.1);
    transition: background 0.18s, color 0.18s;
    cursor: pointer;
}

.bar-quote-btn:hover {
    background: #ffd65b;
    color: #15617a;
}

.section_item {
    position: relative;
}

  /* Submenu */
.sub_items {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f5f5f5;
    border: 1px solid #ccc;
    z-index: 1000;
    min-width: 240px;
    border-radius: 4px;
    transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
  
  .sub_item > a {
    display: block;
    padding: 8px 12px;
    color: #333;
    background: #fff;
    text-decoration: none;
  }
  
  .sub_item > a:hover {
    background: #eee;
  }
  
  /* Show submenu on hover */
  .section_item:hover > .sub_items {
    display: block !important;
  }

  .section_item.mobile_section_item:hover > .sub_items {
    display: none !important; /* Hide submenu on mobile hover */
  }

@media (max-width: 768px) {
    .new-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1.1em;
    }

    .bar-contact {
        justify-content: center;
        gap: 8px;
    }
    .top_header{
      top:44px !important;
    }
}

@media (max-width: 480px) {
    .new-bar {
        font-size: 0.97em;
        padding: 0.7em 0.5em;
    }
}
.home_page{
    margin-top: 0px !important;
}
.page_content{
    margin-top: 60px;
}
.breadcrumb-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  .breadcrumb-new {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    background: none;
    flex-wrap: nowrap !important;
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .breadcrumb-new-item {
    background-color: #ffffff;
    padding: 0rem 0.5rem;
    font-size: 0.875rem;
    color: #252525;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    border-right: 2px solid #252525;
  }
  
  .breadcrumb-new-item a {
    text-decoration: none;
  }
  
  .breadcrumb-new-item:hover {
    background-color: #252525;
    color: #FFFFFF;
  }
  .breadcrumb-new-item>a:hover{
    color: #FFFFFF;
  }
  
  .breadcrumb-new-item.active {
    pointer-events: none;
    border-right: none;
    font-weight: bold;
  }
  
  
  /* Hide scroll bar on mobile for cleaner look */
  .breadcrumb-wrapper::-webkit-scrollbar {
    display: none;
  }
  .breadcrumb-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .top_header{
    padding: 6px;
    justify-content: space-evenly;
  }
  .page_content{
    margin-top: 24px;
  }
  .sidemenu{
    justify-content: space-between !important;
  }
  .sidemenu .top_section {
      flex: 0 0 auto;
      padding: 10px 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 10;
      margin-top: 40px;
  }
  .sidemenu .top_section .closebtn {
      font-size: 48px;
      cursor: pointer;
      position: fixed;
      right: 20px;
      top: 48px;
      display: none;
  }
  .sidemenu .menu_footer_section{
    width: 100%;
    text-align: center;
  }
  .sidemenu .mobile-menu-footer-btn{
    width: 100%;
    padding: 10px;
  }

  @media (max-width: 900px) {
    .top_header {
      justify-content: space-between;
      
    }
    .page_content{
      margin-top: 10px;
    }
    .top_header .sidemenu {
        width: 100%;
        left: -100%;
        box-shadow: unset;
    }
      .sub_items {
        display: none; /* Hidden by default */
        padding: 0;
        margin: 0;
        background: #f9f9f9;
    }

    .sub_item > a {
        display: block;
        padding: 10px 15px;
        color: #333;
        background: #fff;
        text-decoration: none;
    }

    .sub_item > a:hover {
        background: #eee;
    }
    .section_item:hover > .sub_items {
      display: unset !important;
    }
    .breadcrumb-wrapper{
      margin-bottom: 4px;
    }
  }
