﻿

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial,sans-serif;
}

body {
    background: #f5f5f5;
    min-height: 100vh;
}

/* HEADER */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 1002;
}

.header-inner {
    margin: auto;
    /*padding: 8px 30px;*/
    width: 100%;
    background-color: #102e0b;
}

    .header-inner .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.logo {
    font-size: 42px;
    font-weight: bold;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

   /* .nav a {
        text-decoration: none;
        justify-content: center;
        color: #111;
        font-size: 13px;
        color: white;
        white-space: nowrap;
    }*/

    .nav a {
        text-decoration: none;
        justify-content: center;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Top-level nav links - WHITE */
    .nav > .explore > a {
        color: #ffffff;
    }

    /* Dropdown links - DARK */
    .nav .mega-menu a,
    .nav .mega-menu .item a,
    #company-level2 a,
    #company-level3 a,
    #company-level4 a,
    #company-level5 a,
    #resources-level2 a,
    #resources-level3 a,
    #resources-level4 a,
    #resources-level5 a {
        color: #333333 ;
    }

        /* Dropdown hover */
        .nav .mega-menu a:hover,
        .nav .mega-menu .item a:hover {
            color: #102e0b !important;
            background: #f5f8f5 !important;
        }
        }
.search {
    flex: 1;
}

    .search input {
        width: 100%;
        height: 42px;
        border: none;
        background: #f3f3f3;
        border-radius: 10px;
        padding: 0 15px;
    }

/* RIGHT */
.right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-white {
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
}



/* OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 998;
    pointer-events: none;
}


.explore:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.explore {
    position: relative;
}


.mega-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 95vw;
    max-width: 1600px;
    /*min-height: 750px;*/
    /*background-image: url('images/bg.webp');*/
    /*background-image: url('<%=BioSyn35.ParamsClass.gstrApplicationSiteUrl %>images/bg.webp');*/
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    border-radius: 16px;
    overflow: hidden;
    height: auto;
    /*background: #fff;*/
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    z-index: 1005;
    margin-top: 5px;
    padding-bottom: 5px;
    flex-direction: column;

}

.sidebar,
.content-area {
    background: transparent !important;
}

.mega-top-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 14px 24px 0;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
}

    .mega-top-menu .menu-item {
        position: relative;
        padding: 0 0 14px;
        font-size: 13px;
        cursor: pointer;
        white-space: nowrap;
    }

        .mega-top-menu .menu-item.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            height: 2px;
            background: #b6ff00;
        }

.explore::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Keep menu open */
.explore:hover .mega-menu,
.mega-menu:hover {
    display: flex;
}


.sidebar {
    width: 100%;
    background: #ffffff;
    border-right: 1px solid #eef0f2;
    flex-shrink: 0;
    display: flex;
    padding: 10px 10px 10px 20px;
    gap: 8px;
    margin-bottom: 8px;
}

.menu-item {
    padding: 8px 24px;
    cursor: pointer;
    font-size: 13px;
    gap: 30px;
    font-weight: 500;
    /*transition: all 0.3s ease;*/
    color: #333;
    position: relative;
}



    /* Hover */
    .menu-item:hover {
        color: #6a8f63;
        border-bottom: 1px solid #6a8f63;
    }

    /* Active */
    .menu-item.active {
        color: #118847;
        border-bottom: 3px solid #118847;
    }

    .menu-item::after {
        content: "";
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 4px;
        height: 3px;
        background: #28a745;
        border-radius: 10px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .3s ease;
    }

.content-area {
    flex: 1;
    display: flex;
    align-items: stretch;
    background: #fff;
    min-width: 0;
    overflow: hidden;
}

.column {
    flex: 1;
    min-width: 0;
    height: 400px; /*height set*/
    padding: 0 10px;
    border-right: 1px solid #f0f0f0;
    overflow-y: auto;
    overflow-x: hidden;
}

.content-area {
    display: flex;
    align-items: stretch;
    background: #fff;
    min-width: 0;
    overflow: hidden;
    gap: 8px;
    justify-content: space-between;
}

.column:last-child {
    border-right: none;
}

.column::-webkit-scrollbar {
    width: 6px;
}

.column::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.column::-webkit-scrollbar-thumb {
    background: #d0d5dd;
    border-radius: 10px;
}

    .column::-webkit-scrollbar-thumb:hover {
        background: #a0a5b0;
    }

.item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 8px;
    cursor: pointer;
    font-size: 12px;
    border-bottom: 1px solid #eee;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 1px;
    color: #333;
    background: transparent;
}

    /* Remove animated line */
    .item::before {
        display: none !important;
    }

    .item:hover,
    .item.active {
        background: #f5f7fa;
        color: black;
    }

    .item.has-child::after {
        content: "›";
        font-size: 14px;
        font-weight: 400;
        color: #bbb;
        margin-left: 8px;
    }

    .item.has-child:hover::after,
    .item.has-child.active::after {
        color: #1a73e8;
    }


#level2 .item,
#company-level2 .item,
#products-level2 .item,
#resources-level2 .item {
    padding: 4px 10px !important;
    font-size: 14px !important;
    border: 1px solid #e8ecef !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04) !important;
    /*transition: all 0.25s ease !important;*/
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    text-align: left !important;
    background: #ffffff !important;
    cursor: pointer !important;
    /*color: #1a1a2e !important;*/
    font-weight: 500 !important;
    /*border-left: 4px solid transparent !important;*/
    position: relative !important;
    color: black;
}

    /* HOVER EFFECT */
    #level2 .item:hover,
    #company-level2 .item:hover,
    #products-level2 .item:hover,
    #resources-level2 .item:hover {
        background: #f2f8f0 !important;
        border-color: #c8dcc4 !important;
        /*border-left-color: #2d7a2d !important;*/
        /*transform: translateY(-1px) !important;*/
        box-shadow: 0 4px 14px rgba(16, 46, 11, 0.10) !important;
    }

    /* ACTIVE EFFECT */
    #level2 .item.active,
    #company-level2 .item.active,
    #products-level2 .item.active,
    #resources-level2 .item.active {
        background: #e6f3e3 !important;
        border-color: #a8c8a0 !important;
        /* border-left-color: #1a6a1a !important;*/
        color: #0a3a0a !important;
        font-weight: 500 !important;
        box-shadow: 0 2px 10px rgba(16, 46, 11, 0.08) !important;
    }

    /* ICON STYLES */
    #level2 .item .item-icon,
    #company-level2 .item .item-icon,
    #products-level2 .item .item-icon,
    #resources-level2 .item .item-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        /*background: rgba(16, 46, 11, 0.08) !important;*/
        border-radius: 10px !important;
        font-size: 13px !important;
        flex-shrink: 0 !important;
        /*transition: all 0.3s ease !important;*/
    }

    /* HOVER - ICON */
    #level2 .item:hover .item-icon,
    #company-level2 .item:hover .item-icon,
    #products-level2 .item:hover .item-icon,
    #resources-level2 .item:hover .item-icon {
        /* background: #1a6a1a !important;*/
        color: #1a4a1a !important;
        transform: scale(1.05) !important;
    }

    /* ACTIVE - ICON */
    #level2 .item.active .item-icon,
    #company-level2 .item.active .item-icon,
    #products-level2 .item.active .item-icon,
    #resources-level2 .item.active .item-icon {
        /*background: #1a6a1a !important;*/
        color: #118847;
    }

    /* TEXT STYLES */
    #level2 .item span:last-child,
    #company-level2 .item span:last-child,
    #products-level2 .item span:last-child,
    #resources-level2 .item span:last-child {
        flex: 1 !important;
        text-align: left !important;
        /*font-weight: 500 !important;*/
        font-size: 12px !important;
        color: inherit !important;
    }

    #level2 .item.active span:last-child,
    #company-level2 .item.active span:last-child,
    #products-level2 .item.active span:last-child,
    #resources-level2 .item.active span:last-child {
        font-weight: 500 !important;
        color: #0a3a0a !important;
    }

    /* ARROW (›) FOR HAS-CHILD */
    #level2 .item.has-child::after,
    #company-level2 .item.has-child::after,
    #products-level2 .item.has-child::after,
    #resources-level2 .item.has-child::after {
        content: "›" !important;
        font-size: 13px !important;
        /*font-weight: 300 !important;*/
        color: #b0b8c4 !important;
        margin-left: auto !important;
        /*padding-left: 12px !important;*/
        /*transition: all 0.25s ease !important;*/
        font-family: Arial, sans-serif !important;
    }

    #level2 .item.has-child:hover::after,
    #company-level2 .item.has-child:hover::after,
    #products-level2 .item.has-child:hover::after,
    #resources-level2 .item.has-child:hover::after {
        color: #1a6a1a !important;
        transform: translateX(3px) !important;
    }

    #level2 .item.has-child.active::after,
    #company-level2 .item.has-child.active::after,
    #products-level2 .item.has-child.active::after,
    #resources-level2 .item.has-child.active::after {
        color: #1a6a1a !important;
    }

    /* Remove default icon styles (conflict) */
    #level2 .item i,
    #level2 .item svg,
    #company-level2 .item i,
    #company-level2 .item svg,
    #products-level2 .item i,
    #products-level2 .item svg,
    #resources-level2 .item i,
    #resources-level2 .item svg {
        width: auto !important;
        height: auto !important;
        opacity: 1 !important;
    }

