
/* Sticky Navbar & Sub-Header */
header {
    position: flex;
    top: 60px;
    width: 100%;
    background-color: #fff;
    z-index: 994;
    box-shadow: 0 2px 5px rgba(2, 4, 0, 0.1);
}

.sub-header-container {
    position: sticky;
    top: 60px; /* Ensures it appears below the main navbar */
    background-color: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
    z-index: 994;
    box-shadow: 4px 6px 12px rgba(.7, .5, 0, 0.4);
}

.sub-header {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    box-shadow: 0px 6px 12px rgba(.7, .5, 0, 0.4);
}


.sub-menu {
   
    border: 1px solid #e0d8da;
    border-radius: 10px;
    background-color: black;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
    padding-right: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px;
    opacity: 1;
    box-shadow: 0px 6px 12px rgba(.7, .5, 0, 0.4);
}




.sub-menu li {
     border: 1px solid #d9caf1;
     border-radius: 10px;
     position: relative;
     z-index: 1998;
     box-shadow: 0px 6px 12px rgba(.7, .5, 0, 0.4);
}


.sub-menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px;
    display: block;
    border-radius: 5px solid #d9caf1;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 5px;
    margin-right: 5px;
    z-index: 1999;
    box-shadow: 0px 6px 12px rgba(.7, .5, 0, 0.4);
}


.sub-menu a:hover {
    color: white;
    background-color: #12253b;
    border: none;
    border-radius: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 5px;
    margin-right: 5px;
    z-index: 2000;
    box-shadow: 0px 6px 12px rgba(.7, .5, 0, 0.4);
}



/* Dropdown menu */
.dropdown-content {
    border: 1px solid #8fa7ab;
    border-radius: 10px;
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    padding: 10px;
    top: 100%;
    left: 0;
    z-index: 2001;
    box-shadow: 0px 6px 12px rgba(.7, .5, 0, 0.4);
}
.dropdown:hover .dropdown-content {
    border: 1px solid #9ffdbc;
    border-radius: 10px;
    display: block;
}
.dropdown-column h4 {
    border: 1px solid #9ffdbc;
    border-radius: 10px;
    margin-bottom: 5px;
    color: #444;
    font-size: 12px;
    box-shadow: 0px 6px 12px rgba(.7, .5, 0, 0.4);
}
.dropdown-column ul {
    border: 1px solid #8fa7ab;
    border-radius: 10px;
    list-style: none;
    padding: 0;
    box-shadow: 0px 6px 12px rgba(.7, .5, 0, 0.4);
}
.dropdown-column ul li {
    border: 1px solid #a0c1c4;
    border-radius: 10px;
    padding: 5px 0;
    box-shadow: 0px 6px 12px rgba(.7, .5, 0, 0.4);
}


.dropdown-column ul li a {
    background: linear-gradient(to right, #356e73, #feb47b);
    border: 1px solid #a0c1c4;
    border-radius: 10px;
    color: #9bf1bd;
    font-size: 12px;
    box-shadow: 0px 6px 12px rgba(.7, .5, 0, 0.4);
}


.dropdown-column ul li a:hover {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    border: 1px solid #a0c1c4;
    border-radius: 10px;
    color: #333;
    font-size: 12px;
    box-shadow: 0px 6px 12px rgba(.7, .5, 0, 0.4);
}







