@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&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");

@font-face {
    font-family: "Neue-Montreal";
    src: url("/website/assets/font/NeueMontreal-Regular.otf");
}
:root {
    --primary_color: #006b4f !important;
    --secondary_color: #ee2d43 !important;
    --border_color: #ccc9c9 !important;
    --white_color: #ffffff !important;
    --text_color: #333 !important;
    --red_color: #ce2e28 !important;
    --green_color: #00312d !important;
    --lightGreen_color: #94d227;
    --yellow_color: #daac50;
    --primary_font: "Poppins" !important;
    --secondary_font: "Inter" !important;
    --tarnary_font: "Neue-Montreal" !important;
}

/* ==================================================== */

.navbar {
    width: 100%;
    top: 0;
    height: 85px;
    border-radius: 0px 0px 15px 15px;
    z-index: 1000000;
    position: absolute !important;
    position: fixed !important;
    position: relative;
}
.navbar .container-fluid {
    width: 90%;
    height: 100%;
}
.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo {
    height: 40px;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    width: 800px;
    top: 50px;
}
.navSearchContainer {
    width: 385px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    gap: 4px;
    border-radius: 30px;
    background-color: var(--white_color);
    border: 1px solid var(--border_color);
    position: relative;
}
.navSrcInp {
    width: calc(100% - 40px);
    border: none;
    font-family: var(--primary_font);
    font-size: 14px;
}
.navSearchContainer i {
    font-size: 24px;
    color: var(--text_color);
}
.nav-link.href-link {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--green_color);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 3px;
}
.nav-link.href-link:hover {
    color: var(--red_color) !important;
    transition: 0.3s;
}
.navMenus .nav-link.href-link i {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cvEnquiryNow {
    width: 150px;
    height: 50px;
    border-radius: 8px;
    border: none;
    background-color: var(--red_color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--white_color);
    cursor: pointer;
}
.chooseLangBtn {
    width: 150px;
    height: 50px;
    padding: 8px;
    background-color: var(--white_color);
    border-radius: 8px;
    border: 1px solid var(--red_color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
.chooseLangBtn i {
    font-size: 27px;
    color: var(--red_color);
}
.chooseLangBtn .bootstrap-select {
    width: calc(100% - 27px);
    color: var(--red_color) !important;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}
.chooseLangBtn .bootstrap-select.form-control {
    border: none !important;
}
.chooseLangBtn .bootstrap-select.form-control:focus {
    box-shadow: none !important;
}
.navMenuBtn {
    background-color: var(--border_color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.navMenuBtn span {
    font-size: 27px;
    color: var(--text_color);
}
.navMenuBtn:hover {
    transform: scale(1.05);
    transition: 0.3s;
}
#menusItem {
    display: none;
}

/* Course college modal ======================= */
.course-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
}
.course-item:last-child {
    border-bottom: none;
}
.course-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 10px;
    border: 1px solid var(--border_color);
}
.course-title {
    margin: 0;
    font-family: var(--secondary_font);
    font-size: 16px;
    font-weight: 500;
    color: var(--text_color);
}
.university-name {
    margin: 0;
    font-family: var(--secondary_font);
    font-size: 14px;
    font-weight: 500;
    color: #666666;
}
.section-divider {
    border-right: 1px solid #e0e0e0;
}
.section-title {
    font-family: var(--secondary_font);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary_color);
    margin-bottom: 20px;
}
.see-all {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--secondary_font);
    color: var(--secondary_color);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s;
}
.see-all i {
    font-size: 18px;
    font-weight: 600;
}
.see-all:hover {
    color: var(--red_color);
}