/* ============================================
   MOBILE - LEVEL 2
   ============================================ */

@media (max-width: 991px) {
    #level2 .item,
    #company-level2 .item,
    #resources-level2 .item {
        padding: 14px 16px !important;
        font-size: 14px !important;
        border-bottom: 1px solid #eef2ef !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        background: #fafcfa !important;
        border: none !important;
        border-left: 4px solid transparent !important;
        font-weight: 500 !important;
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        box-shadow: none !important;
    }

        #level2 .item .item-icon,
        #company-level2 .item .item-icon,
        #resources-level2 .item .item-icon {
            width: 32px !important;
            height: 32px !important;
            min-width: 32px !important;
            border-radius: 8px !important;
            font-size: 14px !important;
        }

        #level2 .item.active,
        #company-level2 .item.active,
        #resources-level2 .item.active {
            background: #e6f3e3 !important;
            /*border-left-color: #1a6a1a !important;*/
        }

        #level2 .item:hover,
        #company-level2 .item:hover,
        #resources-level2 .item:hover {
            background: #f2f8f0 !important;
            /*border-left-color: #2d7a2d !important;*/
            transform: none !important;
            box-shadow: none !important;
        }

        #level2 .item.has-child::after {
            content: "›" !important;
            font-size: 20px !important;
            color: #999 !important;
            margin-left: auto !important;
            padding-left: 12px !important;
        }

        #level2 .item.has-child:hover::after {
            color: #1a6a1a !important;
            transform: none !important;
        }
}

.menu-banner-card {
    position: relative;
    /*width: 100%;
    height: 100%;*/
    width: 240px;
    height:90%;
    right:0;
    top:25px;
    left:17px;
    bottom:0;
    overflow: visible;
}

    .menu-banner-card img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        border-radius: 20px;
        background: transparent !important;
        opacity: 0.85;
    }

.banner-content {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    /*opacity: 0.8;*/
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 999px;
    background: #0f7f3c;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}

.banner-content h3 {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #0f4f2d;
    /*margin-bottom: 10px;*/
}

.banner-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #334155;
   /* margin-bottom: 24px;*/
    max-width: 220px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0px;
}

    .feature-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
        color: #2d4d3a;
        font-size: 13px;
        font-weight: 500;
    }

        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            width: 18px;
            height: 18px;
            color: #2ea44f;
            font-weight: 700;
        }

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 9px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg,#0f7f3c,#0a5f2c);
    color: #fff !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s ease;
}

    .banner-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(15,127,60,.25);
    }

.mega-menu-close {
    display: none;
}

.content-area {
    display: flex;
    align-items: stretch;
}

.banner-column {
    margin-left: auto;
}
/* MOBILE RESPONSIVE - COMPLETE FIXED VERSION  */
@media (max-width: 991px) {
    .mega-menu .item {
        pointer-events: auto !important;
        z-index: 99999 !important;
    }

    .header {
        align-items: center;
        position: relative;
        background-color: rgb(16, 46, 11);
    }

    .mega-menu .column {
        pointer-events: auto !important;
    }
}

