.elementor-20747 .elementor-element.elementor-element-506d96f{width:100%;max-width:100%;}.elementor-20747 .elementor-element.elementor-element-88b8026{--spacer-size:71px;}@media(min-width:768px){.elementor-20747 .elementor-element.elementor-element-53954f7{width:28.246%;}.elementor-20747 .elementor-element.elementor-element-1f2481d{width:71.754%;}}/* Start custom CSS for html, class: .elementor-element-506d96f *//*
 * ===================================================================
 * FINAL, SCOPED CSS FOR ELEMENTOR
 * ===================================================================
 * All styles are prefixed with #__next to prevent conflicts with your theme.
 */

/* --- Main Widget & Font Styles --- */
#__next {
    font-family: 'Noto Sans', sans-serif;
    color: #150202;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

/* --- Inner Banner --- */
#__next .Innerbaner {
    position: relative;
    background-color: #162f6a; /* Fallback color */
}

#__next .Innerbaner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #162f6a 20%, transparent 70%);
    width: 100%;
    height: 100%;
}

#__next .Innerbaner .innerbox {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 85%;
    z-index: 2; /* Ensure text is above the gradient overlay */
}

#__next .Innerbaner .pagename {
    color: #fff;
    font-weight: 700;
    font-size: 2.5rem;
}

/* --- Navigation Section --- */
#__next .navigationSection {
    position: absolute;
    bottom: -30px; /* Positions the nav over the bottom of the banner */
    width: 100%;
    z-index: 5;
}

#__next .innernav {
    background: #162f6a;
    padding: 16px;
    z-index: 8;
    border-radius: 12px;
    display:flex; /* Ensures inner content is flexible */
    justify-content: center; /* Centers the nav list */
}

#__next .innernav .nav {
    display: flex;
    flex-wrap: nowrap; /* Prevents wrapping */
    overflow-x: auto; /* Allows scrolling on small screens */
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Hide scrollbar for a cleaner look */
#__next .innernav .nav::-webkit-scrollbar {
    display: none;
}
#__next .innernav .nav {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}


#__next .innernav .nav-item {
    flex-shrink: 0; /* Prevents items from shrinking */
     
}

#__next .innernav .nav-link {
    color: #fff;
    font-size: 13px;
    padding: 10px 15px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent; /* For active state */
    transition: all 0.2s ease-in-out;
}

#__next .innernav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#__next .innernav .nav-link.active {
    font-weight: 400;
    font-size: 13px;
    border-bottom: 3px solid #ffc107; /* A highlight color for active link */
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    #__next .innernav {
        justify-content: flex-start; /* Align to left on smaller screens */
    }
}

@media (max-width: 767px) {
    #__next .navigationSection {
        position: relative;
        bottom: 0;
    }
    #__next .innernav {
        margin-top: 0;
        border-radius: 0;
    }
    #__next .Innerbaner .innerbox {
       position: relative;
       top: auto;
       transform: none;
       padding: 20px;
       background-color: #162f6a;
    }
    #__next .Innerbaner:before {
        display: none; /* Hides the gradient on mobile for simplicity */
    }
}/* End custom CSS */