/* Search modal===================== */
.modal-content {
    width: 100% !important;
}
.searchModal {
    position: absolute;
    top: 18px;
    left: 15rem;
    width: 400px;
    background-color: var(--white_color);
    z-index: 10;
    border-radius: 25px 25px 10px 10px;
}
.modal-header {
    padding: 0px 14px !important;
    height: 50px !important;
    width: 100% !important;
    border-radius: 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eeeeee !important;
    background-color: var(--white_color);
}
.modal-header input {
    width: calc(100% - 70px);
    border: none;
}
.modal-header i {
    font-size: 20px;
    cursor: pointer;
}
.modal-title {
    width: 100%;
}
.section-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary_color);
}
.clear-all {
    color: var(--secondary_color);
    cursor: pointer;
    float: right;
    font-size: 14px;
    font-weight: 600;
}
.clear-all i {
    font-size: 14px;
    font-weight: 600;
}
.trending-searches,
.popular-colleges,
.recent-searches {
    padding: 0.8rem 1.3rem;
}
.search-item {
    padding: 5px 0;
    border-bottom: 1px solid #eaeaea;
}
.college-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 5px 0;
    border-bottom: 1px solid #eaeaea;
}
#searchModal {
    display: none;
}
.suggestion {
    margin: 10px 0;
}
#suggestionsBoxHeaderData a {
    color: var(--text_color);
}
.recent-searches{
    max-height: 500px;
    overflow-x:auto;
}
.search-item a{
    color: var(--text_color);
}
@media screen and (max-width: 1660px) {
    .navSearchContainer {
        width: 300px;
    }
    .searchModal {
        left: 14rem;
    }
}
@media screen and (max-width: 1440px) {
    .searchModal {
        left: 13rem;
    }
}
@media screen and (max-width: 1280px) {
    .navbar .container-fluid {
        width: 95%;
    }
    .searchModal {
        left: 11rem !important;
    }
    .dropdown-menu {
        width: 700px;
    }
    .course-item {
        padding: 10px 0;
        align-items: flex-start;
    }
    .course-item:last-child {
        border-bottom: none;
    }
    .course-logo {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
    .course-title {
        font-size: 14px;
        font-weight: 400;
    }
    .university-name {
        font-size: 12px;
        font-weight: 400;
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .see-all {
        font-size: 14px;
    }
    .see-all i {
        font-size: 16px;
    }
}
@media screen and (max-width: 1200px) {
    .sidebarMenusItem {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        background-color: #00000021;
    }
    .sideFullbar {
        width: 350px;
        height: 100%;
        background-color: var(--white_color);
        border-top-right-radius: 25px;
        overflow: hidden;
    }
    .navHeadLog {
        width: 100%;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #f3f2f2;
        height: 85px;
    }
    .navHeadLog i {
        font-size: 30px;
        color: var(--text_color);
        cursor: pointer;
        transition: 0.3s;
    }
    .navHeadLog i:hover {
        color: var(--red_color);
        transform: scale(1.05);
        transition: 0.3s;
    }
    .sidebarMenusItem .menusBox {
        width: 100%;
        padding: 1rem;
        display: flex;
        flex-direction: column;
    }
    .sidebarMenusItem .menusBox .nav-link {
        color: var(--green_color) !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 50px;
        padding: 0 1rem;
        transition: 0.3s;
        font-size: 16px;
        font-weight: 500;
        font-family: var(--primary_font);
        border-bottom: 1px solid var(--border_color);
    }
    .sidebarMenusItem .menusBox .nav-link i {
        font-size: 20px;
        transition: 0.3s;
    }
    .sidebarMenusItem .menusBox .nav-link:hover {
        color: #fff !important;
        background-color: var(--green_color);
        border-radius: 4px;
        transition: 0.3s;
    }

    .sidebarMenusItem .suggestMenu {
        color: var(--green_color) !important;
        width: 100%;
        min-height: 50px;
        transition: 0.3s;
    }
    .submenus {
        display: none;
        padding: 0;
        list-style-type: none;
        padding-left: 0;
    }
    .submenus li {
        padding: 0.5rem 1rem;
        border-bottom: 1px solid var(--border_color);
    }
    .submenus .dropdown-item {
        font-size: 16px;
        font-weight: 500;
        color: var(--text_color);
        cursor: pointer;
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
    }

    .searchModal {
        left: 14rem !important;
    }
    .suggestMenu.active .submenus {
        display: block;
    }
    .suggestMenu .nav-link.active {
        color: var(--white_color) !important;
        background-color: var(--green_color);
        border-radius: 4px;
        transition: 0.3s;
    }
    .nav-link.active i {
        transform: rotate(90deg);
        transition: 0.3s;
    }
}
@media screen and (max-width: 1000px) {
    .navSearchContainer {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        cursor: pointer;
    }
}
@media screen and (max-width: 768px) {
    .navbar {
        border-radius: 0;
        height: 60px;
    }
    .navbar .container-fluid {
        width: 99% !important;
    }
    .navbar-brand .logo {
        height: 30px !important;
    }

    .navMenuBtn {
        background: none !important;
        width: 40px;
        height: 40px;
        border-radius: 0;
        padding: 0;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .navMenuBtn span {
        font-size: 35px;
        color: var(--text_color);
    }

    .navHeadLog i {
        font-size: 28px;
    }
    .recent-searches{
        max-height: 100%;
    }
    .chooseLangBtn {
        width: 100px;
        height: 40px;
        padding: 0 5px;
        border-radius: 5px;
        border: 1px solid var(--border_color);
        gap: 6px;
    }
    .chooseLangBtn i{
        font-size: 20px;
    }

    .bootstrap-select {
        margin: 0 !important;
        width: 100% !important;
        padding: 0 !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        color: var(--green_color) !important;
    }

    .cvEnquiryNow {
        width: 100px;
        height: 40px;
        padding: 0;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 500;
        line-height: 18px;
    }
    .sideFullbar .navHeadLog {
        height: 60px;
    }

    .searchBtnBox {
        border: 1px solid var(--border_color);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        cursor: pointer;
    }
    .searchBtnBox i {
        font-size: 24px;
    }

    .searchModal {
        left: 0 !important;
        top: 60px;
        width: 100%;
        border-radius: 0;
    }
    .modal-header {
        border-radius: 0 !important;
    }
}
@media screen and (max-width: 500px) {
    .sideFullbar {
        width: 65%;
    }
    .searchBtnBox i {
        font-size: 22px;
    }
}
@media screen and (max-width: 450px) {
    .sideFullbar {
        width: 90%;
    }
    .navbar-brand .logo {
        height: 25px !important;
    }
    .chooseLangBtn {
        height: 35px !important;
        width: 70px !important;
        overflow: hidden !important;
        gap: 3px;
        padding: 4px;
    }
    .chooseLangBtn i{
        font-size: 16px;
    }
    .bootstrap-select {
        font-size: 10px !important;
    }
    .cvEnquiryNow {
        height: 35px;
        width: 70px;
        font-size: 10px;
        padding: 4px;
    }
    .searchBtnBox {
        height: 35px;
        width: 35px;
    }
    .searchBtnBox i {
        font-size: 20px;
    }
}

@media screen and (max-width: 390px) {
    #navbarNav{
        gap: 0.5rem !important;
    }
}
@media screen and (max-width: 355px) {
    .chooseLangBtn {
        display: none;
    }
}
