@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/* font-family: "Lato", sans-serif;*/


.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: unset;
    font-family: "Lato", sans-serif;
    line-height: unset;
}

body {
    font-family: "Lato", sans-serif;
}

/* =================================================================================== */
header {
    position: relative;
    border-top: 2px solid #3366ff;
}

header:before {
    background: linear-gradient(90deg, #268bc47a, transparent);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.4;
    background-size: cover;
    background-repeat: no-repeat;
}

.top-header {
    width: max-content;
    float: right;
    padding: 0px 0px 0px 0px;
    max-height: 35px;
    position: relative;
    border-bottom: 1px dashed #9f9f9f;
}


.top-header .menu-top {
    display: inline-block;
    position: relative;
}

.top-header .menu-top ul {
    padding: 0;
    margin: 0;
}

.top-header .menu-top ul li {
    display: inline-block;
    padding: 0 5px;
    line-height: 26px;
}

.top-header .menu-top ul li a {
    color: #268bc4;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

.top-mid-header {
    margin-top: 40px;
    position: relative;
}

.top-mid-header .logo {
    float: left;
    margin-top: -40px;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 93px;
}

.top-mid-header .menu {
    float: left;
    width: 100%;
}

.menu .menu-wrap .nav-link {
    color: #383838 !important;
    font-weight: 500;
    font-size: 16px;
}

.side-bar {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #3366ff;
    padding: 11px 5px 18px 5px;
    /* z-index: 1111; */
    margin-top: -32px;
}

.side-bar div {
    padding: 6px 0;
    width: 27px;
    text-align: center;
}

.side-bar div button.btn.btn-primary {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.round {
    border-radius: 8px;
    padding: 8px 8px;
}

.round button {
    clear: both;
    background: none;
    color: #fff;
    box-shadow: none;
    border: 1px solid #fff;
    width: 18px;
    height: 18px;
    margin-bottom: 5px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 9px !important;
}

.color-switcher button {
    color: transparent;
    border: none;
    overflow: hidden;
    width: 17px;
    height: 17px;
    background: #0d0d0d;
    border: 1px solid #fff;
}

.color-switcher button:nth-child(2) {
    background: #1174c0;
    border: 1px solid #fff;
}

.color-switcher button:nth-child(3) {
    background: #ffffff;
    border: 1px solid #fff;
}
button.btn.more-menu-btn:hover {
    border-color: #3366ff;
    background: #3366ff;
}
.top-mid-header div#rightMenu {
    width: 250px;
    background: #f9f9f9;
}
.top-mid-header div#rightMenu .offcanvas-header {
    background: #3366ff;
    color: white;
}
.top-mid-header .offcanvas-header .btn-close {
    filter: invert(1);
}
.top-mid-header .offcanvas-body{
    padding: 0;
}
.top-mid-header .offcanvas-body li {
    padding-left: 20px;
    border-bottom: 1px dotted #959595;
}
.top-mid-header .offcanvas-body li:hover {
    background: #a7bdff;
}
/* ===================================================================================== */
.slider:before {
    background: none;
}

.slider-image {
    position: relative;
    height: 100vh;
}


.slider-image::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #000000de, #00000000); 
    /* background: linear-gradient(180deg, #0000002e, #00000000); */
}

/**/
/**/