@media (max-width: 991px) {
    /* ========== HEADER ========== */
    .header-inner {
        padding: 8px 10px;
        background: white;
        color: black;
    }

        .header-inner .container {
            flex-wrap: wrap;
            flex-direction: column;
            align-items: stretch;
        }

    /* ========== NAVIGATION ========== */
    .nav {
        gap: 2px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 6px 0;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        scrollbar-width: thin;
    }

        .nav::-webkit-scrollbar {
            height: 3px;
        }

        .nav::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }

        .nav a {
            font-size: 13px;
            padding: 5px 10px;
            white-space: nowrap;
            color: black;
        }

            .nav a svg {
                display: none !important;
            }

    /* ========== EXPLORE - PARENT MENU WITH + / - ========== */
    .explore {
        display: inline-block !important;
        width: auto !important;
        position: relative !important;
        border-bottom: none !important;
        background: transparent !important;
    }

        /* Parent heading - with + icon on right */
        .explore > a {
            display: inline-flex !important;
            justify-content: center !important;
            align-items: center !important;
            padding: 6px 10px !important;
            font-size: 13px !important;
            font-weight: 500 !important;
            color: black !important;
            background: transparent !important;
            min-height: 36px !important;
            width: auto !important;
            text-decoration: none !important;
            cursor: pointer !important;
            border-radius: 0 !important;
            margin: 0 !important;
            border: none !important;
            /*gap: 6px !important;*/
        }

            .explore > a svg {
                display: none !important;
            }

            /* + / - Toggle icon on parent - CHANGES TO - WHEN OPEN */
            .explore > a::after {
                content: "+" !important;
                font-size: 13px !important;
                font-weight: 300 !important;
                color: black !important;
                font-family: Arial, sans-serif !important;
                line-height: 1 !important;
                transition: transform 0.3s ease !important;
                width: 24px !important;
                height: 24px !important;
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                background: rgba(255,255,255,0.2) !important;
                border-radius: 50% !important;
                flex-shrink: 0 !important;
                margin-left: 4px !important;
            }

        .explore.active > a::after {
            content: "−" !important;
            background: rgba(255,255,255,0.3) !important;
            color: #b6ff00 !important;
        }

        .explore.active > a {
            color: #b6ff00 !important;
        }

    /* ========== RIGHT BUTTONS ========== */
    .right {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 5px;
        width: 100%;
        padding: 4px 0;
    }

    .header__button span {
        display: none !important;
    }

    .header__button svg {
        width: 14px;
        height: 14px;
    }

    .header__button {
        padding: 4px 8px !important;
        min-height: 30px;
        font-size: 12px;
    }

    /* ========== LOGO ========== */
    .navbar-brand img {
        max-height: 32px !important;
        width: auto;
    }

    /* ========== SEARCH ========== */
    .searchform {
        width: 100% !important;
        margin: 5px 0;
        height: 34px !important;
    }

        .searchform input {
            width: 100% !important;
            height: 34px !important;
            font-size: 13px !important;
            padding: 0 12px;
        }

        .searchform button {
            height: 34px !important;
            padding: 0 10px !important;
            width: 34px !important;
        }

            .searchform button span {
                font-size: 14px !important;
            }

    /* ========== CAPABILITIES BUTTON ========== */
    .custom-btn.filled {
        padding: 4px 8px !important;
        font-size: 10px !important;
        min-height: 30px;
    }

        .custom-btn.filled svg {
            width: 12px !important;
            height: 12px !important;
        }

        .custom-btn.filled span {
            display: none !important;
        }

        .custom-btn.filled i.fa-cart-plus {
            font-size: 14px !important;
        }

    /* ========== MEGA MENU - FULL SCREEN ========== */
    .mega-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: none !important;
        border-radius: 0 !important;
        overflow-y: auto !important;
        z-index: 99999 !important;
        box-shadow: none !important;
        margin-top: 0 !important;
        display: none !important;
        flex-direction: column !important;
        background: #fff !important;
        padding-top: 55px !important;
        padding-bottom: 5px !important;
        min-height: 100vh !important;
        background: #ffffff;
    }

    .explore.active .mega-menu {
        display: flex !important;
    }

    .mega-menu-close {
        display: none !important;
    }

    /* ========== SIDEBAR - TABS ========== */
    .sidebar {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 2px solid #eef2ef !important;
        flex-shrink: 0 !important;
        padding: 10px 12px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        background: #f8faf8 !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        position: sticky !important;
        top: 0 !important;
        z-index: 10 !important;
    }

        .sidebar::-webkit-scrollbar {
            display: none;
        }

    .menu-item {
        padding: 6px 14px !important;
        font-size: 13px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        border-bottom: none !important;
        border: 1px solid #e8ede8 !important;
        border-radius: 20px !important;
        background: #fff !important;
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        color: #333 !important;
        font-weight: 500;
        cursor: pointer;
        /*transition: all 0.2s ease;*/
    }

        .menu-item.active {
            background: #118847 !important;
            color: #fff !important;
            border-color: #118847 !important;
        }

        .menu-item img {
            width: 18px !important;
            height: 18px !important;
            padding: 2px !important;
        }

        .menu-item span {
            font-size: 13px !important;
        }

        .menu-item::after {
            display: none !important;
        }

    /* ========== CONTENT AREA ========== */
    .content-area {
        width: 100% !important;
        flex-direction: column !important;
        background: #fff !important;
        overflow: visible !important;
        padding: 8px 12px !important;
        gap: 0 !important;
        flex: 1 !important;
        height: auto !important;
        min-height: auto !important;
    }

    /* ========== COLUMNS ========== */
    .column {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        border-right: none !important;
        border-bottom: none !important;
        padding: 0 !important;
        overflow: visible !important;
        margin-bottom: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
    }

    /* ========== ITEMS WITH + / - TOGGLE ========== */
    .item {
        position: relative !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 16px !important;
        font-size: 14px !important;
        border-bottom: 1px solid #f0f2f0 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow: visible !important;
        height: auto !important;
        min-height: 44px !important;
        line-height: 1.4 !important;
        background: #fff !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        border: none !important;
        color: #222 !important;
        cursor: pointer;
        transition: background 0.2s ease;
    }

        .item:hover,
        .item.active {
            background: #f5f8f5 !important;
            color: #102e0b !important;
        }

        .item::before {
            display: none !important;
        }

        /* + / - Toggle for items with children */
        .item.has-child {
            padding-right: 48px !important;
            background: #fafcfa !important;
            font-weight: 500 !important;
        }

            .item.has-child::after {
                content: "+" !important;
                font-size: 18px !important;
                font-weight: 300 !important;
                color: #102e0b !important;
                position: absolute !important;
                right: 14px !important;
                top: 50% !important;
                transform: translateY(-50%) !important;
                transition: transform 0.3s ease !important;
                font-family: Arial, sans-serif !important;
                line-height: 1 !important;
                width: 28px !important;
                height: 28px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                background: #eef5ec !important;
                border-radius: 50% !important;
                flex-shrink: 0 !important;
            }

            .item.has-child.open::after {
                content: "−" !important;
                transform: translateY(-50%) !important;
                background: #102e0b !important;
                color: #fff !important;
            }

            .item.has-child.open {
                background: #eef5ec !important;
                border-bottom-color: #102e0b !important;
            }

    /* ========== NESTED ITEMS ========== */
    .column .column .item {
        padding-left: 28px !important;
        font-size: 13px !important;
        background: #f8faf8 !important;
        font-weight: 400 !important;
        border-bottom: 1px solid #f0f2f0 !important;
    }

    .column .column .column .item {
        padding-left: 44px !important;
        font-size: 12.5px !important;
        background: #fafcfa !important;
    }

    .column .column .column .column .item {
        padding-left: 60px !important;
        font-size: 13px !important;
        background: #fcfdfc !important;
    }

    /* ========== HIDE EMPTY COLUMNS ========== */
    /*#level6,*/
    #resources-level6,
    #company-level6 {
        display: none;
    }


    .banner-column {
        width: 100% !important;
        min-width: 100% !important;
        flex: none !important;
        padding: 8px 0 !important;
        height: auto !important;
        min-height: 160px !important;
        background: transparent !important;
        border-radius: 0 !important;
        border: none !important;
        /*margin-top: 4px !important;*/
    }

    .menu-banner-card {
        position: relative;
        width: 250px;
        height: auto;
        border-radius: 20px;
        overflow: hidden;
        left:50px;
    }

    .banner-content {
        position: absolute;
        inset: 0;
        padding: 2px 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        z-index: 2;
    }

        .banner-content h3 {
            font-size: 20px;
            line-height: 1.3;
            font-weight: 700;
            color: #0f5b35;
            margin: 12px 0 18px;
            /* IMPORTANT */
            word-break: normal;
            overflow-wrap: break-word;
        }

        .banner-content p {
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 18px;
            color: #3f4f5f;
        }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 24px;
    }

        .feature-list li {
            padding-left: 24px;
            position: relative;
            margin-bottom: 10px;
            font-size: 14px;
        }

            .feature-list li::before {
                content: "✓";
                position: absolute;
                left: 0;
                color: #16a34a;
                font-weight: 700;
            }

    .banner-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        padding: 14px 24px;
        border-radius: 12px;
        background: #0d8a43;
        color: #fff !important;
        text-decoration: none;
        font-weight: 600;
        margin-top: auto; /* button always bottom */
    }
    /* ========== OVERLAY ========== */
    .overlay {
        display: none !important;
    }

    /* ========== HIDE DESKTOP ELEMENTS ========== */
    .d-none.d-md-block {
        display: none !important;
    }

    /* ========== CLOSE BUTTON ========== */
    .mega-menu-close {
        display: none !important;
    }

    /* ========== LEVEL 2 ITEMS ========== */
    #level2 .item,
    #company-level2 .item,
    #resources-level2 .item {
        padding: 12px 16px !important;
        font-size: 14px !important;
        border-bottom: 1px solid #eef2ef !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        background: #fafcfa !important;
        border: none !important;
        font-weight: 500 !important;
    }

        #level2 .item.has-child::after {
            content: "+" !important;
            font-size: 18px !important;
            color: #102e0b !important;
            background: #eef5ec !important;
            border-radius: 50% !important;
            width: 28px !important;
            height: 28px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            font-family: Arial, sans-serif !important;
            font-weight: 300 !important;
            position: absolute !important;
            right: 14px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
        }

        #level2 .item.has-child.open::after {
            content: "−" !important;
            background: #102e0b !important;
            color: #fff !important;
        }

        #level2 .item i,
        #company-level2 .item i,
        #resources-level2 .item i {
            font-size: 14px !important;
        }

    /* ========== COMPANY & RESOURCES SPECIFIC ========== */
    #company-level2 .item,
    #company-level3 .item,
    #company-level4 .item,
    #company-level5 .item,
    #resources-level2 .item,
    #resources-level3 .item,
    #resources-level4 .item,
    #resources-level5 .item {
        padding: 12px 16px !important;
        font-size: 14px !important;
        border-bottom: 1px solid #f0f2f0 !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        background: #fff !important;
        border: none !important;
    }

        #company-level2 .item:hover,
        #company-level3 .item:hover,
        #company-level4 .item:hover,
        #company-level5 .item:hover,
        #resources-level2 .item:hover,
        #resources-level3 .item:hover,
        #resources-level4 .item:hover,
        #resources-level5 .item:hover {
            background: #f5f8f5 !important;
        }
}

