@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body { position: relative; }
.SHADOW {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* // NavBar =========================================================================================== */
.navbar {
    display: flex;
    position: sticky;
    width: 100%;
    top: 0px;
    z-index: 999;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 15px 20px;
    height: 65px;
}
.logo img { width: 330px; }
.nav-links { list-style: none; display: flex; }
.nav-links li { position: relative; }
.nav-links a {
    text-decoration: none;
    padding: 18px 15px;
    display: block;
    font-size: 1.1em;
    color: black;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.dropdown a:first-child { padding: 18px 15px; }
.sub-dropdown a:first-child { padding: 8px 15px; }
.nav-links a:hover { color: #2563EB; }
#Course_Enquiry_Button { background-color: #FCD34D; padding: 5px 15px; border-radius: 5px; }
#Course_Enquiry_Button:hover {
    background-color: #2563EB;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    position: absolute;
    list-style: none;
    display: none;
    min-width: 200px;
    top: 100%;
    left: 0%;
    padding: 10px 0;
    border-radius: 0 0px 15px 15px;
}
.first-menu {
    background: white;
    white-space: nowrap;
}
.second-menu {
    background: white;
    white-space: nowrap;
}
.third-menu {
    background: white;
    white-space: nowrap;
}

/* Sub-dropdown styling */
.sub-dropdown-menu {
    position: absolute;
    right: 100%;
    top: 0;
    list-style: none;
    display: none;
    min-width: 200px;
    padding: 10px 0;
}

/* Unique Colors for Sub-dropdowns */
.first-menu .sub-dropdown-menu {
    background: white;
    white-space: nowrap;
}

.second-menu .sub-dropdown-menu {
    background: white;
    white-space: nowrap;
}

.third-menu .sub-dropdown-menu {
    background: #B0E0E6;
    white-space: nowrap;
}

/* Hover & Show Menus */
.dropdown:hover>.dropdown-menu {
    display: block;
}

.sub-dropdown:hover>.sub-dropdown-menu {
    display: block;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
#Overflow_Content{
    height: 250px;
    overflow: auto;
}

@media screen and (max-width: 1024px) {
    .logo img { width: 280px; }
    .menu-toggle { 
        display: block;
        color: #2563EB;    
        font-size: 30px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        height: calc(100vh - 10px);
        background: #2563eb;
        overflow: scroll;
        position: absolute;
        z-index: 999;
        top: 65px;
        right: 0;
    }
    .nav-links li a:first-child{
        color: white;
        font-weight: 600;
    }
    .dropdown-menu{ background: #3b82f6; border-radius: 0; }
    .nav-links.active { display: flex; }
    .nav-links li { text-align: center; }
    .dropdown-menu,
    .sub-dropdown-menu {
        position: static;
        display: none;
        width: 100%;
    }
    .sub-dropdown-menu li a:link{
        color: black;        
    }
    .dropdown.active>.dropdown-menu { display: block; }
    .sub-dropdown.active>.sub-dropdown-menu { display: block; }
    #Course_Enquiry_Button{
        color: rgb(40, 40, 40);
    }
}