        /* Main Navigation Wrapper */
        /* .main-navigation-wrap {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid;
        } */

/* .navbar-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.main-navigation-wrap {
    transition: transform 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 999;
     border-bottom: 1px solid;
} */



/* Navbar hide on scroll */
/* .navbar-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.main-navigation-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

Mobile Menu (hidden by default for small screens)
@media (max-width: 991px) {
    .primary-menu-list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 260px;
        height: 100%;
        background: #fff;
        padding-top: 80px;
        transition: 0.3s ease;
        z-index: 999;
    }

    .primary-menu-list.mobile-menu-open {
        left: 0;
    }
} */

.bs-header{
    box-shadow: none;
}


/*.navbar-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}*/



/* For main navigation */
.navbar-hidden {
    transform: translateY(-138%);
    transition: transform 0.3s ease;
}

/* For secondary info bar */
.bar-hidden {
    transform: translateY(-138%);
    transition: transform 0.3s ease;
}

/* Ensure bars can slide */
.main-navigation-wrap,
.secondary-informa-bar {
    transition: transform 0.3s ease;
}


.main-navigation-wrap {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: transform 0.3s ease;
    border-bottom: 1px solid;
    background: #fff;
           
}


        .header-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Logo Section */
        .brand-logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .primary-brand-logo img,
        .secondary-brand-logo img {
            height: 50px;
            width: auto;
        }

        .secondary-brand-logo {
            display: none;
        }

        /* Menu Toggle Button */
        .mobile-menu-trigger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger-icon {
            width: 30px;
            height: 24px;
            position: relative;
            transform: rotate(0deg);
            transition: 0.5s ease-in-out;
        }

        .hamburger-line {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #333;
            border-radius: 9px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: 0.25s ease-in-out;
        }

        .hamburger-line:nth-child(1) {
            top: 0px;
        }

        .hamburger-line:nth-child(2) {
            top: 10px;
        }

        .hamburger-line:nth-child(3) {
            top: 20px;
        }

        /* Hamburger to X Animation */
        .mobile-menu-trigger.menu-active .hamburger-line:nth-child(1) {
            top: 10px;
            transform: rotate(135deg);
        }

        .mobile-menu-trigger.menu-active .hamburger-line:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        .mobile-menu-trigger.menu-active .hamburger-line:nth-child(3) {
            top: 10px;
            transform: rotate(-135deg);
        }

        /* Desktop Menu */
        .primary-menu-list {
            display: flex;
            list-style: none;
            gap: 5px;
            margin: 0;
            padding: 0;
        }

        .menu-list-item {
            position: relative;
        }

        .menu-link-item {
            display: block;
            padding: 12px 10px;
            text-decoration: none;
            color: #002B66;
            font-weight: 600;
            text-transform: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .menu-link-item:hover {
            color: #00786d;
        }

        .menu-link-item .fa-caret-down {
            margin-left: 5px;
            font-size: 12px;
            transition: transform 0.3s ease;
        }
        .action-buttons-wrapper .menu-list-item a{
                justify-content: center;
        }

        /* Action Buttons */
        .action-buttons-wrapper{
            display: flex;
            gap: 10px
        }
        .action-btn-primary,
        .action-btn-secondary {
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 600;
            text-transform: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .action-btn-primary {
            background: #00786d;
            color: #fff;
        }

        .action-btn-primary:hover {
            background: #005A50;
            color: #fff;
            /* transform: translateY(-2px); */
        }

        .action-btn-secondary {
            background: #00786d;
            color: #fff;
        }

        .action-btn-secondary:hover {
            background: #005A50;
            color: #fff;
            /* transform: translateY(-2px); */
        }

        /* Dropdown Menu */
        /* .submenu-dropdown-list {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            list-style: none;
            padding: 10px 0;
            margin: 0;
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border-radius: 5px;
            z-index: 1000;
        } */

        /* Desktop Hover Effect */
        @media (min-width: 992px) {
            .menu-list-item:hover .submenu-dropdown-list {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        /* Mobile Click Effect */
        @media (max-width: 991px) {
            .menu-list-item.dropdown-open .submenu-dropdown-list {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

            /* Main Navigation Wrapper */
        /* .main-navigation-wrap {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid;
        } */

        .header-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Logo Section */
        .brand-logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .primary-brand-logo img,
        .secondary-brand-logo img {
            height: 80px;
            width: auto;
        }

        .secondary-brand-logo {
            display: none;
        }

        /* Menu Toggle Button */
        .mobile-menu-trigger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger-icon {
            width: 30px;
            height: 24px;
            position: relative;
            transform: rotate(0deg);
            transition: 0.5s ease-in-out;
        }

        .hamburger-line {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #333;
            border-radius: 9px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: 0.25s ease-in-out;
        }

        .hamburger-line:nth-child(1) {
            top: 0px;
        }

        .hamburger-line:nth-child(2) {
            top: 10px;
        }

        .hamburger-line:nth-child(3) {
            top: 20px;
        }

        /* Hamburger to X Animation */
        .mobile-menu-trigger.menu-active .hamburger-line:nth-child(1) {
            top: 10px;
            transform: rotate(135deg);
        }

        .mobile-menu-trigger.menu-active .hamburger-line:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        .mobile-menu-trigger.menu-active .hamburger-line:nth-child(3) {
            top: 10px;
            transform: rotate(-135deg);
        }

        /* Desktop Menu */
        .primary-menu-list {
            display: flex;
            list-style: none;
            gap: 5px;
            margin: 0;
            padding: 0;
        }

        .menu-list-item {
            position: relative;
        }
/* 
        .menu-link-item {
            display: block;
            padding: 12px 20px;
            text-decoration: none;
            color: #002B66;
            font-weight: 600;
            text-transform: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        } */

        .menu-link-item:hover {
            color: #00786d;
        }

        .menu-link-item .fa-caret-down {
            margin-left: 5px;
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        /* Action Buttons */
        .action-btn-primary,
        .action-btn-secondary {
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 600;
            text-transform: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .action-btn-primary {
            background: #00786d;
            color: #fff;
        }

        .action-btn-primary:hover {
            background: #005A50;
            color: #fff;
            /* transform: translateY(-2px); */
        }

        .action-btn-secondary {
            background: #00786d;
            color: #fff;
        }

        .action-btn-secondary:hover {
            background: #005A50;
            color: #fff;
            /* transform: translateY(-2px); */
        }

        /* Dropdown Menu */
        .submenu-dropdown-list {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            list-style: none;
            padding: 10px 0;
            margin: 0;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border-radius: 5px;
            z-index: 1000;
        }

        /* Desktop Hover Effect */
        @media (min-width: 992px) {
            .menu-list-item:hover .submenu-dropdown-list {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        /* Mobile Click Effect */
        @media (max-width: 991px) {
            .menu-list-item.dropdown-open .submenu-dropdown-list {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        .submenu-link-item {
            display: block;
            padding: 10px 20px;
            text-decoration: none;
            color: #002B66;
            font-size: 15px;
            text-transform: none;
            transition: all 0.3s ease;
            font-weight: 600;
            position: relative;
        }

        /* Underline effect for desktop only - excluding first item */
        @media (min-width: 992px) {
            .submenu-link-item:not(.first-item)::after {
                box-sizing: border-box;
                content: "";
                position: absolute;
                left: 20px;
                bottom: 5px;
                width: calc(100% - 40px);
                height: 2px;
                background-color: #00786d;
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            .submenu-link-item:not(.first-item):hover::after {
                opacity: 1;
            }
        }

        .submenu-link-item:hover {
            color: #00786d;
        }

        /* First submenu item uppercase */
        .submenu-link-item.first-item {
            text-transform: uppercase;
            color: #00786d;
        }

        /* Mobile Styles */
        @media (max-width: 991px) {
            .mobile-menu-trigger {
                display: block;
            }

            .primary-menu-list {
                position: fixed;
                /*top: 160px;*/
                top: 154px;
                left: 0;
                width: 100%;
                height: calc(100vh - 120px);
                background: #fff;
                flex-direction: column;
                /* padding: 20px; */
                padding: 0px;
                gap: 0;
                overflow-y: auto;
                transition: all 0.3s ease;
                transform: translateY(-00%);
                opacity: 0;
                visibility: hidden;
            }

            .primary-menu-list.mobile-menu-open {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .menu-list-item {
                width: 100%;
                border-top: 1px solid #002B66;
                border-bottom: 1px solid #002B66;
            }

            .menu-list-item + .menu-list-item {
                border-top: none;
            }

            .menu-link-item {
                width: 100%;
                padding: 15px 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .menu-link-item .fa-caret-down {
                margin-left: auto;
            }

            /* Rotate caret on dropdown open */
            .menu-list-item.dropdown-open .menu-link-item .fa-caret-down {
                transform: rotate(180deg);
            }

            .submenu-dropdown-list {
                position: static;
                box-shadow: none;
                background: #fff;
                border-radius: 0;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .menu-list-item.dropdown-open .submenu-dropdown-list {
                max-height: 500px;
                /* padding: 10px 0; */
                padding: 0 0 25px 0;
            }

            .submenu-link-item {
                /* padding: 12px 20px 12px 30px; */
               margin: 0 20px;
                border-bottom: 1px solid;
                padding: 10px 0;
                font-size: 13px;
            }
            .submenu-link-item.first-item{
                display: none;
            }

          
            .action-buttons-wrapper {
                display: contents;
            }

            @media (max-width: 991px) {
                .action-buttons-wrapper {
                    display: flex;
                    gap: 10px;
                    width: 100%;
                    margin-top: 10px;
                    padding: 0 10px;
                }

                .action-buttons-wrapper .menu-list-item {
                    border: none;
                }
            }

            .action-btn-primary,
            .action-btn-secondary {
                flex: 1;
                text-align: center;
                margin-top: 0;
            }

            .secondary-brand-logo {
                display: block;
            }
        }

        /* Tablet Styles */
        @media (max-width: 768px) {
            .header-navigation {
                padding: 15px 20px;
            }

            .primary-brand-logo img,
            .secondary-brand-logo img {
                height: 60px;
            }
        }



        /* footer css */
        .bs-footer .sec-content .content-bx .heading::before{
            content: none;
        }

        .bs-footer .sec-content .content-bx .heading::after {
            content: "";
            width: 43px;
            height: 1px;
            background-color: #fff;
            display: block;
            margin-bottom: 10px;
            margin-top: 10px;
        }

        .content-date p{
            font-size:16px;
            font-weight:600;
            letter-spacing:0.15008px;
            line-height:31px; color: #ffffff;
        }

        .bs-footer .sec-content .content-bx .social-icons .icon-bg{
        background-color: white !important;
        border: none !important;
        }
        .bs-footer .sec-content .content-bx .social-icons .icon-bg i{
            color: #333;
            margin-top: 11px;
        }
        .bs-footer .sec-content .content-bx .social-icons .icon-bg i:hover{
            color: #00786d !important;
        }

        .multidetls a {
            position: relative;
            text-decoration: none;
            color: #fff;
            font-size: 16px;
            display: inline-block;
            padding-bottom: 4px;
        }

        .multidetls a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 1px;
            background-color: #fff;
            transition: none; 
        }

        .multidetls a:hover::after {
            width: 100%;
        }

        /* footer css */

        /* informa-header-css */
        #iribbon-title{
        background: url('https://exhibit.palmexpo.in/images/logo/header.png') no-repeat center top !important;
        }
        /* informa-header-css */