/* ========== VERY SMALL PHONES ========== */
@media (max-width: 380px) {
    .explore > a {
        font-size: 11px !important;
        padding: 4px 6px !important;
    }

        .explore > a::after {
            width: 20px !important;
            height: 20px !important;
            font-size: 14px !important;
        }

    .menu-item {
        padding: 4px 10px !important;
        font-size: 10px !important;
    }

    .item {
        padding: 10px 12px !important;
        font-size: 13px !important;
        min-height: 38px !important;
    }

        .item.has-child::after {
            width: 24px !important;
            height: 24px !important;
            font-size: 13px !important;
            right: 10px !important;
        }

    .banner-content h2,
    .banner-content h3 {
        font-size: 14px !important;
    }

    .banner-content p {
        font-size: 10px !important;
    }

    .menu-banner-card {
        min-height: 130px !important;
    }

        .menu-banner-card img {
            min-height: 130px !important;
        }

    .banner-btn {
        padding: 5px 10px !important;
        font-size: 10px !important;
    }

    .column .column .item {
        padding-left: 20px !important;
        font-size: 13px !important;
    }

    .column .column .column .item {
        padding-left: 32px !important;
        font-size: 11.5px !important;
    }

    .mega-menu-close {
        display: flex !important;
        position: fixed !important;
        top: 12px !important;
        right: 12px !important;
        background: #f0f0f0 !important;
        border: none !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        font-size: 22px !important;
        font-weight: 300 !important;
        cursor: pointer !important;
        align-items: center !important;
        justify-content: center !important;
        color: #333 !important;
        z-index: 999999 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
        transition: all 0.2s ease !important;
    }

        .mega-menu-close:hover {
            background: #e0e0e0 !important;
            transform: scale(1.05);
        }

        .mega-menu-close::before {
            content: "✕";
            font-size: 20px;
            font-weight: 400;
        }
        /* Remove any text inside button */
        .mega-menu-close:not(:empty) {
            font-size: 0 !important;
        }

            .mega-menu-close:not(:empty)::before {
                font-size: 20px !important;
            }
}

/* ========== iOS SAFARI FIX ========== */
@supports (-webkit-touch-callout: none) {
    .mega-menu {
        padding-bottom: 40px !important;
    }
}

/* ============================================
   MOBILE CLOSE BUTTON - SHOW ON ALL MENUS
   ============================================ */
.mega-footer-features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    margin-top: 5px;
    border: 1px solid #e6ece8;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    padding: 0 20px;
    min-height: 72px;
}

    .feature-item:not(:last-child) {
        border-right: 1px solid #e6ece8;
    }

.feature-icon {
    font-size: 32px;
    color: #138a4b;
    flex-shrink: 0;
}

.feature-item h6 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.feature-item p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.feature-cta {
    background: #fafcfb;
    border: 1px solid #e6ece8;
    border-radius: 8px;
    padding: 18px;
    flex: 1.2;
}

    .feature-cta .small-text {
        margin-bottom: 8px;
    }

    .feature-cta a {
        color: #138a4b;
        font-weight: 600;
        text-decoration: none;
    }

        .feature-cta a:hover {
            text-decoration: underline;
        }

@media (max-width: 991px) {
    /* Show close button on ALL mobile menus */
    .mega-menu-close {
        display: flex !important;
        position: fixed !important;
        top: 12px !important;
        right: 12px !important;
        background: #f0f0f0 !important;
        border: none !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        font-size: 0 !important;
        cursor: pointer !important;
        align-items: center !important;
        justify-content: center !important;
        color: #333 !important;
        z-index: 999999 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
        transition: all 0.2s ease !important;
    }

        .mega-menu-close:hover {
            background: #e0e0e0 !important;
            transform: scale(1.05);
        }

        .mega-menu-close::before {
            content: "✕" !important;
            font-size: 20px !important;
            font-weight: 400 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }
        /* Hide any text inside button */
        .mega-menu-close span,
        .mega-menu-close:not(:empty) {
            display: none !important;
        }

            .mega-menu-close:not(:empty)::before {
                display: flex !important;
            }
}