.floating-button {
    position: fixed;
    z-index: 1;
    display: inline-flex;
    bottom: 10px;
    right: 4px;
    gap: 10px;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    background: #268bc4;
    color: white;
    font-size: 16px;
    font-family: Arial, sans-serif;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-btn:hover {
    background: #1d72a3;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn-icon {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.btn-icon svg {
    width: 16px;
    height: 16px;
    fill: #4facfe;
}


/* Full-width modal */
.modal.slide-up .modal-dialog {
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    margin: 0;
    position: absolute;
    bottom: 0;
    width: 100vw;
    /* Full width */
    max-width: 100%;
    /* Remove max width */
}

.modal.slide-up.show .modal-dialog {
    transform: translateY(0);
}

/* Modal content */
.modal-content {
    width: 100%;
    /* Ensure the content stretches across */
    border-radius: 0;
    /* Optional: remove rounded corners */
}

/* Optional: Change the backdrop opacity */
.modal-backdrop.show {
    opacity: 0.5;
}

/* Notice Tab */
.notification-tab-2 .nav-tabs .nav-link {
    font-size: 20px;
    color: #001556;
    border: none;
    padding: 10px 15px 10px 15px;
}

.notification-tab-2 .nav-tabs .nav-link.active {
    background: #2548b2;
    color: #ffffff;
    position: relative;
    border: none;
}

.notification-tab-2 .nav-tabs .nav-link span {
    padding: 5px;
}

div#noticeTenderTabContent {
    min-height: 200px;
    background: #2548b2;
    margin-top: -1px;
    z-index: 1;
    position: relative;
    padding: 20px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.notification-tab-list-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    height: 200px;
}

.notification-tab-list-2 ul li {
    border-bottom: 2px dashed #c1c1c1a1;
    margin-bottom: 15px;
}

.notification-tab-list-2 ul li .content-2 a {
    color: #fff;
    text-decoration: none;
}

.content-2 p {
    margin-bottom: 10px;
    color: #b1b1b1;
}

.view-btn-2 {
    text-align: right;
    color: white;
    font-style: italic;
    border-bottom: 1px dotted;
}

a.view-btn-2:hover {
    color: #000000;
}

.view-2 {
    text-align: end;
    padding: 10px 0 0;
}

.announcement-slide-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 13px 10px rgba(0, 0, 0, 0.1);
    /* max-width: 280px; */
}

.announcement-slide-box figure {
    margin: 0;
    background: #2548b2;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-slide-box figure img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.announcement-slide-box h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    /* white-space: nowrap; */
}

.announcement-slide-box h3 a {
    text-decoration: none;
    color: #000;
}

/**/

.heading-new-1 h2 {
    font-weight: bold;
    font-size: 42px;
}

.heading-new-1.heading-new-with-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/**/

/**/
section.over-view-section {
    padding: 100px 0;
    background: #f3f3f3;
}

.read-more-btn-2 {
    display: inline-block;
    background: #3c6de6;
    padding: 10px 40px;
    color: #fff;
    transition: all ease-in-out 0.5s;
}

.read-more-btn-2:hover {
    background: #284eaf;
    color: #fff;
}

.over-view-left {
    position: relative;
}

.admission-btn {
    background: #3c6de6;
    color: white;
    padding: 10px 20px;
    box-shadow: 0 0 5px 0 black;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 5px;
    transition: all ease-in-out 0.5s;
}

.admission-btn:hover {
    background: #284eaf;
    color: white;
}

/**/

/**/
.research-section {
    padding: 100px 0;
}

.research-section:before {
    background-color: #e5e5e5eb;
}

/**/


.heading-new-1 {
    margin-bottom: 30px;
}

