/* Sticky Header */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background-color: #223366; /* Dark navy blue */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    font-size: 14px;
}
.top-bar div {
    display: flex;
    align-items: center;
}
.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
}
.top-bar a:hover {
    text-decoration: underline;
}

/* Navbar */
.navbar {
    display: flex;
    background-color: #E4472D; /* Orange */
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.company-name {
    font-size: 22px;
    font-weight: bold;
    color: #FFFFFF; /* White */
    margin-left: 10px;
}
.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
}
.nav-links li {
    margin: 0 15px;
    position: relative;
}
.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
}
.nav-links a:hover {
    color: #00008B; /* Navy Blue */
    background-color: rgba(255, 255, 255, 0.2); /* Optional light white overlay */
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    top: 100%;
    left: 0;
    z-index: 1000;
}
.dropdown-content a {
    padding: 10px;
    display: block;
    color: #223366;
}
.dropdown-content a:hover {
    background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content {
    display: block;
}