@media (max-width: 991px) {
    /* ----- BODY ALLOW SCROLL ----- */
    body {
        overflow-y: auto !important;
        height: auto !important;
        min-height: 100vh !important;
        position: relative !important;
    }

    /* ----- HEADER MOBILE ----- */
    .header-inner {
        padding: 0 !important;
        background: #fff !important;
        overflow: visible !important;
        max-height: none !important;
    }

        .header-inner .container {
            flex-direction: column !important;
            align-items: stretch !important;
            padding: 0 !important;
            overflow: visible !important;
            max-height: none !important;
        }

    /* ----- NAVIGATION - STACKED ----- */
    .nav {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        max-height: none !important;
    }

    /* ----- EACH PARENT MENU ----- */
    .explore {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        border-bottom: 1px solid #e5e5e5 !important;
        background: #fff !important;
        overflow: visible !important;
    }

        /* Parent Link */
        .explore > a {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            padding: 14px 16px !important;
            background: #f8faf8 !important;
            font-weight: 500 !important;
            color: #102e0b !important;
            font-size: 13px !important;
            width: 100% !important;
            text-decoration: none !important;
            cursor: pointer !important;
            border-radius: 0 !important;
            margin: 0 !important;
            border: none !important;
            min-height: 50px !important;
        }

            /* + / - Icon */
            .explore > a::after {
                content: "+" !important;
                font-size: 22px !important;
                font-weight: 300 !important;
                color: #102e0b !important;
                font-family: Arial, sans-serif !important;
                line-height: 1 !important;
                transition: transform 0.3s ease !important;
                width: 34px !important;
                height: 34px !important;
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                background: #eef5ec !important;
                border-radius: 50% !important;
                flex-shrink: 0 !important;
                margin-left: 8px !important;
            }

        .explore.active > a::after {
            content: "−" !important;
            background: #102e0b !important;
            color: #fff !important;
        }

        .explore.active > a {
            background: #102e0b !important;
            color: #fff !important;
        }

    /* ----- MEGA MENU - FULL WIDTH WITH SCROLL ----- */
    .mega-menu {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 0 !important;
        overflow: hidden !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        display: block !important;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
        min-height: 0 !important;
        z-index: 10 !important;
        border: none !important;
    }

    /* Jab parent active ho - FULL HEIGHT WITH SCROLL */
    .explore.active .mega-menu {
        max-height: none !important;
        height: auto !important;
        padding: 12px 16px 24px !important;
        display: block !important;
        overflow: visible !important;
        border-top: 2px solid #102e0b !important;
        background: #fafcfa !important;
    }

    /* ----- CLOSE BUTTON HIDE ----- */
    .mega-menu-close {
        display: none !important;
    }

    /* ----- SIDEBAR TABS (HORIZONTAL SCROLL) ----- */
    .sidebar {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 8px !important;
        padding: 8px 0 12px !important;
        background: transparent !important;
        border-bottom: 1px solid #e8ede8 !important;
        margin-bottom: 12px !important;
        scrollbar-width: thin !important;
        -webkit-overflow-scrolling: touch !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 5 !important;
        max-width: 100% !important;
    }

        .sidebar::-webkit-scrollbar {
            height: 4px !important;
        }

        .sidebar::-webkit-scrollbar-thumb {
            background: #ccc !important;
            border-radius: 10px !important;
        }

    .menu-item {
        padding: 8px 16px !important;
        font-size: 13px !important;
        border: 1px solid #dce4dc !important;
        border-radius: 20px !important;
        background: #fff !important;
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        color: #333 !important;
        font-weight: 500 !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

        .menu-item.active {
            background: #118847 !important;
            color: #fff !important;
            border-color: #118847 !important;
        }

    /* ----- CONTENT AREA - SCROLLABLE SUBMENU ----- */
    .content-area {
        display: block !important;
        flex-direction: column !important;
        padding: 0 !important;
        gap: 0 !important;
        background: transparent !important;
        width: 100% !important;
        max-height: 400px !important; /* LIMIT HEIGHT FOR SCROLL */
        overflow-y: auto !important; /* ENABLE SCROLL */
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        border: 1px solid #eef2ef !important;
        border-radius: 8px !important;
        scroll-behavior: smooth !important;
    }

        /* Scrollbar styling */
        .content-area::-webkit-scrollbar {
            width: 5px !important;
        }

        .content-area::-webkit-scrollbar-track {
            background: #f0f0f0 !important;
            border-radius: 10px !important;
        }

        .content-area::-webkit-scrollbar-thumb {
            background: #102e0b !important;
            border-radius: 10px !important;
        }

    /* ----- EACH COLUMN FULL WIDTH ----- */
    .column {
        width: 100% !important;
        min-width: 100% !important;
        flex: none !important;
        height: auto !important;
        max-height: none !important;
        border-right: none !important;
        border-bottom: 1px solid #eef2ef !important;
        padding: 0 !important;
        margin-bottom: 0 !important;
        background: transparent !important;
        display: block !important;
        overflow: visible !important;
    }

        /* Hide empty columns */
        .column:empty {
            display: none !important;
        }

    /* ----- ITEMS STYLE ----- */
    .item {
        padding: 12px 16px !important;
        font-size: 14px !important;
        border-bottom: 1px solid #eef2ef !important;
        background: #fff !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        cursor: pointer !important;
        color: #222 !important;
        transition: background 0.2s ease !important;
        min-height: 44px !important;
        overflow: visible !important;
    }

        .item:hover,
        .item.active {
            background: #f0f7ef !important;
            color: #102e0b !important;
        }

        /* Has-child arrow */
        .item.has-child::after {
            content: "›" !important;
            font-size: 20px !important;
            color: #999 !important;
            transition: transform 0.3s ease !important;
            font-weight: 300 !important;
        }

        .item.has-child.open::after {
            transform: rotate(90deg) !important;
            color: #102e0b !important;
        }

    /* ----- NESTED COLUMNS (INDENT) ----- */
    .column .column {
        padding-left: 16px !important;
        border-bottom: none !important;
        background: #f8faf8 !important;
    }

        .column .column .column {
            padding-left: 32px !important;
            background: #f5f8f5 !important;
        }

            .column .column .column .column {
                padding-left: 48px !important;
                background: #f2f6f2 !important;
            }

        .column .column[style*="display: block"] {
            display: block !important;
        }
    /* ----- BANNER (FULL WIDTH LAST) ----- */
    #level6,
    #company-level6,
    #resources-level6 {
        padding: 8px 0 !important;
        background: transparent !important;
        border: none !important;
        margin-top: 8px !important;
        width: 100% !important;
        overflow: visible !important;
        flex-shrink: 0 !important;
    }

    .menu-banner-card {
        min-height: 140px !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        position: relative !important;
        width: 100% !important;
    }

        .menu-banner-card img {
            width: 320px !important;
            height: 100% !important;
            min-height: 140px !important;
            object-fit: cover !important;
            background: transparent !important;
        }

    .banner-content {
        position: absolute !important;
        top: 12px !important;
        left: 16px !important;
        right: 16px !important;
        bottom: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

        .banner-content h3 {
            font-size: 14px !important;
            margin-bottom: 4px !important;
            color: #fff !important;
            font-weight: 500 !important;
        }

        .banner-content p {
            font-size: 11px !important;
            color: #fff !important;
            opacity: 0.9;
            margin-bottom: 4px !important;
            line-height: 1.3 !important;
        }

    .badge {
        font-size: 9px !important;
        padding: 2px 10px !important;
        margin-bottom: 4px !important;
        align-self: flex-start !important;
        background: rgba(255,255,255,0.92) !important;
        color: #0a9b3d !important;
        border-radius: 12px !important;
        font-weight: 500 !important;
    }

    .banner-btn {
        padding: 4px 12px !important;
        font-size: 10px !important;
        align-self: flex-start !important;
        background: #fff !important;
        color: #065135 !important;
        border-radius: 8px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
    }

    /* ----- OVERLAY HIDE ----- */
    .overlay {
        display: none !important;
    }

    /* ----- RIGHT BUTTONS (CONTACT, QUOTE, ORDER) ----- */
    .right {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 4px !important;
        padding: 8px 10px !important;
        width: 100% !important;
        background: #f8faf8 !important;
        border-top: 1px solid #e5e5e5 !important;
        overflow: visible !important;
        flex-shrink: 0 !important;
        margin-bottom: 20px;
    }

    .header__button {
        padding: 6px 10px !important;
        font-size: 11px !important;
        min-height: 32px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
        color: #333 !important;
        text-decoration: none !important;
    }

        .header__button span {
            display: inline !important;
            font-size: 11px !important;
        }

        .header__button svg {
            width: 14px !important;
            height: 14px !important;
        }

    /* ----- SEARCH BAR ----- */
    .searchform {
        width: 100% !important;
        margin: 4px 0 !important;
        height: 38px !important;
        display: flex !important;
        flex-shrink: 0 !important;
    }

        .searchform input {
            width: 100% !important;
            height: 38px !important;
            font-size: 13px !important;
            padding: 0 14px !important;
            border-radius: 8px 0 0 8px !important;
            border: 1px solid #ddd !important;
        }

        .searchform button {
            height: 38px !important;
            padding: 0 14px !important;
            width: 44px !important;
            border-radius: 0 8px 8px 0 !important;
            background: #102e0b !important;
            color: #fff !important;
            border: none !important;
        }

    /* ----- LOGO ----- */
    .navbar-brand img {
        max-height: 36px !important;
        width: auto !important;
    }

    /* ----- CAPABILITIES BUTTON HIDE TEXT ----- */
    .custom-btn.filled span {
        display: none !important;
    }

    .custom-btn.filled {
        padding: 6px 10px !important;
        font-size: 13px !important;
        min-height: 32px !important;
    }

        .custom-btn.filled i.fa-cart-plus {
            font-size: 13px !important;
        }

    .container,
    .container-fluid,
    .header,
    .header-inner,
    .header-fixed,
    .navbar,
    .navbar-collapse {
        overflow: visible !important;
        max-height: none !important;
    }
}

.mega-footer-features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    /*margin-top:30px;*/
    border: 1px solid #e6ece8;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    padding: 0 20px;
    min-height: 72px;
}

    .feature-item:not(:last-child) {
        border-right: 1px solid #e6ece8;
    }