/**/
.research-section-new {
    width: 100%;
    float: left;
    padding: 100px 0;
    background: url(../images/research-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.research-card {
    position: relative;
    height: 300px;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 7px #0000005c;
}

.research-section .col-md-6 .research-card {
    height: 400px;
}

.research-section .col-md-4 .research-card {
    height: 400px;
}

.research-section .col-md-4 .research-card:nth-child(2) {
    height: 300px;
}

.research-card-content {
    width: 439px;
    max-width: 100%;
}

.research-card figure {
    margin-bottom: 0;
    display: flex;
    height: 100%;
}

.research-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.research-card-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    background: linear-gradient(181deg, #000, #00000038);
}

.research-card-wrapper a {
    color: #fff;
    text-decoration: none;
}

.research-card-rmore {
    display: inline-flex;
}

.research-card-rmore a {
    color: #fff;
    text-decoration: none;
    padding: 6px 30px;
    background: #4b7bda;
    border-radius: 25px;
}

/**/

/**/

.campus-new {
    padding: 100px 0 70px;

}


section.notice-circular-sec {
    padding: 100px 0;
    background: #f3f3f3;
}



/**/


/**/
.campus-new .campus-inner figure a::before {
    background: linear-gradient(359deg, #000000f7, #00000000);
}

/**/
/**/
section.admission-section-new {
    padding: 100px 0;
}


.admission-section-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}


.admission-section-new-wrapper {
    background: #eef2ff;
}

/**/
.top-1-mid {
    padding: 0;
}

.logo-side {
    background: none;
    box-shadow: none;
    padding-right: 0;
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.top-1 {
    background: none;
    color: #fff;
    border-bottom: 1px solid #ffffff26;
    margin-bottom: 10px;
}

.top-1-left p {
    color: #d7d7d7;
}

.top-right-1 ul li a {
    color: #d7d7d7;
}

.top-right-1 ul li {
    color: #9b9b9b;
}

.font-size-changer button {
    color: #268bc4;
    border-color: #959595;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1>li.mega-menu-item>a.mega-menu-link {
    font-size: 16px !important;
    text-transform: uppercase !important;
    color: #313131 !important;
    font-weight: 600 !important;
}
#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu {
    box-shadow: 0 0 5px 0 #424242;
}
section.achievement-sec {
    padding: 100px 0;
    background: linear-gradient(270deg, #e3eddd, #e3eddf, #ebf6ff, #ebf6ff);
    position: relative;
}

.achievement-photo figure {
    max-height: 350px;
    overflow: hidden;
    margin-bottom: 15px;
}
.menu-wrap {
    display: flex;
}
/*  */
section.achievement-section {
    padding-bottom: 100px;
    padding-top: 100px;
    background-color: #ededed;
    background-image: url(../images/achievements-left-img.png), url(../images/achievements-bg-right.png);
    background-repeat: no-repeat no-repeat;
    background-position: left top, right bottom;
}

section.achievement-section .heading {
    margin-bottom: 30px;
}

section.achievement-section .news-box1 {
    position: relative;
}

section.achievement-section .news-box1 figure {
    padding: 0;
    margin: 0;
    display: flex;
    height: 238px;
    margin-bottom: 114px;
}

section.achievement-section .news-box1 figure a {
    display: flex;
    width: 100%;
}

section.achievement-section .news-box1 figure img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

section.achievement-section .news-box1 .achievement-content {
    width: 95%;
    left: 0;
    right: 0;
    height: 150px;
    overflow: hidden;
    border-radius: 0px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    bottom: -70px;
    z-index: 1;
    position: absolute;
    margin: auto;
    padding: 18px;
}

section.achievement-section .news-box1 .achievement-content h2 {
    font-size: 20px;
}

section.achievement-section .news-box1 .achievement-content h3 {
    font-size: 16px;
    color: #5e5e5e;
}

section.achievement-section .bt {
    text-align: center;
    padding-top: 10px;
}

.know-more-btn {
    background: #dedede;
    color: #030303 !important;
    padding: 14px 100px;
    text-decoration: none;
    transition: all ease-in-out 0.5s;
    display: inline-block;
    letter-spacing: 1px;
    line-height: normal;
}

section.achievement-section .owl-nav {
    position: absolute;
    right: 52px;
    top: -18px;
    padding: 5px 10px;
}

section.achievement-section .owl-nav button {
    position: absolute;
    margin: auto;
    height: 40px;
    opacity: 1;
    font-size: 26px !important;
    background: #fff !important;
    width: 40px;
    top: -40px;
}

section.achievement-section .owl-nav button.owl-next {
    left: unset;
    right: -50px;
}

button.owl-prev {
    position: absolute;
    left: -30px;
    border: 1px solid;
}

.our-project-box-2 figure {
    margin-bottom: 0;
    height: 350px;
}

/*MKM==================== */
.event-contents-sec .eventcontent h5 {
    font-weight: 700;
}

.logo-right ul li {
    max-width: 100px;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 96%;
}



/*Research Page*/
section.research-page-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.research-page-banner-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 155px;
}

.research-page-banner-content {
    background: #ffffffc9;
    color: #000;
    padding: 30px;
    max-width: 854px;
}

.research-page-banner-content h2 {
    font-weight: bold;
}

section.research-page-banner:before {
    position: absolute;
    content: '';
    background: linear-gradient(180deg, #000000de, #00000000);
    width: 100%;
    height: 239px;
    top: 0;
    z-index: 1;
}

.research-banner-content ul {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 15px;
}

.research-banner-content ul li {
    position: relative;
}

.research-banner-content ul li a {
    background: #268bc4;
    color: #fff;
    display: inline-flex;
    padding: 10px 15px;
    width: 100%;
    border-radius: 30px;
    padding-left: 54px;
}

.research-banner-icon {
    position: absolute;
    width: 46px;
    height: 46px;
    background: #1f6c97;
    left: 4px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    display: inline-flex;
    padding: 8px;
    border: 1px solid #3fadeb;
    align-items: center;
    justify-content: center;
}


section.research-page-section-2 {
    padding: 80px 0;
}

section.research-page-section-2 .owl-nav {
    position: absolute;
    top: -64px;
    right: 0;
}

section.research-page-section-2 .owl-nav button i {
    font-size: 32px;
}

.research-card-1 figure {
    display: flex;
    overflow: hidden;
    position: relative;
}

.research-card-1 figure img {
    width: 100%;
}

.research-card-1 figure figcaption {
    position: absolute;
    width: 100%;
    bottom: 15px;
    left: 0;
    padding-right: 22px;
}

.research-card-1 figure figcaption span {
    display: inline-block;
    background: #197ab1;
    padding: 10px 10px 10px 30px;
    color: #fff;
    position: relative;
}

.research-card-1 figure figcaption span::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #197ab1;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    right: -21px;
}

.research-card-1-content {
    padding: 30px 0;
    position: relative;
}

.research-card-1-content a {
    position: absolute;
    bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #1780bb;
}

section.research-counter-section {
    padding: 80px 0;
    background: #f7f7f7;
}

section.research-counter-section .d-grid {
    grid-template-columns: auto auto auto auto;
    gap: 15px;
}

.research-counter {
    text-align: center;
}

.research-counter h2 {
    font-size: 47px;
    margin: 30px 0;
    font-weight: 800;
    color: #0d6293;
}

section.research-global-partnership-section {
    overflow: hidden;
}

.partnership-section-left {
    padding: 80px 0 0;
    position: relative;
}

.partnership-section-left-content {
    position: relative;
    background: #3368c6;
    color: #fff;
    padding: 80px 0 50px;
}

.partnership-section-left-content::before,
.partnership-section-left-content::after {
    content: '';
    position: absolute;
    width: 10000000000000000000000000px;
    height: 100%;
    background: #3368c6;
    top: 0;
    right: 100%;
}

.partnership-section-left-content::after {
    right: unset;
    left: 100%;
    width: 100px;
    z-index: 1;
}

.partnership-section-right-image {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.partnership-section-right-image figure {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.partnership-section-right-image figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/**/

/*====================MKM*/

/* Footer */
.footer-text {
    position: relative;
}

.footer-text img {
    max-width: 130px;
    margin-bottom: 15px;
}



/* Max width */
@media (max-width:768px) {
    .top-mid-header .logo {
        margin-top: -23px;
    }
}
@media (max-width:576px){
    .top-mid-header {
    margin-top: 33px;
}
.top-mid-header .logo {
    min-height: unset;
}
.top-mid-header .logo {
    margin-top: 0;
}
}
@media (max-width:420px){
    .top-header .menu-top ul li {
    padding: 0 2px;
}
    .top-header .menu-top ul li a {
    font-size: 12px;
}
.side-bar div {
    padding: 0px 0;
}
}