/* fix_sticky.css */
/* CORRECTED Sticky Header Rules - Appended */
.header-style-1.sticky-header.is-fixed {
    background-color: #DBEEEE !important;
    animation: 0.95s ease 0s normal forwards 1 running mainBar_on_scrollAnimatio;
    border-radius: 0px 0px 30px 30px;
}

/* Force correct logo toggling */
/* Default State */
.logo-header .logo-white {
    display: inline-block !important;
}

.logo-header .logo-colored {
    display: none !important;
}

/* Sticky State */
.header-style-1.sticky-header.is-fixed .logo-header .logo-white {
    display: none !important;
}

.header-style-1.sticky-header.is-fixed .logo-header .logo-colored {
    display: inline-block !important;
}

/* final_sticky_fix.css */
/* FINAL STICKY HEADER FIXES */
/* 1. Header Background & Shape */
.header-style-1.sticky-header.is-fixed {
    background-color: #DBEEEE !important;
    animation: 0.95s ease 0s normal forwards 1 running mainBar_on_scrollAnimatio;
    border-radius: 0px 0px 30px 30px;
}

/* 2. Logo Toggling Logic */
/* Default: White logo shown, Colored logo hidden */
.logo-header .logo-white {
    display: inline-block !important;
}

.logo-header .logo-colored {
    display: none !important;
}

/* Sticky State: White logo hidden, Colored logo shown */
.header-style-1.sticky-header.is-fixed .logo-header .logo-white {
    display: none !important;
}

.header-style-1.sticky-header.is-fixed .logo-header .logo-colored {
    display: inline-block !important;
}

/* 3. Menu Items Color in Sticky Mode */
/* Force black color for menu items when header is sticky */
.header-style-1.sticky-header.is-fixed .header-nav .nav>li>a {
    color: #000000 !important;
}

/* Ensure sub-menu indicators (if any) are also black or dark */
.header-style-1.sticky-header.is-fixed .header-nav .nav>li i {
    color: #000000 !important;
}

/* Search and Hamburger icons in black for visibility */
.header-style-1.sticky-header.is-fixed .extra-nav .extra-cell .header-search .header-search-icon i,
.header-style-1.sticky-header.is-fixed .navbar-toggler .icon-bar {
    color: #000000 !important;
    background-color: #000000 !important;
    /* mostly for icon-bar spans */
}