.feature-icon {
    font-size: 22px;
    color: #138a4b;
    flex-shrink: 0;
}

.feature-item h6 {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
}

.feature-item p {
    margin: 0;
    font-size: 10px;
    color: #555;
    line-height: 1.5;
}

.feature-cta {
    background: #fafcfb;
    border: 1px solid #e6ece8;
    border-radius: 8px;
    padding: 5px 15px;
    flex: 1.2;
}

    .feature-cta .small-text {
        margin-bottom: 1px;
    }

    .feature-cta a {
        color: #138a4b;
        font-weight: 600;
        text-decoration: none;
        font-size: 11px;
    }

        .feature-cta a:hover {
            text-decoration: underline;
        }

.banner-column {
    flex: 1 !important;
    min-width: 300px !important; /* 250 se 300 */
    max-width: 420px !important; /* 350 se 420 */
    /* background: #f8faf8 !important;*/
    border-radius: 12px !important;
    margin-left: 8px !important;
    padding: 8px !important;
    display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center;
}


/* ===== FLOATING SIDE MENU ===== */
.floating-side-menu {
    position: fixed;
    left: 0;
    top: 73%; /* ← FIXED: Now in middle on desktop */
    transform: translateY(-50%);
    z-index: 9999;
    /*background: linear-gradient(180deg, #00b050, #009c2c);*/
    background-color: #306c14;
    color: #fff;
    padding: 18px 10px;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 10px;
    min-height: 100px;
    border: none;
}

.floating-side-menu:hover {
    background: #4ea625;
    padding-left: 10px;
}

.floating-side-menu .symbol {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    display: block;
}

.floating-side-menu .label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    display: block;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
    .floating-side-menu {
        top: auto !important;
        bottom: 20px !important;
        left: 0 !important;
        transform: none !important;
        min-width: 55px !important;
        min-height: 80px !important;
        padding: 12px 8px !important;
        border-radius: 0 10px 10px 0 !important;
        right: auto !important;
        flex-direction: column !important;
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        writing-mode: horizontal-tb !important;
    }

        .floating-side-menu .symbol {
            font-size: 18px !important;
            display: block !important;
        }

        .floating-side-menu .label {
            writing-mode: vertical-rl !important;
            transform: rotate(180deg) !important;
            font-size: 10px !important;
            display: block !important;
            letter-spacing: 0.5px !important;
        }

        .floating-side-menu .d-flex {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            gap: 2px !important;
        }
}

@media (max-width: 480px) {
    .floating-side-menu {
        min-width: 48px !important;
        min-height: 70px !important;
        padding: 10px 6px !important;
        bottom: 16px !important;
    }

        .floating-side-menu .symbol {
            font-size: 13px !important;
        }

        .floating-side-menu .label {
            font-size: 9px !important;
        }
}

/* Legacy styles */
.mega-menu.side-open {
    left: 44% !important;
}

.explore:hover .mega-menu,
.explore.open .mega-menu {
    display: block;
}
/* Hide floating button when menu is open */
.explore.open .floating-side-menu,
.explore.active .floating-side-menu,
.header__list-item.active ~ .floating-side-menu,
body.menu-open .floating-side-menu {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-50%) scale(0.8) !important;
    transition: all 0.3s ease !important;
}

/* Show floating button when menu is closed */
.floating-side-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
    transition: all 0.3s ease;
}
.explore.open .mega-menu,
.explore.active .mega-menu {
    display: flex !important;
}

/* Hide close button on desktop for ALL menus */
@media (min-width: 992px) {
    .mega-menu-close {
        display: none !important;
    }
}


/* Company Menu List Styles */
.company-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-menu-list li {
    position: relative;
    padding: 8px 8px;
    border-bottom: 1px solid #eee;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 1px;
    cursor: pointer;
}

    .company-menu-list li:hover {
        background: #f5f7fa;
    }

    .company-menu-list li a {
        display: block;
        color: #333 !important;
        text-decoration: none;
        font-size: 14px;
    }

        .company-menu-list li a:hover {
            color: #102e0b !important;
        }

/* Level 2 specific styles - matching existing design */
#company-level2 .company-menu-list li {
    padding: 4px 10px !important;
    font-size: 14px !important;
    border: 1px solid #e8ecef !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04) !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    background: #ffffff !important;
    color: black;
}
    #company-level2 .company-menu-list .item-icon {
        color: #118847 !important;
    }
    #company-level2 .company-menu-list li:hover {
        background: #f2f8f0 !important;
        border-color: #c8dcc4 !important;
        box-shadow: 0 4px 14px rgba(16, 46, 11, 0.10) !important;
    }

    #company-level2 .company-menu-list li a {
        color: inherit !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        padding: 8px 0 !important;
        width: 100% !important;
    }

        #company-level2 .company-menu-list li a:hover {
            color: #0a3a0a !important;
        }

/* Mobile responsive styles for company menu */
@media (max-width: 991px) {
    #company-level2 .company-menu-list li {
        padding: 12px 16px !important;
        font-size: 14px !important;
        border-bottom: 1px solid #eef2ef !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        background: #fafcfa !important;
        border: none !important;
        border-left: 4px solid transparent !important;
        font-weight: 500 !important;
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        box-shadow: none !important;
    }

        #company-level2 .company-menu-list li:hover {
            background: #f2f8f0 !important;
        }

        #company-level2 .company-menu-list li a {
            color: inherit !important;
            text-decoration: none !important;
            font-weight: 500 !important;
            width: 100% !important;
            padding: 4px 0 !important;
        }

            #company-level2 .company-menu-list li a:hover {
                color: #0a3a0a !important;
            }
}
/* Resources Menu List Styles */
.resources-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .resources-menu-list li {
        position: relative;
        padding: 8px 8px;
        border-bottom: 1px solid #eee;
        border-radius: 6px;
        transition: all 0.2s ease;
        margin-bottom: 1px;
        cursor: pointer;
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
    }

        .resources-menu-list li:hover {
            background: #f5f7fa;
        }

        .resources-menu-list li a {
            display: block;
            color: #333 !important;
            text-decoration: none;
            font-size: 14px;
            flex: 1 !important;
        }

            .resources-menu-list li a:hover {
                color: #102e0b !important;
            }

        /* Icon styles */
        .resources-menu-list li .item-icon {
            width: 36px !important;
            height: 36px !important;
            min-width: 36px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            border-radius: 10px !important;
            font-size: 13px !important;
            flex-shrink: 0 !important;
            color: #118847;
        }

        .resources-menu-list li:hover .item-icon {
            transform: scale(1.05) !important;
        }

        .resources-menu-list li .arrow {
            margin-left: auto;
            color: #b0b8c4;
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .resources-menu-list li.active .arrow {
            transform: rotate(90deg);
            color: #1a6a1a;
        }

/* Level 2 specific styles - matching existing design */
#resources-level2 .resources-menu-list li {
    padding: 4px 10px !important;
    font-size: 14px !important;
    border: 1px solid #e8ecef !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04) !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    background: #ffffff !important;
    color: black;
    justify-content: flex-start !important;
}

    #resources-level2 .resources-menu-list li:hover {
        background: #f2f8f0 !important;
        border-color: #c8dcc4 !important;
        box-shadow: 0 4px 14px rgba(16, 46, 11, 0.10) !important;
    }

    #resources-level2 .resources-menu-list li a {
        color: inherit !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        padding: 8px 0 !important;
        width: 100% !important;
    }

        #resources-level2 .resources-menu-list li a:hover {
            color: #0a3a0a !important;
        }

    #resources-level2 .resources-menu-list li.active {
        background: #e6f3e3 !important;
        border-color: #a8c8a0 !important;
        color: #0a3a0a !important;
    }

        #resources-level2 .resources-menu-list li.active .item-icon {
            color: #118847 !important;
        }

        #resources-level2 .resources-menu-list li.active .arrow {
            color: #1a6a1a !important;
        }

