/* CSS for fixed header on specific pages */
.fixed-header .header_area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #003087;
    transition: all 0.3s ease;
}

/* Ensure header background stays white during scrolling */
.fixed-header .header_area.navbar_fixed {
    background-color: #fff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Header style adjustments to match mockup */
.fixed-header .header_area .navbar.menu_one {
    background-color: #003087 !important;
    padding: 0px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-header .header_area .navbar.menu_one .navbar-brand img {
    max-height: 50px;
}

/* Button styles similar to mockup */
.fixed-header .header_area .login_btn {
    background: #ffb31a;
    color: #fff;
    border-radius: 20px;
    padding: 5px 20px;
    border: none;
    font-weight: 600;
}

/* Ensure nav items remain visible against blue background */
.fixed-header .header_area .navbar-nav .nav-link {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.fixed-header .header_area .navbar-nav .nav-link:hover, 
.fixed-header .header_area .navbar-nav .nav-item.active .nav-link {
    color: #f5a623 !important;
}

.fixed-header .header_area .security_login-btn,
.fixed-header .header_area .security_btn {
    border-color: #ffffff;
    color: #ffffff;
}

.fixed-header .header_area .security_login-btn:hover,
.fixed-header .header_area .security_btn:hover {
    background-color: #ffffff;
    color: #003087;
}

/* Header line styling */
.header-line {
    height: 4px;
    background: linear-gradient(90deg, #eec827, #eec826);
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Adjust body padding to accommodate fixed header */
.fixed-header body {
    padding-top: 80px;
}

/* Adjust anchor positions for smooth scrolling */
.fixed-header section[id] {
    scroll-margin-top: 80px;
}

.fixed-header .container.mt-5 {
    margin-top: 120px !important; /* Adjust based on header height */
} 