/* Level 3 Sub-menu Styles */
.resources-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .resources-submenu-list li {
        padding: 8px 8px;
        border-bottom: 1px solid #eee;
        border-radius: 6px;
        transition: all 0.2s ease;
        margin-bottom: 1px;
        cursor: pointer;
    }

        .resources-submenu-list li:hover {
            background: #f5f7fa;
        }

        .resources-submenu-list li a {
            display: block;
            color: #333 !important;
            text-decoration: none;
            font-size: 13px;
            padding: 4px 0;
        }

            .resources-submenu-list li a:hover {
                color: #102e0b !important;
            }

#resources-level3-educational .resources-submenu-list li,
#resources-level3-scientific .resources-submenu-list li {
    padding: 8px 12px !important;
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}

    #resources-level3-educational .resources-submenu-list li:hover,
    #resources-level3-scientific .resources-submenu-list li:hover {
        background: #f5f7fa !important;
    }

    #resources-level3-educational .resources-submenu-list li a,
    #resources-level3-scientific .resources-submenu-list li a {
        color: #333 !important;
        font-size: 13px !important;
        font-weight: 400 !important;
    }

        #resources-level3-educational .resources-submenu-list li a:hover,
        #resources-level3-scientific .resources-submenu-list li a:hover {
            color: #102e0b !important;
        }

/* Mobile responsive styles */
@media (max-width: 991px) {
    #resources-level2 .resources-menu-list li {
        padding: 12px 16px !important;
        font-size: 14px !important;
        border-bottom: 1px solid #eef2ef !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        background: #fafcfa !important;
        border: none !important;
        border-left: 4px solid transparent !important;
        font-weight: 500 !important;
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        box-shadow: none !important;
    }

        #resources-level2 .resources-menu-list li:hover {
            background: #f2f8f0 !important;
        }

        #resources-level2 .resources-menu-list li a {
            color: inherit !important;
            text-decoration: none !important;
            font-weight: 500 !important;
            width: 100% !important;
            padding: 4px 0 !important;
        }

            #resources-level2 .resources-menu-list li a:hover {
                color: #0a3a0a !important;
            }

    .resources-menu-list li .item-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 14px !important;
    }

    #resources-level3-educational .resources-submenu-list li,
    #resources-level3-scientific .resources-submenu-list li {
        padding: 10px 16px !important;
        border-bottom: 1px solid #f0f2f0 !important;
        background: #f8faf8 !important;
    }

    #resources-level3-educational,
    #resources-level3-scientific {
        width: 100% !important;
        min-width: 100% !important;
        flex: none !important;
        height: auto !important;
        border-right: none !important;
        padding: 0 !important;
        overflow: visible !important;
    }
}
/* =========================================================
   PRODUCTS & SERVICES MENU - COMPLETE CSS
   ========================================================= */

/* ---------- PRODUCTS MENU LIST (Level 2) ---------- */
.products-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .products-menu-list li {
        position: relative;
        padding: 8px 8px;
        border-bottom: 1px solid #eee;
        border-radius: 6px;
        transition: all 0.2s ease;
        margin-bottom: 1px;
        cursor: pointer;
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
    }

        .products-menu-list li:hover {
            background: #f5f7fa;
        }

        .products-menu-list li a {
            display: block;
            color: #333 !important;
            text-decoration: none;
            font-size: 14px;
            flex: 1 !important;
        }

            .products-menu-list li a:hover {
                color: #102e0b !important;
            }

        /* Icon styles for products */
        .products-menu-list li .item-icon {
           /* width: 36px !important;
            height: 36px !important;*/
           /* min-width: 36px !important;*/
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            border-radius: 10px !important;
            font-size: 13px !important;
            flex-shrink: 0 !important;
            color: #118847;
        }

        .products-menu-list li:hover .item-icon {
            transform: scale(1.05) !important;
        }

        .products-menu-list li .arrow {
            margin-left: auto;
            color: green;
            font-size: 18px;
            /*transition: transform 0.3s ease;*/
        }

        .products-menu-list li.active .arrow {
          /*  transform: rotate(90deg);*/
            color: #1a6a1a;
        }

/* ---------- LEVEL 2 SPECIFIC STYLES ---------- */
#products-level2 .products-menu-list li {
/*    padding: 4px 10px !important;*/
    font-size: 13px !important;
    border: 1px solid #e8ecef !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04) !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    background: #ffffff !important;
    color: #222 !important;
    justify-content: flex-start !important;
    min-height: 44px;
}

    #products-level2 .products-menu-list li:hover {
        background: #f2f8f0 !important;
        border-color: #c8dcc4 !important;
        box-shadow: 0 4px 14px rgba(16, 46, 11, 0.10) !important;
    }

    #products-level2 .products-menu-list li a {
        color: inherit !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        padding: 8px 0 !important;
        width: 100% !important;
    }

        #products-level2 .products-menu-list li a:hover {
            color: #0a3a0a !important;
        }

    #products-level2 .products-menu-list li.active {
        background: #e6f3e3 !important;
        border-color: #a8c8a0 !important;
        color: #0a3a0a !important;
    }

        #products-level2 .products-menu-list li.active .item-icon {
            color: #118847 !important;
        }

        #products-level2 .products-menu-list li.active .arrow {
            color: #1a6a1a !important;
        }

/* ---------- LEVEL 3 SUB-MENU STYLES ---------- */
.products-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .products-submenu-list li {
        padding: 8px 8px;
        border-bottom: 1px solid #eee;
        border-radius: 6px;
        transition: all 0.2s ease;
        margin-bottom: 1px;
        cursor: pointer;
    }

        .products-submenu-list li:hover {
            background: #f5f7fa;
        }

        .products-submenu-list li a {
            display: block;
            color: #333 !important;
            text-decoration: none;
            /*font-size: 13px;*/
            padding: 4px 0;
        }

            .products-submenu-list li a:hover {
                color: #102e0b !important;
            }

/* ---------- LEVEL 3 SPECIFIC STYLES ---------- */
#products-level3 .products-submenu-list li,
#products-level4 .products-submenu-list li,
#products-level5 .products-submenu-list li {
    padding: 8px 8px !important;
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}

    #products-level3 .products-submenu-list li:hover,
    #products-level4 .products-submenu-list li:hover,
    #products-level5 .products-submenu-list li:hover {
        background: #f5f7fa !important;
    }

    #products-level3 .products-submenu-list li a,
    #products-level4 .products-submenu-list li a,
    #products-level5 .products-submenu-list li a {
        color: #333 !important;
        font-size: 13px !important;
        font-weight: 400 !important;
    }

        #products-level3 .products-submenu-list li a:hover,
        #products-level4 .products-submenu-list li a:hover,
        #products-level5 .products-submenu-list li a:hover {
            color: #102e0b !important;
        }

/* ---------- HAS-CHILD ITEMS ---------- */
.products-submenu-list li.has-child {
   /* background: #f5f8f5 !important;*/
    /*    font-weight: 500 !important;
*/ display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-size: 13px;
}
    .products-submenu-list li.has-child:hover {
        font-size: 13px;
    }
    .products-submenu-list li.has-child.active {
        background: #e6f3e3 !important;
        font-size:13px;
    }

.products-submenu-list li .arrow {
    margin-left: auto;
    color: #b0b8c4;
    font-size: 13px;
   /* transition: transform 0.3s ease;*/
}

.products-submenu-list li.active .arrow {
    /*transform: rotate(90deg);*/
    color: #1a6a1a;
}

/* ---------- INDENTATION ---------- */
#products-level4 .products-submenu-list li {
    padding-left: 16px !important;
}

#products-level5 .products-submenu-list li {
    padding-left: 32px !important;
}

/* ---------- COLUMN STYLES ---------- */
#products-level3,
#products-level4,
#products-level5 {
    flex: 1;
    min-width: 0;
    height: 400px;
    padding: 0 0px;
    border-right: 1px solid #f0f0f0;
    overflow-y: auto;
    overflow-x: hidden;
}

    #products-level3:last-child,
    #products-level4:last-child,
    #products-level5:last-child {
        border-right: none;
    }

    #products-level3 .products-submenu-list,
    #products-level4 .products-submenu-list,
    #products-level5 .products-submenu-list {
        /*display: block !important;*/
    }

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 991px) {
    #products-level2 .products-menu-list li {
        padding: 12px 16px !important;
        /*font-size: 14px !important;*/
        border-bottom: 1px solid #eef2ef !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        background: #fafcfa !important;
        border: none !important;
        border-left: 4px solid transparent !important;
        font-weight: 500 !important;
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        box-shadow: none !important;
    }

        #products-level2 .products-menu-list li:hover {
            background: #f2f8f0 !important;
        }

        #products-level2 .products-menu-list li a {
            color: inherit !important;
            text-decoration: none !important;
            font-weight: 500 !important;
            width: 100% !important;
            padding: 4px 0 !important;
        }

            #products-level2 .products-menu-list li a:hover {
                color: #0a3a0a !important;
            }

    .products-menu-list li .item-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 14px !important;
    }

    #products-level3 .products-submenu-list li,
    #products-level4 .products-submenu-list li,
    #products-level5 .products-submenu-list li {
        padding: 10px 16px !important;
        border-bottom: 1px solid #f0f2f0 !important;
        background: #f8faf8 !important;
    }

    #products-level3,
    #products-level4,
    #products-level5 {
        width: 100% !important;
        min-width: 100% !important;
        flex: none !important;
        height: auto !important;
        border-right: none !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    /* Level 2 active state mobile */
    #products-level2 .products-menu-list li.active {
/*        background: #e6f3e3 !important;
*/        border-left: 4px solid #1a6a1a !important;
    }
}

/* ---------- VERY SMALL PHONES ---------- */
@media (max-width: 380px) {
    #products-level2 .products-menu-list li {
        padding: 8px 0px !important;
        /*font-size: 12px !important;*/
        min-height: 36px !important;
    }

        #products-level2 .products-menu-list li .item-icon {
            width: 28px !important;
            height: 28px !important;
            min-width: 28px !important;
            /* font-size: 12px !important;*/
        }

    .products-submenu-list li {
        padding: 8px 12px !important;
        /*font-size: 12px !important;*/
        min-height: 32px !important;
    }

        .products-submenu-list li a {
            font-size: 12px !important;
        }

    #products-level3 .products-submenu-list li,
    #products-level4 .products-submenu-list li,
    #products-level5 .products-submenu-list li {
        padding-left: 10px !important;
        /*font-size: 12px !important;*/
    }

    #products-level4 .products-submenu-list li {
        padding-left: 18px !important;
    }

    #products-level5 .products-submenu-list li {
        padding-left: 44px !important;
    }
}
/* Fix for mobile menu clicks */
@media (max-width: 991px) {
    .explore .mega-menu .item,
    .explore .mega-menu .has-child {
        cursor: pointer !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    .explore .mega-menu .column {
        pointer-events: auto !important;
    }

    .explore .mega-menu .item a {
        pointer-events: auto !important;
        /*display: block !important;*/
        width: 100% !important;
        padding: 8px 0 !important;
    }
}
/* =========================================================
   FIX: PRODUCTS LEVEL 3, 4, 5 - VISIBILITY FIX
   ========================================================= */

/* Force Level 3, 4, 5 columns to be visible */
#products-level3,
#products-level4,
#products-level5 {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-width: 0 !important;
    height: 400px !important;
    padding: 0 2px !important;
    border-right: 1px solid #f0f0f0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    /*background: #ffffff !important;*/
}

    /* Force submenu lists to be visible */
    #products-level3 .products-submenu-list,
    #products-level4 .products-submenu-list,
    #products-level5 .products-submenu-list {
        /*display: block !important;*/
        width: 100% !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

        /* Force list items to be visible */
        #products-level3 .products-submenu-list li,
        #products-level4 .products-submenu-list li,
        #products-level5 .products-submenu-list li {
            display: flex !important;
            align-items: center !important;
            padding: 8px 8px !important;
            border-bottom: 1px solid #f0f0f0 !important;
            border-radius: 0 !important;
            margin-bottom: 0 !important;
            /* background: #ffffff !important;*/
            min-height: 36px !important;
        }

            /* Force links to be visible */
            #products-level3 .products-submenu-list li a,
            #products-level4 .products-submenu-list li a,
            #products-level5 .products-submenu-list li a {
                /*display: block !important;*/
                color: #333 !important;
                text-decoration: none !important;
                /*font-size: 13px !important;*/
                /*font-weight: 400 !important;*/
                padding: 4px 0 !important;
                width: 100% !important;
            }

                #products-level3 .products-submenu-list li a:hover,
                #products-level4 .products-submenu-list li a:hover,
                #products-level5 .products-submenu-list li a:hover {
                    color: #102e0b !important;
                    background: #f5f8f5 !important;
                }

            /* Has-child items in Level 3 */
            #products-level3 .products-submenu-list li.has-child {
                /*background: #f5f8f5 !important;*/
                /*font-weight: 500 !important;*/
                display: flex !important;
                align-items: center !important;
                justify-content: space-between !important;
                cursor: pointer !important;
            }

                #products-level3 .products-submenu-list li.has-child.active {
                    /*background: #e6f3e3 !important;*/
                }

            #products-level3 .products-submenu-list li .arrow {
                margin-left: auto !important;
                color: #1a6a1a !important;
                /*font-size: 16px !important;*/
               /* transition: transform 0.3s ease !important;*/
            }

            #products-level3 .products-submenu-list li.active .arrow {
               /* transform: rotate(90deg) !important;*/
                color: #1a6a1a !important;
            }
    /* ===== CRITICAL FIX: Products Level 3, 4, 5 ===== */
    #products-level3 .products-submenu-list {
        display: none;
    }

        #products-level3 .products-submenu-list[style*="display: block"],
        #products-level3 .products-submenu-list[style*="display:block"] {
            display: block !important;
        }

/* Resources - Level 4 and 5 always visible */
#resources-level4,
#resources-level5 {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-width: 0 !important;
    height: 400px !important;
    padding: 0 10px !important;
    border-right: 1px solid #f0f0f0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

#resources-level5 {
    border-right: none !important;
}

    /* Empty state - show placeholder */
    #resources-level4:empty::after,
    #resources-level5:empty::after {
/*        content: "Select a sub-category";
*/        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        color: #999;
        font-size: 13px;
        font-style: italic;
    }
@media (max-width: 991px) {
    #resources-level4,
    #resources-level5 {
        width: 100% !important;
        min-width: 100% !important;
        flex: none !important;
        height: auto !important;
        border-right: none !important;
        padding: 10px 0 !important;
        overflow: visible !important;
        display: block !important;
    }

        #resources-level4:empty,
        #resources-level5:empty {
            display: none !important;
        }
}