:root {

    --primary: #0A2C74;
    --secondary: #F5B223;
    --white: #ffffff;
    --black: #222;
    --text: #555;
    --border: #e9ecef;
    --light: #f8f9fa;

    --radius: 18px;

    --transition: .35s ease;

    --shadow: 0 15px 45px rgba(0, 0, 0, .08);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Inter', sans-serif;

    font-size: 16px;

    color: var(--text);

    background: #fff;

    overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5,
h6 {

font-family: 'Montserrat', sans-serif;

font-weight: 700;

color: #0A2C74;
}

a {
    text-decoration: none;
    transition: .3s;
}

img {
    max-width: 100%;
    display: block;
}

.section-padding {
    padding: 90px 0;
}

/*==============================
Top Header
==============================*/

.top-header {
    background: #072c74;
    color: #fff;
    font-size: 14px;
}

.top-header .container-fluid {
    padding: 0 40px;
}

/* Admission Strip */

.admission-strip {

    color: #f5b223;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-weight: 600;
}

.admission-strip a {

    background: #072c74;

    color: #fff;

    padding: 5px 14px;

    border-radius: 30px;

    font-size: 13px;

}

/* ERP */

.erp-links {

    display: flex;

    /* justify-content:center; */

    align-items: center;

    gap: 20px;

    list-style: none;

    margin: 0;

    padding: 0;

    height: 48px;
}

.erp-links a {

    color: #fff;

    font-weight: 500;

    font-size: 12px;
}

.erp-links a:hover {

    color: #f5b223;

}

/*=========================================
TOP MENU
=========================================*/

.top-menu {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
}

.top-menu-item {
    position: relative;
}

.top-menu-item>a {

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 0;

    color: #fff;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition: .3s;
}

.top-menu-item>a:hover {
    color: #FFD04D;
}


/*=========================================
TOP SUBMENU
=========================================*/

.top-submenu {

    position: absolute;

    top: calc(100% + 5px);
    left: 0;

    min-width: 190px;

    margin: 0;
    padding: 6px 0;

    list-style: none;

    background: #fff;

    border-radius: 8px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: .25s;

    z-index: 99999;
}


/* Show submenu */

.top-menu-item:hover>.top-submenu {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/*=========================================
SUBMENU LINKS
=========================================*/

.top-submenu li {
    list-style: none;
}

.top-submenu li a {

    display: block;

    padding: 10px 16px;

    color: #222;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    transition: .3s;
}

.top-submenu li a:hover {

    background: #082b73;

    color: #fff;

    padding-left: 22px;
}

/* Contact */

.top-contact {

    display: flex;

    justify-content: end;

    align-items: center;

    gap: 18px;

    height: 48px;
}

.top-contact a {

    color: #fff;

}

.top-contact i {

    color: #f5b223;

    margin-right: 6px;

}

/* Social */

.top-social {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    height: 48px;

}

.top-social a {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    /* background:rgba(255,255,255,.15); */

    color: #fff;

    transition: .3s;
}

.top-social a:hover {

    background: #f5b223;

    color: #000;

}

@media(max-width:1199px) {

    .erp-links {

        display: none;

    }

}

@media(max-width:991px) {

    .top-header {

        display: none;

    }

}

/*==============================
Main Header
==============================*/

.main-header {

    background: #fff;

    padding: 18px 0;

    position: relative;

    z-index: 100;

    box-shadow: 0 2px 15px rgba(0, 0, 0, .05);

}

.logo img {

    max-height: 75px;

}

.header-badges {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;
}

.header-badges img {

    width: 120px;

    height: 50px;

    object-fit: contain;

    padding: 0 10px 0px 0px;

    transition: .3s;
}

/* Vertical Separator */

.header-badges img:not(:last-child) {
    border-right: 2px solid #d7d7d7;
}

.header-badges img:hover {

    transform: translateY(-5px);

}

/*=========================================
 Header Right
=========================================*/

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}


/*=========================================
 Search Box
=========================================*/

.header-search {

    width: 185px;
    height: 45px;

    display: flex;
    align-items: center;

    background: #fff;

    border-radius: 12px;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.10);

    overflow: hidden;

    border: 1px solid #eeeeee;

}


.header-search input {

    width: 100%;

    height: 100%;

    border: 0;

    outline: 0;

    background: transparent;

    padding: 0 12px 0 20px;

    font-family: "Montserrat", sans-serif;

    font-size: 14px;

    font-weight: 600;

    color: #333;
}


.header-search input::placeholder {

    color: #555;

    opacity: 1;

}


.header-search button {

    width: 48px;
    height: 100%;

    flex-shrink: 0;

    border: 0;

    background: transparent;

    color: #071f52;

    font-size: 20px;

    cursor: pointer;

}


/* Search Hover */

.header-search:focus-within {

    border-color: #d99b0d;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, .12);

}


/*=========================================
 Apply Now
=========================================*/

.apply-btn {

    min-width: 150px;

    height: 45px;

    padding: 0 18px;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background: #d99b0d;

    color: #fff !important;

    border-radius: 8px;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    text-decoration: none;

    box-shadow:
        0 5px 15px rgba(217, 155, 13, .25);

    transition: all .3s ease;
}


.apply-btn i {

    font-size: 18px;

    transition: transform .3s ease;

}


.apply-btn:hover {

    background: #c58d08;

    transform: translateY(-2px);

    color: #fff;

}


.apply-btn:hover i {

    transform: translateX(5px);

}

@media(max-width:991px) {

    .logo img {

        max-height: 60px;

    }

}

.sticky-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 999;

    animation: slideDown .4s ease;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);

}

@keyframes slideDown {

    from {

        transform: translateY(-100%);

    }

    to {

        transform: translateY(0);

    }

}

/*==========================================
 MAIN NAVBAR
==========================================*/

.main-nav {
    background: #082b73;
    height: 58px;
    position: relative;
    overflow: visible;
    z-index: 99;
    padding: 0 20px;
}

/* White Curved Shape */

.main-nav::after {

    content: "";

    position: absolute;

    right: -80px;

    top: 0;

    width: 180px;

    height: 100%;

    /* background:#fff; */

    border-radius: 0 0 0 120px;

    transform: skewX(-30deg);
}

.nav-curve {
    position: absolute;
    right: 0;
    top: 0;

    width: 180px;
    height: 70px;

    z-index: 10;

    pointer-events: none;
}

.nav-curve svg {
    width: 100%;
    height: 100%;
    display: block;
}

.main-nav.sticky .nav-curve {
    display: none;
}

/*==============================*/

.nav-wrapper {

    display: flex;

    align-items: center;

    height: 58px;

}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }
}

/*==============================
HOME BUTTON
==============================*/

.home-btn {

    width: 55px;

    height: 55px;

    margin-right: 10px;

    background: #fff;

    border-radius: 12px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #D49A11;

    font-size: 22px;

    flex-shrink: 0;

    position: relative;

    z-index: 5;
}

.home-btn:hover {

    color: #082b73;

}

/*=========================================
MAIN MENU
=========================================*/

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
}

.main-menu>li {
    position: relative;
}

.main-menu>li>a {

    display: flex;

    align-items: center;

    gap: 8px;

    height: 58px;

    padding: 0 10px;

    color: #fff;

    font-size: 10px;

    font-weight: 600;

    font-family: 'Montserrat', sans-serif;

    text-transform: uppercase;

    letter-spacing: .3px;

    transition: .3s;

    position: relative;
}


/*=========================================
HOVER
=========================================*/

.main-menu>li>a:hover {
    color: #FFD04D;
}

.main-menu>li>a::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #FFD04D;

    transition: .35s;

    transform: translateX(-50%);
}

.main-menu>li>a:hover::after {
    width: 70%;
}


/*=========================================
DROPDOWN ICON
=========================================*/

.main-menu i {

    font-size: 11px;

    transition: .3s;
}


/* Only rotate Level 1 down arrow */

.main-menu>li:hover>a>i {
    transform: rotate(180deg);
}


/*=========================================
LEVEL 2 SUBMENU
=========================================*/

.main-menu .submenu {

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 260px;

    margin: 0;

    padding: 8px 0;

    list-style: none;

    background: #fff;

    border-radius: 0 0 10px 10px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

    z-index: 99999;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}


/* Show Level 2 */

.main-menu>li:hover>.submenu {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/*=========================================
SUBMENU ITEMS
=========================================*/

.main-menu .submenu li {

    position: relative;

    list-style: none;
}

.main-menu .submenu li>a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 5px 16px;

    color: #222;

    font-size: 14px;

    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    transition: .3s;
}


/*=========================================
SUBMENU HOVER
=========================================*/

.main-menu .submenu li>a:hover {

    background: #082b73;

    color: #fff;

    padding-left: 25px;
}


/*=========================================
LEVEL 3 SUBMENU
=========================================*/

.main-menu .submenu li>.submenu {

    top: -8px;

    left: 100%;

    margin-left: 3px;

    min-width: 250px;

    opacity: 0;

    visibility: hidden;

    transform: translateX(10px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}


/* Show Level 3 */

.main-menu .submenu li.has-dropdown:hover>.submenu {

    opacity: 1;

    visibility: visible;

    transform: translateX(0);
}


/*=========================================
LEVEL 3 ARROW
=========================================*/

.main-menu .submenu li.has-dropdown>a>i {

    font-size: 10px;

    transition: .3s;
}

.main-menu .submenu li.has-dropdown:hover>a>i {

    transform: translateX(4px);
}


/*==============================
MOBILE BUTTON
==============================*/

.mobile-toggle {

    width: 55px;

    height: 55px;

    border: none;

    background: none;

    color: #082b73;

    font-size: 24px;
}

/*==============================
STICKY
==============================*/

.main-nav.sticky {

    position: fixed;

    left: 0;

    top: 0;

    width: 100%;

    animation: menuDown .4s;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);

}

@keyframes menuDown {

    from {

        transform: translateY(-100%);

    }

    to {

        transform: translateY(0);

    }

}

/*==============================
Mobile Menu
==============================*/

.mobile-menu {

    position: fixed;

    left: -340px;

    top: 0;

    width: 320px;

    height: 100%;

    background: #fff;

    z-index: 99999;

    transition: .4s;

    overflow: auto;

}

.mobile-menu.active {

    left: 0;

}

.mobile-menu-overlay {

    position: fixed;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, .45);

    opacity: 0;

    visibility: hidden;

    transition: .4s;

    z-index: 9999;

}

.mobile-menu-overlay.active {

    opacity: 1;

    visibility: visible;

}

.mobile-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px;

    border-bottom: 1px solid #eee;

}

.mobile-header img {

    height: auto;

    width: 230px;
}

.mobile-close {

    border: none;

    background: none;

    font-size: 22px;

}

.mobile-menu ul {

    list-style: none;

    margin: 0;

    padding: 0;

}

.mobile-menu ul li {

    border-bottom: 1px solid #eee;

}

.mobile-menu ul li>a {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 16px 20px;

    color: #222;

    font-weight: 600;

}

.mobile-dropdown ul {

    display: none;

    background: #f8f8f8;

}

.mobile-dropdown.active ul {

    display: block;

}

.mobile-dropdown ul li a {

    padding-left: 35px;

    font-size: 14px;

}

.mobile-dropdown span {

    font-size: 18px;

}

.main-menu>li>a.active {

    color: #FFD04D;

}

.main-menu>li>a.active::after {

    width: 70%;

}

.main-nav {

    transition: .35s;

}

.main-nav.sticky {

    height: 58px;

}

.main-nav.sticky .main-menu>li>a {

    height: 52px;

}

.menu-marker {

    position: absolute;

    bottom: 0;

    height: 3px;

    background: #FFD04D;

    transition: .35s;

}

/*=========================================
MOBILE 3 LEVEL MENU
=========================================*/

.mobile-menu .mobile-dropdown>a {

    display: flex;

    justify-content: space-between;
    align-items: center;

    width: 100%;
}


/* Arrow */

.mobile-menu .mobile-dropdown>a span {

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    transition: .3s;
}


/* Rotate arrow */

.mobile-menu .mobile-dropdown.active>a span {

    transform: rotate(180deg);
}


/*=========================================
MOBILE LEVEL 2
=========================================*/

.mobile-menu .mobile-dropdown>ul {

    display: none;

    margin: 0;
    padding: 0;

    list-style: none;

    background: #f7f7f7;
}


/* Open Level 2 */

.mobile-menu .mobile-dropdown.active>ul {

    display: block;
}


/*=========================================
MOBILE LEVEL 2 LINKS
=========================================*/

.mobile-menu .mobile-dropdown>ul>li>a {

    padding: 13px 20px 13px 35px;

    font-size: 14px;

    color: #333;
}


/*=========================================
MOBILE LEVEL 3
=========================================*/

.mobile-menu .mobile-dropdown>ul .mobile-dropdown>ul {

    display: none;

    background: #eeeeee;

    padding: 0;
}


/* Open Level 3 */

.mobile-menu .mobile-dropdown .mobile-dropdown.active>ul {

    display: block;
}


/*=========================================
MOBILE LEVEL 3 LINKS
=========================================*/

.mobile-menu .mobile-dropdown .mobile-dropdown>ul>li>a {

    padding: 12px 20px 12px 50px;

    font-size: 13px;

    color: #444;
}


/*=========================================
MOBILE ACTIVE
=========================================*/

.mobile-menu .mobile-dropdown.active>a {

    color: #082b73;
    background: #f5f7fb;
}

/*=========================================
Hero Section
=========================================*/

.hero-section {
    position: relative;
    overflow: hidden;
    background: #f6f9fd;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-item {
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/*---------------------------------
Background Image
---------------------------------*/

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*---------------------------------
White Gradient
---------------------------------*/

.hero-bg::after {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 60%;
    height: 100%;

    background: linear-gradient(90deg,
            rgba(255, 255, 255, .97) 0%,
            rgba(255, 255, 255, .92) 45%,
            rgba(255, 255, 255, .65) 65%,
            rgba(255, 255, 255, 0) 100%);

}

/*---------------------------------
Content
---------------------------------*/

.hero-content {

    position: relative;

    z-index: 5;

    max-width: 560px;

}

.hero-tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #0a2c74;

    font-weight: 700;

    text-transform: uppercase;

    font-size: 18px;

    margin-bottom: 20px;

}

.hero-tag i {

    color: #d89a0b;

    font-size: 12px;

}

.hero-content h1 {

    margin-bottom: 20px;

}

.hero-content h1 span {

    display: block;

    font-family: 'Montserrat', sans-serif;

    font-weight: 800;

    font-size: 50px;

    line-height: 1.2;

    color: #082b73;
}

.hero-content h1 .text-warning {

    color: #d99b0d !important;

}

.hero-content p {

    font-size: 20px;

    color: #082b73;

    font-weight: 600;

    margin-bottom: 35px;
}

/*---------------------------------
Buttons
---------------------------------*/

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

}

.btn-apply,
.btn-tour,
.btn-download {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    height: 54px;

    padding: 0 28px;

    border-radius: 10px;

    font-weight: 700;

    transition: .35s;

}

.btn-apply {

    background: #082b73;

    color: #fff;

}

.btn-apply:hover {

    background: #d99b0d;

    color: #fff;

}

.btn-tour {

    background: #fff;

    border: 1px solid #d7d7d7;

    color: #082b73;

}

.btn-tour:hover {

    background: #082b73;

    color: #fff;

}

.btn-download {

    background: #fff;

    border: 2px solid #d99b0d;

    color: #d99b0d;

}

.btn-download:hover {

    background: #d99b0d;

    color: #fff;

}

/*---------------------------------
Pagination
---------------------------------*/

.swiper-pagination {

    bottom: 30px !important;

}

.swiper-pagination-bullet {

    width: 14px;

    height: 14px;

    background: #fff;

    opacity: 1;

}

.swiper-pagination-bullet-active {

    background: #082b73;

}

/*---------------------------------
Navigation
---------------------------------*/

.hero-prev,
.hero-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    z-index: 50;

    font-size: 20px;

    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);

    transition: .3s;

}

.hero-prev {

    left: 30px;

}

.hero-next {

    right: 30px;

}

.hero-prev:hover,
.hero-next:hover {

    background: #082b73;

    color: #fff;

}

/*---------------------------------
Left Blue Circle
---------------------------------*/

.hero-shape-left {

    position: absolute;

    left: -140px;

    bottom: -140px;

    width: 280px;

    height: 280px;

    background: #cfe5ff;

    border-radius: 50%;

    z-index: 2;

}

/*---------------------------------
Right Blue Shape
---------------------------------*/

.hero-shape-right {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 300px;

    height: 250px;

    z-index: 5;

    pointer-events: none;
}

.hero-shape-right svg {

    width: 100%;
    height: 100%;

    display: block;

}

.hero-right-dots {

    position: absolute;

    right: 35px;

    bottom: 5px;

    width: 100px;

    height: 110px;

    background-image:
        radial-gradient(rgba(255, 255, 255, .25) 1.5px,
            transparent 1.5px);

    background-size: 13px 13px;

    opacity: .7;
}

/*---------------------------------
Dot Pattern
---------------------------------*/

.hero-dots {

    position: absolute;

    left: 40px;

    top: 80px;

    width: 70px;

    height: 120px;

    background-image: radial-gradient(#9fc4ef 2px, transparent 2px);

    background-size: 14px 14px;

    z-index: 3;

}

/*---------------------------------
Responsive
---------------------------------*/

@media(max-width:1200px) {

    .hero-item {

        height: 620px;

    }

    .hero-content h1 span {

        font-size: 58px;

    }

}

@media(max-width:992px) {

    .hero-item {

        height: auto;

        padding: 100px 0;

    }

    .hero-bg::after {

        width: 100%;

    }

    .hero-content {

        text-align: center;

        margin: auto;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-prev,
    .hero-next {

        display: none;

    }

}

@media(max-width:576px) {

    .hero-content h1 span {

        font-size: 40px;

    }

    .hero-content p {

        font-size: 18px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .btn-apply,
    .btn-tour,
    .btn-download {

        width: 100%;

    }

}

.hero-item::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 58%;

    height: 100%;

    background: linear-gradient(90deg,
            #eef8ff 0%,
            #f7fbff 45%,
            rgba(255, 255, 255, .92) 70%,
            rgba(255, 255, 255, 0) 100%);

    z-index: 2;

}

.hero-item::after {

    content: "";

    position: absolute;

    right: 42%;

    top: 0;

    width: 260px;

    height: 100%;

    background: rgb(255 255 255 / 0%);

    border-radius: 0 100% 100% 0;

    transform: skewX(-12deg);

    opacity: .92;

    z-index: 2;
}

.hero-bottom-shape {

    position: absolute;

    right: -180px;

    bottom: -180px;

    width: 520px;

    height: 520px;

    background: #0A2C74;

    border-radius: 50%;

    z-index: 3;

}

.hero-pattern {

    position: absolute;

    left: 70px;

    top: 120px;

    width: 130px;

    height: 180px;

    background-image: radial-gradient(#96b8df 2px, transparent 2px);

    background-size: 16px 16px;

    z-index: 4;

    opacity: .7;

}

.hero-title {

    position: relative;

    padding-left: 30px;

}

.hero-title::before {

    content: "";

    position: absolute;

    left: 0;

    top: 10px;

    width: 6px;

    height: 160px;

    background: #D8A11A;

    border-radius: 20px;

}

.hero-title span {

    display: block;

    font-size: 78px;

    line-height: .95;

    font-weight: 900;

    letter-spacing: -2px;

    font-family: 'Montserrat', sans-serif;

}

.hero-title .gold {

    color: #D8A11A;

}

.hero-buttons a {

    height: 50px;

    padding: 0 20px;

    border-radius: 14px;

    font-size: 15px;

    letter-spacing: .5px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.hero-prev,
.hero-next {

    width: 64px;

    height: 64px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .35);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, .4);

}

.hero-prev:hover,
.hero-next:hover {

    background: #0A2C74;

    color: #fff;

}

.circle {

    position: absolute;

    border-radius: 50%;

    z-index: 4;

    animation: float 6s infinite ease-in-out;

}

.circle1 {

    width: 18px;

    height: 18px;

    background: #D8A11A;

    left: 120px;

    bottom: 120px;

}

.circle2 {

    width: 10px;

    height: 10px;

    background: #0A2C74;

    left: 170px;

    bottom: 160px;

    animation-delay: 1s;

}

.circle3 {

    width: 24px;

    height: 24px;

    background: #9ec3ea;

    right: 140px;

    top: 90px;

    animation-delay: 2s;

}

@keyframes float {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-15px);

    }

}


.hero-content {

    margin-top: -20px;

    max-width: 800px;
}

/*=========================================
Quick Stats Section
=========================================*/

.quick-stats-section {

    position: relative;

    margin-top: -30px;

    z-index: 20;

    padding: 0px 3%;
}


/*=========================================
Quick Access
=========================================*/

.quick-access {

width: 97%;

min-height: 92px;

background: #fff;

border-radius: 18px;

box-shadow: 0 8px 30px rgba(0, 0, 0, .12);

display: grid;

grid-template-columns: repeat(6, 1fr);

align-items: center;

overflow: hidden;

margin: 0 20px;
}


/* Individual Quick Item */

.quick-item {

    height: 62px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    text-decoration: none;

    position: relative;

    transition: .3s ease;

}


/* Vertical Separator */

.quick-item:not(:last-child)::after {

    content: "";

    position: absolute;

    right: 0;

    top: 5px;

    width: 1px;

    height: 52px;

    background: #e3e3e3;

}


/* Icon */

.quick-icon {

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;

    transition: .3s ease;

}


/* Text */

.quick-item span {

    font-family: "Montserrat", sans-serif;

    color: #111;

    font-size: 13px;

    font-weight: 600;

}


/* Hover */

.quick-item:hover {

    transform: translateY(-3px);

}

.quick-item:hover .quick-icon {

    transform: translateY(-3px) scale(1.08);

}


/*=========================================
Icon Colors
=========================================*/

.student-icon {

    color: #17659b;

}

.faculty-icon {

    color: #d9a01a;

}

.payment-icon {

    color: #c43b9e;

}

.library-icon {

    color: #65a83b;

}

.results-icon {

    color: #a33eaa;

}

.download-icon {

    color: #c47a18;

}

.transport-icon {

    color: #197681;

}

.hostel-icon {

    color: #d59d17;

}

.contact-icon {

    color: #d12f43;

}

/*=========================================
Statistics
=========================================*/

.statistics-bar {

    margin-top: 14px;

    min-height: 68px;

    padding: 0 30px;

    background: linear-gradient(90deg,
            #203b99,
            #17368f);

    border-radius: 12px;

    box-shadow: 0 7px 20px rgba(0, 0, 0, .15);

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    align-items: center;

}


/* Stat Item */

.stat-item {

    min-height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    position: relative;

}


/* Separator */

.stat-item:not(:last-child)::after {

    content: "";

    position: absolute;

    right: 0;

    top: 5px;

    width: 1px;

    height: 42px;

    background: rgba(255, 255, 255, .20);

}


/* Icon */

.stat-icon {

    color: #e4ad18;

    font-size: 38px;

    line-height: 1;

    flex-shrink: 0;

}


/* Content */

.stat-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

}


/* Number */

.stat-content strong {

    color: #fff;

    font-family: "Montserrat", sans-serif;

    font-size: 21px;

    line-height: 1.1;

    font-weight: 700;

}


/* Label */

.stat-content span {

    color: #fff;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    margin-top: 3px;

    opacity: .95;

}

@media (max-width: 1200px) {

    .quick-access {

        grid-template-columns: repeat(5, 1fr);

        padding: 15px;

        gap: 10px;

    }

    .quick-item {

        min-height: 70px;

    }

    .statistics-bar {

        grid-template-columns: repeat(3, 1fr);

        gap: 10px;

        padding: 15px;

    }

    .stat-item {

        padding: 10px;

    }

}


@media (max-width: 767px) {

    .quick-stats-section {

        margin-top: -20px;

        padding: 0 15px;

    }

    .quick-access {

        grid-template-columns: repeat(3, 1fr);

        border-radius: 12px;

        width: 100%;

        margin: 0;

    }

    .quick-item:not(:last-child)::after {

        display: none;

    }

    .statistics-bar {

        grid-template-columns: repeat(2, 1fr);

        border-radius: 10px;

    }

    .stat-item:not(:last-child)::after {

        display: none;

    }

    .stat-icon {
        font-size: 32px;
    }

    .stat-content strong {
        font-size: 18px;
    }

    .stat-content span {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 1px;
    }

}


@media (max-width: 480px) {

    .quick-access {

        grid-template-columns: repeat(2, 1fr);

    }

    .statistics-bar {

        grid-template-columns: repeat(2, 1fr);

    }

}

/* =========================================
   HOME INFORMATION SECTION
========================================= */

.home-info-section {
    padding: 14px 3% 14px;
    background: #fff;
}


/* =========================================
   CARD
========================================= */

.info-card {
    position: relative;

    height: 100%;

    min-height: 215px;

    padding: 14px 16px;

    background: #fff;

    border: 1px solid #eeeeee;

    border-radius: 18px;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.07);

    overflow: hidden;

    transition: all .3s ease;
}


.info-card:hover {
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.10);

    transform: translateY(-2px);
}


/* =========================================
   CARD HEADER
========================================= */

.info-card-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 10px;

}


.info-card-header h3 {

    margin: 0;

    color: #082b73;

    font-family: "Montserrat", sans-serif;

    font-size: 16px;

    font-weight: 700;

}


.info-card-header a {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #082b73;

    font-size: 10px;

    font-weight: 600;

    text-decoration: none;

}


.info-card-header a i {

    font-size: 10px;

}


.info-card-header a:hover {

    color: #d99b0d;

}

/* =========================================
   SCHOOLS
========================================= */

.schools-content {

    display: grid;

    grid-template-columns: 48% 52%;

    gap: 18px;

}


/* Image */

.schools-image {

    position: relative;

}


.schools-image img {

    display: block;

    width: 100%;

    height: 168px;

    object-fit: cover;

    border-radius: 8px;

}


/* Explore */

.explore-btn {

    position: absolute;

    left: 0;

    bottom: -22px;

    width: 100%;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #082b73;

    color: #fff;

    border-radius: 5px;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;
}


.explore-btn:hover {

    background: #d99b0d;

    color: #fff;

}


/* School List */

.school-list {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.school-list a {

    display: flex;

    align-items: flex-start;

    gap: 6px;

    color: #222;

    font-weight: 500;

    font-size: 10px;

    line-height: 1.35;

    text-decoration: none;
}


.school-list a i {

    color: #082b73;

    font-size: 9px;

    margin-top: 2px;

    flex-shrink: 0;

}


.school-list a:hover {

    color: #082b73;

}

/* =========================================
   ADMISSIONS
========================================= */

.admission-content {

    display: grid;

    grid-template-columns: 44% 56%;

    gap: 12px;

}


.admission-image img {

    width: 100%;

    height: 180px;

    object-fit: cover;

    border-radius: 8px;

}


.admission-points {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.admission-points div {

    display: flex;

    align-items: flex-start;

    gap: 8px;

}


.admission-points i {

    color: #082b73;

    font-size: 13px;

    margin-top: 1px;

}


.admission-points span {

    color: #222;

    font-size: 10px;

    line-height: 1.35;

    font-weight: 500;
}


.admission-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 34px;

    margin-top: -25px;

    margin-left: 48%;

    background: #082b73;

    color: #fff;

    border-radius: 5px;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;
}


.admission-btn:hover {

    background: #d99b0d;

    color: #fff;

}

@media (max-width: 991px) {
    .admission-image img {
        height: 200px;
    }
}

/* =========================================
   NEWS
========================================= */

.news-list {

    display: flex;

    flex-direction: column;

}


.news-item {

    display: grid;

    grid-template-columns: 43px 65px 1fr;

    align-items: center;

    gap: 8px;

    min-height: 57px;

    padding: 5px 0;

    border-bottom: 1px solid #eeeeee;

    text-decoration: none;
}


.news-date1 {

    width: 40px;

    height: 42px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #fff;

    border: 1px solid #eeeeee;

    border-radius: 5px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);

}


.news-date1 strong {

    color: #111;

    font-size: 14px;

    line-height: 1;

}


.news-date1 span {

margin-top: 3px;

color: #000;

font-size: 8px;

font-weight: 500;
}


.news-image img {

    width: 65px;

    height: 42px;

    display: block;

    object-fit: cover;

    border-radius: 5px;

}


.news-title {

    color: #222;

    font-size: 10px;

    line-height: 1.4;

    font-weight: 500;
}


.news-item:hover .news-title {

    color: #082b73;

}


.card-bottom-link {

    margin-top: 8px;

    text-align: right;

}


.card-bottom-link a {

    color: #082b73;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

}


.card-bottom-link i {

    margin-left: 6px;

}


.card-bottom-link a:hover {

    color: #d99b0d;

}

/* =========================================
   PLACEMENT
========================================= */

.placement-stats {

    display: grid;

    grid-template-columns: 1fr 1fr;

    margin-top: 5px;

}


.placement-stat {

    min-height: 53px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-bottom: 1px solid #eeeeee;

}


.placement-stat:nth-child(odd) {

    border-right: 1px solid #eeeeee;

}


.placement-stat strong {

    color: #082b73;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.2;

}


.placement-stat span {

    margin-top: 3px;

    color: #222;

    font-size: 9px;

    font-weight: 500;
}


/* Recruiters */

.recruiter-title {

    margin-top: 8px;

    margin-bottom: 4px;

    color: #222;

    font-size: 9px;

    font-weight: 600;

}


/* =========================================
   RECRUITER SWIPER
========================================= */

.recruiter-swiper {
    width: 100%;
    overflow: hidden;
    margin-top: 5px;
}

.recruiter-swiper .swiper-wrapper {
    align-items: center;
}

.recruiter-swiper .swiper-slide {
    width: 85px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.recruiter-logo {
    width: 100%;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    border: 1px solid #eeeeee;
    border-radius: 4px;

    transition: .3s ease;
}

.recruiter-logo img {
    width: 100px;
    height: 30px;

    object-fit: contain;

    max-width: 95%;
    max-height: 30px;
}

.recruiter-logo:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.recruiter-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

@media (max-width: 1199px) {

    .info-card {
        min-height: 260px;
    }

}


@media (max-width: 767px) {

    .home-info-section {
        padding: 15px;
    }

    .schools-content,
    .admission-content {
        grid-template-columns: 1fr;
    }

    .school-list {
        margin-top: 10px;
    }

    .admission-btn {
        margin: 10px 0 0;
    }

    .recruiter-logos {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* =========================================
   UNIVERSITY HIGHLIGHTS
========================================= */

.university-highlights {

    width: 100%;

    padding: 0 3.8% 12px;

    background: #fff;
}


/* Main White Box */

.highlights-wrapper {

    width: 100%;

    min-height: 72px;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    align-items: center;

    background: #fff;

    border: 1px solid #eeeeee;

    border-radius: 16px;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, .07);

    overflow: hidden;
}

/* =========================================
   HIGHLIGHT ITEM
========================================= */

.highlight-item {

    min-height: 58px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 5px 22px;

    position: relative;

}


/* Vertical Separator */

.highlight-item:not(:last-child)::after {

    content: "";

    position: absolute;

    right: 0;

    top: 7px;

    width: 1px;

    height: 48px;

    background: #e4e4e4;

}

/* =========================================
   ICON
========================================= */

.highlight-icon {

    width: 54px;

    height: 54px;

    min-width: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #fff;

    font-size: 27px;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, .10);

}


/* Global */

.global-icon {

    background: #14738c;

}


/* Research */

.research-icon {

    background: #273a91;

}


/* Industry */

.industry-icon {

    background: #d65b2c;

}


/* Sustainability */

.sustainability-icon {

    background: #72a82a;

}


/* Student */

.student-centric-icon {

    background: #d99a0d;

}

/* =========================================
   CONTENT
========================================= */

.highlight-content {

    min-width: 0;

}


.highlight-content h4 {

    margin: 0 0 3px;

    color: #082b73;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;

    line-height: 1.2;

    font-weight: 700;
}


.highlight-content p {

    margin: 0;

    color: #303030;

    font-weight: 600;

    font-family: "Montserrat", sans-serif;

    font-size: 10px;

    line-height: 1.35;
}

.highlight-item {

    transition: .3s ease;

}

.highlight-item:hover {

    background: #fafcff;

}

.highlight-item:hover .highlight-icon {

    transform: scale(1.08);

}

.highlight-icon {

    transition: .3s ease;

}

@media (max-width: 1200px) {

    .highlight-item {

        padding: 5px 14px;

        gap: 10px;

    }

    .highlight-icon {

        width: 48px;

        height: 48px;

        min-width: 48px;

        font-size: 23px;

    }

    .highlight-content h4 {

        font-size: 12px;

    }

    .highlight-content p {

        font-size: 12px;

    }

}

@media (max-width: 991px) {

    .highlights-wrapper {

        grid-template-columns: repeat(2, 1fr);

    }

    .highlight-item {

        min-height: 70px;

    }

}

@media (max-width: 575px) {

    .university-highlights {

        padding: 0 15px 10px;

    }

    .highlights-wrapper {

        grid-template-columns: repeat(1, 1fr);

    }

    .highlights-wrapper::-webkit-scrollbar {

        display: none;

    }

    .highlight-item {

        min-width: 270px;

        scroll-snap-align: start;

    }

}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    position: relative;

    background: #062b63;

    color: #fff;

    font-family: "Montserrat", sans-serif;
}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    padding: 16px 4% 10px;
}

.footer-container {

max-width: 1800px;

margin: 0 auto;

display: grid;

grid-template-columns: 1.35fr 1fr 1fr 1.25fr 1.35fr;
}


/* =========================================
   FOOTER COLUMN
========================================= */

.footer-column {

    min-height: 125px;

    padding: 0 28px;

    position: relative;
}


/* Vertical separators */

.footer-column:not(:last-child)::after {

    content: "";

    position: absolute;

    right: 0;

    top: 2px;

    width: 1px;

    height: calc(100% - 5px);

    background: rgba(255, 255, 255, .16);

}


/* First column */

.footer-column:first-child {

    padding-left: 0;

}


/* Last column */

.footer-column:last-child {

    padding-right: 0;

}


/* =========================================
   TITLES
========================================= */

.footer-column h4 {

    margin: 0 0 5px;

    color: #fff;

    font-size: 14px;

    line-height: 1.2;

    font-weight: 700;

}


/* =========================================
   ABOUT
========================================= */

.footer-about p {

    max-width: 280px;

    margin: 0;

    color: rgba(255, 255, 255, .92);

    font-size: 12px;

    font-weight: 500;

    line-height: 1.8;
}


.footer-read-more {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    margin-top: 2px;

    color: #e2a914;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

}


.footer-read-more:hover {

    color: #fff;

}


/* =========================================
   LINKS
========================================= */

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer-links li {

    margin-bottom: 3px;

}


.footer-links a {

    color: rgba(255, 255, 255, .92);

    font-size: 12px;

    font-weight: 500;

    text-decoration: none;

    transition: .25s ease;
}


.footer-links a:hover {

    color: #e2a914;

    padding-left: 4px;

}

/* =========================================
   CONTACT
========================================= */

.footer-contact ul {

    list-style: none;

    margin: 0;

    padding: 0;

}


.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 6px;

    margin-bottom: 5px;

    color: rgba(255, 255, 255, .92);

    font-size: 12px;

    line-height: 1.5;

    font-weight: 500;
}


.footer-contact li i {

    width: 14px;

    color: #fff;

    font-size: 11px;

    margin-top: 5px;

    flex-shrink: 0;
}


.footer-contact a {

    color: #fff;

    text-decoration: none;

}


.footer-contact a:hover {

    color: #e2a914;

}

/* =========================================
   SOCIAL
========================================= */

.social-links {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 3px;

}


.social-links a {

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .7);

    border-radius: 50%;

    color: #fff;

    font-size: 11px;

    text-decoration: none;

    transition: .3s ease;

}


.social-links a:hover {

    background: #fff;

    color: #062b63;

    transform: translateY(-2px);

}

/* =========================================
   NEWSLETTER
========================================= */

.newsletter {

    margin-top: 8px;

}


.newsletter label {

    display: block;

    margin-bottom: 5px;

    color: #fff;

    font-size: 12px;

    font-weight: 500;
}


.newsletter form {

    width: 100%;

    max-width: 295px;

    height: 32px;

    display: flex;

    background: #fff;

    border-radius: 4px;

    overflow: hidden;

}


.newsletter input {

    flex: 1;

    min-width: 0;

    border: 0;

    outline: none;

    padding: 0 10px;

    color: #333;

    font-size: 10px;

}


.newsletter input::placeholder {

    color: #888;

}


.newsletter button {

    width: 38px;

    border: 0;

    background: #e2a914;

    color: #fff;

    cursor: pointer;

    transition: .3s ease;

}


.newsletter button:hover {

    background: #c98e05;

}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .12);

    padding: 5px 4%;

}


.footer-bottom-container {

    max-width: 1800px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {

    margin: 0;

    color: rgba(255, 255, 255, .9);

    font-size: 10px;

    font-weight: 500;

    display: inline-flex;

    align-items: center;
}


.footer-policy {

    display: flex;

    align-items: center;

    gap: 10px;

}


.footer-policy a {

    color: rgba(255, 255, 255, .9);

    font-size: 10px;

    text-decoration: none;

    font-weight: 500;
}


.footer-policy span {

    color: rgba(255, 255, 255, .4);

    font-size: 9px;

}


.footer-policy a:hover {

    color: #e2a914;

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .footer-container {

        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 25px;

    }

    .footer-column:nth-child(3)::after,
    .footer-column:nth-child(6)::after {

        display: none;

    }

}


@media (max-width: 767px) {

    .footer-main {

        padding: 30px 20px 20px;

    }

    .footer-container {

        grid-template-columns: 1fr 1fr;

        gap: 25px 0;

    }

    .footer-column {

        padding: 0 15px;

    }

    .footer-column:first-child {

        padding-left: 0;

    }

    .footer-column:nth-child(odd) {

        padding-left: 0;

    }

    .footer-column:nth-child(even) {

        padding-right: 0;

    }

    .footer-column::after {

        display: none;

    }

    .footer-bottom-container {

        flex-direction: column;

        align-items: flex-start;

        padding: 8px 0;

    }

}


@media (max-width: 575px) {

    .footer-container {

        grid-template-columns: 1fr;

    }

    .footer-column {

        padding: 0 !important;

    }

    .footer-bottom {

        padding: 10px 20px;

    }

    .footer-policy {

        flex-wrap: wrap;

        gap: 6px;

    }

}

img.footer {
    width: 100px;
    margin-left: 5px;
    border-radius: 5px;
}

/* =========================================
   INNER PAGE BANNER
========================================= */

.inner-page-banner {

    position: relative;

    min-height: 220px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #f4faff 0%,
            #eef7ff 55%,
            #e7f3fc 100%
        );

}


/* =========================================
   SVG RIGHT SHAPE
========================================= */

.inner-banner-shape {

    position: absolute;

    right: 0;
    top: 0;

    width: 43%;
    height: 100%;

    z-index: 1;

    pointer-events: none;

}


.inner-banner-shape svg {

    display: block;

    width: 100%;
    height: 100%;

}

/* =========================================
   DOT PATTERN
========================================= */

.inner-banner-dots {

    position: absolute;

    right: 35px;
    bottom: 30px;

    width: 120px;
    height: 120px;

    background-image:
        radial-gradient(
            rgba(255,255,255,.28) 1.5px,
            transparent 1.5px
        );

    background-size: 12px 12px;

    opacity: .8;

}

/* =========================================
   BANNER CONTENT
========================================= */

.inner-banner-content {

    position: relative;

    z-index: 10;

    min-height: 220px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

/* =========================================
   PAGE TITLE
========================================= */

.inner-page-title {

    display: flex;

    align-items: center;

    gap: 15px;

}


.title-accent {

    width: 5px;

    height: 60px;

    display: block;

    background: #d99b0d;

    border-radius: 5px;

}


.page-small-title {

    display: block;

    margin-bottom: 4px;

    color: #d99b0d;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.inner-page-title h1 {

    margin: 0;

    color: #082b73;

    font-family: "Montserrat", sans-serif;

    font-size: 34px;

    line-height: 1.15;

    font-weight: 700;

}

/* =========================================
   BREADCRUMB
========================================= */

.inner-breadcrumb {

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 20px;

    background: #fff;

    border-radius: 8px;

    box-shadow:
        0 5px 20px rgba(0,0,0,.12);

}


.inner-breadcrumb a {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #082b73;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

}


.inner-breadcrumb a i {

    color: #d99b0d;

}


.inner-breadcrumb > i {

    color: #999;

    font-size: 9px;

}


.inner-breadcrumb span {

    color: #555;

    font-size: 12px;

    font-weight: 500;

}

.inner-page-banner::after {

    content: "";

    position: absolute;

    right: 32%;

    bottom: -70px;

    width: 220px;

    height: 130px;

    border: 18px solid #d99b0d;

    border-radius: 50%;

    opacity: .12;

    z-index: 0;

}

@media (max-width: 991px) {

    .inner-page-banner {

        min-height: 190px;

    }

    .inner-banner-content {

        min-height: 190px;

    }

    .inner-banner-shape {

        width: 50%;

    }

    .inner-page-title h1 {

        font-size: 28px;

    }

}


@media (max-width: 767px) {

    .inner-page-banner {

        min-height: 180px;

    }

    .inner-banner-content {

        min-height: 180px;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 20px;

    }

    .inner-banner-shape {

        width: 65%;

        opacity: .9;

    }

    .inner-breadcrumb {

        padding: 10px 15px;

    }

    .inner-page-title h1 {

        font-size: 25px;

    }

}


@media (max-width: 480px) {

    .inner-banner-shape {

        width: 80%;

    }

    .inner-banner-dots {

        right: 15px;

        bottom: 15px;

        width: 80px;

        height: 80px;

    }

}

/* =========================================
   SCHOOL VERTICAL TABS
========================================= */

.school-tabs-section {
    padding: 50px 0;
    background: #f8fbff;
}

.school-tabs {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 400px;

    background: #fff;

    border: 1px solid #e7e7e7;
    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
}


/* =========================================
   LEFT MENU
========================================= */

.school-tab-menu {
    padding: 10px 5px;
    background: #ebf4ff;
    border-right: 1px solid #e5e5e5;
}


.school-tab-link {
    position: relative;
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid #e1e5eb;
    background: transparent;
    color: #333;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all .3s ease;
}


.school-tab-link i {
    font-size: 11px;

    color: #999;

    transition: .3s ease;
}


/* Hover */

.school-tab-link:hover {
    color: #082b73;
    background: #f3d999;
    border-radius: 8px;
}


/* Active */

.school-tab-link.active {
    color: #fff;

    background: #082b73;

    border-radius: 8px;
}


.school-tab-link.active i {
    color: #d99b0d;

    transform: translateX(4px);
}


/* Gold active line */

.school-tab-link.active::before {

    content: "";

    position: absolute;

    left: 0;
    top: 10px;
    bottom: 10px;

    width: 4px;

    background: #d99b0d;

    border-radius: 0 4px 4px 0;
}

/* =========================================
   TAB CONTENT
========================================= */

.school-tab-content {
    position: relative;

    padding: 30px;

    min-width: 0;
}


.school-tab-pane {
    display: none;
    /* grid-template-columns: 42% 58%; */
    gap: 30px;
    height: 100%;
    align-items: center;
    animation: schoolTabFade .4s ease;
}


.school-tab-pane.active {
    display: grid;
}


@keyframes schoolTabFade {

    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* =========================================
   IMAGE
========================================= */

.school-content-image img {

    width: 100%;
    height: 300px;

    object-fit: cover;

    border-radius: 12px;

}

/* =========================================
   CONTENT DETAILS
========================================= */

.school-content-details {
    padding-right: 30px;
}


.school-subtitle {

    display: block;

    margin-bottom: 8px;

    color: #d99b0d;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.school-content-details h2 {

    margin: 0 0 15px;

    color: #082b73;

    font-family: "Montserrat", sans-serif;

    font-size: 28px;

    font-weight: 700;

}


.school-content-details p {

    margin: 0 0 20px;

    color: #555;

    font-size: 14px;

    line-height: 1.7;

}

/* =========================================
   SCHOOL LINKS
========================================= */

.school-links {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.school-links a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 15px;

    color: #082b73;

    background: #f3f7fc;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition: .3s ease;

}


.school-links a i {

    font-size: 10px;

    color: #d99b0d;

}


.school-links a:hover {

    background: #082b73;

    color: #fff;

}

@media (max-width: 767px) {

    .school-tabs {
        grid-template-columns: 1fr;
    }

    .school-tab-menu {
        display: flex;

        overflow-x: auto;

        gap: 5px;

        padding: 10px;

        border-right: 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .school-tab-link {
        min-width: 210px;

        border: 0;

        border-radius: 7px;
    }

    .school-tab-pane.active {
        grid-template-columns: 1fr;
    }

    .school-content-image img {
        height: 220px;
    }

    .school-content-details {
        padding: 0;
    }

}

/* =========================================
   PROGRAMME SECTION
========================================= */

.programme-section {
    padding: 20px 0;
    background: #f7faff;
}

.programme-container {
    max-width: 1200px;
    margin: auto;
}


/* =========================================
   MAIN HEADING
========================================= */

.programme-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
}

.heading-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #082b73;
    color: #d99b0d;

    border-radius: 14px;

    font-size: 27px;

    box-shadow: 0 8px 20px rgba(8,43,115,.18);

    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}

.heading-subtitle {
    display: block;

    margin-bottom: 3px;

    color: #d99b0d;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.programme-heading h2 {
    margin: 0;

    color: #082b73;

    font-family: "Montserrat", sans-serif;

    font-size: 30px;
    font-weight: 700;
}


/* =========================================
   GRID
========================================= */

.programme-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}


/* =========================================
   PROGRAMME BOX
========================================= */

.programme-box {

background: #fff;

border: 1px solid #e6eaf0;

border-radius: 16px;

padding: 10px;

box-shadow:
        0 7px 25px rgba(0,0,0,.06);

transition: .35s ease;
}

.programme-box:hover {

    transform: translateY(-5px);

    box-shadow:
        0 14px 35px rgba(8,43,115,.12);
}


/* =========================================
   BOX HEADER
========================================= */

.programme-box-header {

display: flex;

align-items: center;

gap: 14px;

padding-bottom: 15px;

border-bottom: 1px solid #edf0f4;
}

.programme-icon {

    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 22px;

    transition: .4s ease;
}

.programme-box:hover .programme-icon {

    transform: rotate(-8deg) scale(1.08);
}


/* Icon colours */

.undergraduate-icon {

    background: #edf5ff;

    color: #1764a5;
}

.postgraduate-icon {

    background: #fff6df;

    color: #c38a08;
}


.programme-box-header > div > span {

    display: block;

    margin-bottom: 3px;

    color: #999;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.3px;
}


.programme-box-header h3 {

    margin: 0;

    color: #082b73;

    font-size: 17px;

    font-weight: 700;
}


/* =========================================
   PROGRAMME LIST
========================================= */

.programme-list {

    padding-top: 10px;
}


.programme-item {

    position: relative;

    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 52px;

    padding: 8px 5px;

    border-bottom: 1px dashed #e3e6eb;

    color: #333;

    text-decoration: none;

    overflow: hidden;

    transition: .3s ease;
}

.programme-item:last-child {
    border-bottom: 0;
}


/* Animated left line */

.programme-item::before {

    content: "";

    position: absolute;

    left: -5px;
    top: 8px;
    bottom: 8px;

    width: 3px;

    background: #d99b0d;

    border-radius: 5px;

    transform: scaleY(0);

    transform-origin: center;

    transition: transform .3s ease;
}


/* Item icon */

.programme-item-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f3f7fc;

    color: #082b73;

    font-size: 15px;

    transition: .3s ease;
}


/* Programme name */

.programme-name {

    flex: 1;

    color: #333;

    font-size: 13px;

    font-weight: 600;

    transition: .3s ease;
}


/* Arrow */

.programme-arrow {

    color: #b2b7bf;

    font-size: 11px;

    transform: translateX(-5px);

    opacity: 0;

    transition: .3s ease;
}


/* =========================================
   HOVER
========================================= */

.programme-item:hover {

    padding-left: 12px;

    background: #fafcff;

    color: #082b73;
}

.programme-item:hover::before {

    transform: scaleY(1);
}

.programme-item:hover .programme-item-icon {

    background: #082b73;

    color: #fff;

    transform: rotate(8deg);
}

.programme-item:hover .programme-name {

    color: #082b73;
}

.programme-item:hover .programme-arrow {

    opacity: 1;

    transform: translateX(0);

    color: #d99b0d;
}

@media (max-width: 767px) {

    .programme-section {
        padding: 35px 15px;
    }

    .programme-grid {
        grid-template-columns: 1fr;
    }

    .programme-heading h2 {
        font-size: 24px;
    }

    .programme-box {
        padding: 15px;
    }

}

/* =========================================
   ABOUT UNIVERSITY
========================================= */

.about-university-section {
    position: relative;
    padding: 50px 0;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================
   WRAPPER
========================================= */

.about-university-wrapper {

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    align-items: center;

    gap: 70px;

}


/* =========================================
   LEFT CONTENT
========================================= */

.about-university-content {

    position: relative;

    z-index: 2;

}


/* Small subtitle */

.about-subtitle {

    display: inline-block;

    margin-bottom: 8px;

    color: #c89517;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


/* Heading */

.about-university-content h2 {

margin: 0;

color: #082b73;

font-family: "Montserrat", sans-serif;

font-size: 30px;

line-height: 1.2;

font-weight: 700;
}


/* Gold line */

.about-line {

    position: relative;

    width: 70px;

    height: 3px;

    margin: 17px 0 25px;

    background: #d99b0d;

}


.about-line::after {

    content: "";

    position: absolute;

    left: 82px;

    top: 0;

    width: 25px;

    height: 3px;

    background: #082b73;

}


/* Content */

.about-university-content p {

margin: 0;

color: #000000;

font-weight: 500;

font-size: 14px;

line-height: 1.9;

text-align: justify;

margin-bottom: 10px;
}


.about-university-content p strong {

    font-weight: 500;

}


/* =========================================
   RIGHT IMAGE
========================================= */

.about-university-image {

    position: relative;

    min-height: 420px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* Image frame */

.about-image-frame {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 500px;

    height: 380px;

    overflow: hidden;

    border-radius: 0 60px 0 60px;

    box-shadow:
        0 18px 45px rgba(8,43,115,.16);

}


.about-image-frame::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            135deg,
            rgba(8,43,115,.08),
            transparent 50%
        );

    pointer-events: none;

}


.about-image-frame img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s ease;

}


.about-image-frame:hover img {

    transform: scale(1.05);

}


/* =========================================
   DECORATIVE SHAPE
========================================= */

.about-image-shape {

    position: absolute;

    right: -25px;

    bottom: 15px;

    width: 230px;

    height: 230px;

    background: #082b73;

    border-radius: 50%;

    opacity: .08;

    z-index: 1;

}


/* Gold corner */

.about-image-frame::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: 0;

    width: 75px;

    height: 75px;

    border-right: 5px solid #d99b0d;

    border-bottom: 5px solid #d99b0d;

    border-radius: 0 0 45px 0;

    z-index: 3;

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-university-section {

        padding: 60px 0;

    }

    .about-university-wrapper {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .about-university-content {

        max-width: 850px;

    }

    .about-university-image {

        min-height: auto;

    }

}


@media (max-width: 575px) {

    .about-university-section {

        padding: 45px 15px;

    }

    .about-university-content h2 {

        font-size: 28px;

    }

    .about-university-content p {

        font-size: 13px;

        line-height: 1.8;

    }

    .about-image-frame {

        height: 280px;

        border-radius: 0 40px 0 40px;

    }

    .about-image-shape {

        width: 150px;

        height: 150px;

        right: -30px;

    }

}

/* =========================================
   VISION & MISSION
========================================= */

.vision-mission-section {
    padding: 50px 0;
    background: #f7faff;
}


.vision-mission-grid {

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 25px;

}


/* =========================================
   CARD
========================================= */

.vm-card {

    position: relative;

    display: flex;

    gap: 20px;

    padding: 30px;

    background: #fff;

    border: 1px solid #e6eaf0;

    border-radius: 18px;

    box-shadow:
        0 8px 28px rgba(8,43,115,.06);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.vm-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #082b73,
            #d99b0d
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .4s ease;

}


.vm-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 16px 38px rgba(8,43,115,.12);

}


.vm-card:hover::before {

    transform: scaleX(1);

}


/* =========================================
   MAIN ICON
========================================= */

.vm-icon {

    width: 58px;
    height: 58px;

    min-width: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #082b73;

    color: #d99b0d;

    border-radius: 14px;

    font-size: 25px;

    transition:
        transform .4s ease;

}


.vm-card:hover .vm-icon {

    transform:
        rotate(-7deg)
        scale(1.08);

}


/* =========================================
   CONTENT
========================================= */

.vm-content {
    flex: 1;
}


.vm-label {

    display: block;

    margin-bottom: 3px;

    color: #d99b0d;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;

}


.vm-content h2 {

    margin: 0;

    color: #082b73;

    font-family: "Montserrat", sans-serif;

    font-size: 28px;

    font-weight: 700;

}


.vm-line {

    width: 55px;

    height: 3px;

    margin: 12px 0 18px;

    background: #d99b0d;

}


.vm-content p {

    margin: 0;

    color: #555;

    font-size: 14px;

    line-height: 1.8;

}


.vm-content strong {

    font-weight: 500;

}


/* =========================================
   MISSION LIST
========================================= */

.mission-list {

    padding: 0;

    margin: 0;

    list-style: none;

}


.mission-list li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 10px 0;

    border-bottom: 1px dashed #e2e6eb;

}


.mission-list li:last-child {

    border-bottom: 0;

    padding-bottom: 0;

}


.mission-icon {

    width: 32px;
    height: 32px;

    min-width: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 2px;

    border-radius: 50%;

    background: #f1f6fc;

    color: #082b73;

    font-size: 13px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.mission-list li:hover .mission-icon {

    background: #082b73;

    color: #d99b0d;

    transform: rotate(8deg);

}


.mission-list li strong {

    flex: 1;

    color: #555;

    font-size: 13px;

    line-height: 1.7;

    font-weight: 500;

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .vision-mission-grid {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 575px) {

    .vision-mission-section {

        padding: 45px 15px;

    }

    .vm-card {

        padding: 22px;

        flex-direction: column;

    }

    .vm-content h2 {

        font-size: 24px;

    }

    .vm-icon {

        width: 50px;
        height: 50px;

        min-width: 50px;

        font-size: 21px;

    }

}

/* =========================================
   TEAM SECTION
========================================= */

.team-section {
    padding: 70px 0;
    background: #f7faff;
}


/* =========================================
   TEAM GRID
========================================= */

.team-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


/* =========================================
   TEAM CARD
========================================= */

.team-card {

    position: relative;

    background: #fff;

    border: 1px solid #e5e9ef;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(8,43,115,.06);

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


.team-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(8,43,115,.14);

}


/* Gold top line */

.team-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #082b73,
            #d99b0d
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform .45s ease;

    z-index: 5;

}


.team-card:hover::before {

    transform: scaleX(1);

}


/* =========================================
   IMAGE
========================================= */

.team-image {

    position: relative;

    height: 300px;

    overflow: hidden;

    background: #edf2f8;

}


.team-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s ease;

}


.team-card:hover .team-image img {

    transform: scale(1.07);

}


/* =========================================
   IMAGE OVERLAY
========================================= */

.team-image-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    justify-content: flex-end;

    padding: 18px;

    background:
        linear-gradient(
            to top,
            rgba(8,43,115,.65),
            transparent 45%
        );

    opacity: 0;

    transition:
        opacity .4s ease;

}


.team-card:hover .team-image-overlay {

    opacity: 1;

}


.team-image-overlay a {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d99b0d;

    color: #fff;

    font-size: 16px;

    text-decoration: none;

    transform:
        translateY(15px)
        rotate(-20deg);

    transition:
        transform .4s ease,
        background .3s ease;

}


.team-card:hover .team-image-overlay a {

    transform:
        translateY(0)
        rotate(0);

}


.team-image-overlay a:hover {

    background: #fff;

    color: #082b73;

}


/* =========================================
   CONTENT
========================================= */

.team-content {

    position: relative;

    padding: 22px 20px 24px;

}


/* Designation */

.team-designation {

    display: block;

    margin-bottom: 5px;

    color: #d99b0d;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.4px;

}


/* Name */

.team-content h3 {

    margin: 0 0 13px;

    color: #082b73;

    font-family: "Montserrat", sans-serif;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 700;

    transition:
        color .3s ease;

}


.team-card:hover .team-content h3 {

    color: #8c1bb2;

}


/* =========================================
   EMAIL
========================================= */

.team-email {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #777;

    font-size: 12px;

    text-decoration: none;

    transition:
        color .3s ease;

}


.team-email i {

    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f2f6fb;

    color: #082b73;

    font-size: 12px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.team-email:hover {

    color: #082b73;

}


.team-email:hover i {

    background: #082b73;

    color: #d99b0d;

    transform: rotate(-8deg);

}

@media (max-width: 991px) {

    .team-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 575px) {

    .team-section {

        padding: 45px 15px;

    }

    .team-grid {

        grid-template-columns: 1fr;

    }

    .team-image {

        height: 320px;

    }

}

.profile-section{padding: 30px 0;background:#f5f8fc;font-family:Poppins,sans-serif;}



.profile-left{background: #082b73;padding: 20px;border-radius:25px;text-align:center;color:#fff;position:sticky;top:100px;overflow:hidden;}



.profile-left::before{

content:"";

position:absolute;

width:300px;

height:300px;

background:rgba(255,255,255,.08);

border-radius:50%;

left:-120px;

top:-120px;

animation:rotate 15s linear infinite;

}



.image-box{width: 260px;height: 260px;margin:auto;border-radius:50%;padding:6px;background:linear-gradient(45deg,#fff,#ffc107,#fff);}



.image-box img{

width:100%;

height:100%;

border-radius:50%;

object-fit:cover;

border:6px solid #114e92;

}



.profile-left h2{margin-top:30px;font-size: 25px;font-weight: 600;color: #ffffff;}



.profile-left h5{font-weight:500;margin: 10px 0 15px;color: #fff;}



.email{

display:inline-block;

padding:15px 25px;

background:rgba(255,255,255,.15);

border-radius:50px;

}



.profile-right{background:#fff;padding: 20px;border-radius:25px;box-shadow:0 20px 50px rgba(0,0,0,.08);}



.profile-right h6{color: #d99b0d;letter-spacing:3px;font-weight: 700;}



.profile-right h2{margin: 10px 0 15px;font-size: 30px;font-weight: 700;color: #082b73;}



.profile-right p{line-height: 1.8;color: #000000;text-align: justify;font-size: 14px;letter-spacing: 0.5px;}



.timeline{margin-top: 25px;}



.item{display:flex;gap:20px;margin-bottom: 5px;transition:.4s;}



.item:hover{

transform:translateX(10px);

}



.item .icon{

width:60px;

height:60px;

background:#114e92;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:22px;

}



.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top: 20px;}



.stat{padding:30px;background: linear-gradient(45deg, #114e92, #ffe692);color: #fff;font-weight: 600;text-align:center;border-radius:20px;transition:.4s;}



.stat:hover{

background:#114e92;

color:#fff;

transform:translateY(-10px);

}



.stat h3{font-size:38px;font-weight: 600;}



@keyframes spin{



100%{

transform:rotate(360deg);

}



}



@keyframes rotate{



100%{

transform:rotate(-360deg);

}



}



@media(max-width:991px){



.container{

grid-template-columns:1fr;

}



.profile-left{

position:relative;

top:0;

}



.stats{

grid-template-columns:repeat(2,1fr);

}



}



@media(max-width:576px){



.stats{

grid-template-columns:1fr;

}



.profile-right{

padding:30px;

}



.profile-right h2{

font-size:30px;

}



}





.coming-soon{

width:100%;

padding:20px;

}



.card{



max-width:760px;



margin:auto;



padding: 20px;



text-align:center;



background: rgb(16 25 63);



backdrop-filter:blur(18px);



border:1px solid rgba(255,255,255,.15);



border-radius:30px;



color:#fff;



box-shadow:0 20px 60px rgba(0,0,0,.35);



animation:upDown 5s ease-in-out infinite;

}



.logo{

width:90px;

margin-bottom:25px;

}



.card span{



display:inline-block;

padding:10px 22px;



background:rgba(255,255,255,.15);



border-radius:50px;



font-size:14px;



margin-bottom:25px;

}



.card h1{



font-size: 35px;



margin-bottom:20px;

}



.card p{



font-size:17px;



line-height:1.8;



opacity:.9;



margin-bottom: 15px;

}

/* =========================================
   TWO WEBSITE LINKS
========================================= */

.website-links-section {

    padding: 50px 0;
}

.website-links-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;

}


/* =========================================
   WEBSITE CARD
========================================= */

.website-link-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 20px;

    min-height: 145px;

    padding: 25px 28px;

    background: #fff;

    border: 1px solid #e4e8ee;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(8,43,115,.06);

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


/* Top Line */

.website-link-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #082b73,
            #d99b0d
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform .45s ease;

}


.website-link-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(8,43,115,.13);

}


.website-link-card:hover::before {

    transform: scaleX(1);

}


/* =========================================
   ICON
========================================= */

.website-link-icon {

    width: 65px;
    height: 65px;

    min-width: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #082b73;

    color: #d99b0d;

    border-radius: 16px;

    font-size: 27px;

    transition:
        transform .45s ease,
        background .3s ease,
        color .3s ease;

}


.website-link-card:hover
.website-link-icon {

    background: #d99b0d;

    color: #082b73;

    transform:
        rotate(-8deg)
        scale(1.08);

}


/* =========================================
   CONTENT
========================================= */

.website-link-content {

    flex: 1;

}


.website-link-content > span {

    display: block;

    margin-bottom: 5px;

    color: #d99b0d;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.6px;

}


.website-link-content h3 {

    margin: 0 0 12px;

    color: #082b73;

    font-family: "Montserrat", sans-serif;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 700;

    transition:
        color .3s ease;

}


.website-link-card:hover
.website-link-content h3 {

    color: #8c1bb2;

}


/* =========================================
   VISIT WEBSITE
========================================= */

.website-link-content a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #666;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color .3s ease;

}


.website-link-content a i {

    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f1f5fa;

    color: #082b73;

    border-radius: 50%;

    font-size: 10px;

    transition:
        transform .35s ease,
        background .3s ease,
        color .3s ease;

}


.website-link-content a:hover {

    color: #082b73;

}


.website-link-content a:hover i {

    background: #082b73;

    color: #d99b0d;

    transform:
        translate(3px, -3px);

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .website-links-grid {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 480px) {

    .website-link-card {

        padding: 20px;

        gap: 14px;

    }

    .website-link-icon {

        width: 52px;
        height: 52px;

        min-width: 52px;

        font-size: 22px;

    }

    .website-link-content h3 {

        font-size: 15px;

    }

}

.news-section{

	position:relative;

	padding: 30px 0px 30px;

}



.news-block{

	position:relative;

	margin-bottom:30px;

}



.news-block .inner-box{

	position:relative;

}



.news-block .inner-box .image{

	position:relative;

	overflow:hidden;

	background-color:#427cff;

}



.news-block .inner-box .image img{

	position:relative;

	width:100%;

	display:block;

	transition:all 0.3s ease;

	-moz-transition:all 0.3s ease;

	-webkit-transition:all 0.3s ease;

	-ms-transition:all 0.3s ease;

	-o-transition:all 0.3s ease;

	height: 280px;

	object-fit: cover;

}



.news-block .inner-box:hover .image img{

	opacity:0.7;

	transform:scale(1.04,1.04);

}



.news-block .inner-box .lower-content{

	position:relative;

	padding-top: 20px;

}



.news-block .inner-box .lower-content .post-date{

	position:relative;

	color:#0060ff;

	font-size:30px;

	font-weight:800;

	margin-bottom: 5px;

	padding-bottom: 2px;

	display:inline-block;

	text-transform:uppercase;

	border-bottom:1px solid #cccccc;

}



.news-block .inner-box .lower-content .post-date span{

	position:relative;

	font-size:14px;

	color:#141d38;

}



.news-block .inner-box .lower-content .post-meta{

	position:relative;

}



.news-block .inner-box .lower-content .post-meta li{

	position:relative;

	color:#427cff;

	font-size:16px;

	margin-right:10px;

	font-weight:600;

	padding-left:22px;

	display:inline-block;

}



.news-block .inner-box .lower-content .post-meta li .icon{

	position:absolute;

	left:0px;

	top:1px;

	color:#141d38;

	font-size:15px;

	margin-right:6px;

}



.news-block .inner-box .lower-content h4{

	position:relative;

	line-height:1.4em;

	font-weight:700;

	margin-top:12px;

}



.news-block .inner-box .lower-content h4 a{

	position:relative;

	color:#141d38;

	transition:all 0.3s ease;

	-moz-transition:all 0.3s ease;

	-webkit-transition:all 0.3s ease;

	-ms-transition:all 0.3s ease;

	-o-transition:all 0.3s ease;

}



.news-block .inner-box .lower-content h4 a:hover{

	color:#0060ff;

}



.news-block .inner-box .lower-content .text{

	position:relative;

	line-height:1.8em;

	font-weight:600;

	margin-top:12px;

	color:#555555;

	font-size:16px;

	margin-bottom:12px;

}



.news-block .inner-box .lower-content .read-more{

	position:relative;

	line-height:1.4em;

	font-weight:700;

	margin-top:12px;

	color:#141d38;

	font-size:14px;

	transition:all 0.3s ease;

	-moz-transition:all 0.3s ease;

	-webkit-transition:all 0.3s ease;

	-ms-transition:all 0.3s ease;

	-o-transition:all 0.3s ease;

	font-family: 'Montserrat', sans-serif;

}



.news-block .inner-box .lower-content .read-more .arrow{

	position:relative;

	top:1px;

	font-size:16px;

	margin-left:8px;

}



.news-block .inner-box .lower-content .read-more:hover{

	color:#0060ff;

}

/*=========================================

    News / Circular Card Design

=========================================*/



.news-card{

    background:#fff;

    border-radius:20px;

    padding: 15px;

    box-shadow: 0px 6px 10px rgb(47 47 47 / 20%);

    height:100%;

    transition:.35s ease;

    border-top:4px solid #114e92;

    position:relative;

    overflow:hidden;

}



.news-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(17,78,146,.15);

}



.news-date{

display:inline-flex;

flex-direction:column;

align-items:center;

justify-content:center;

width:90px;

height:90px;

border-radius:18px;

background: #082b73;

color: #fff;

margin-bottom: 20px;

box-shadow:0 10px 25px rgba(17,78,146,.25);
}



.news-date .day{

    font-size:30px;

    font-weight:700;

    line-height:1;

    margin-bottom:6px;

}



.news-date .month{

    font-size:14px;

    font-weight:500;

    letter-spacing:.3px;

}



.news-content h4{

    font-size: 20px;

    font-weight:700;

    line-height:1.5;

    color:#222;

    margin-bottom: 10px;

}



.read-more-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background: #e5eef9;

    color:#114e92;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}



.read-more-btn i{

    transition:.35s;

}



.read-more-btn:hover{

background: #082b73;

color:#fff;
}



.read-more-btn:hover i{

    transform:translateX(4px);

}



/* Responsive */

@media(max-width:991px){

    .news-content h4{

        font-size:20px;

    }

}



@media(max-width:767px){

    .news-card{

        padding:25px;

        border-radius:18px;

    }



    .news-date{

        width:80px;

        height:80px;

    }



    .news-date .day{

        font-size:26px;

    }



    .news-content h4{

        font-size:18px;

        margin-bottom:20px;

    }



    .read-more-btn{

        padding:10px 18px;

        font-size:14px;

    }

}

/*=========================================
    Fancybox Gallery Design
=========================================*/

.gallery-section{
    position:relative;
    background:#f6f9fc;
    overflow:hidden;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    background:#fff;
    margin-bottom: 20px;
}

.gallery-item a{
    display:block;
    position:relative;
    overflow:hidden;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.4s ease;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(17,78,146,.92), rgba(17,78,146,.25));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:flex-start;
    padding:25px;
    opacity:0;
    visibility:hidden;
    transition:.4s;
}

.gallery-overlay span{
    position:absolute;
    top:20px;
    right:20px;
    width:52px;
    height:52px;
    border-radius:50%;
    background:#fff;
    color:#114e92;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.35s;
}

.gallery-overlay h5{
    margin:0;
    color:#fff;
    font-size:20px;
    font-weight:700;
    transform:translateY(20px);
    transition:.35s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
    visibility:visible;
}

.gallery-item:hover .gallery-overlay h5{
    transform:translateY(0);
}

.gallery-item:hover .gallery-overlay span{
    transform:scale(1.1);
}

/* Tablet */
@media (max-width:991px){
    .gallery-item img{
        height:240px;
    }
}

/* Mobile */
@media (max-width:767px){
    .gallery-item img{
        height:220px;
    }

    .gallery-overlay{
        padding:18px;
    }

    .gallery-overlay h5{
        font-size:18px;
    }

    .gallery-overlay span{
        width:46px;
        height:46px;
        font-size:16px;
    }
}

/* =========================================
   MOU DETAIL SECTION
========================================= */

.mou-detail-section {

padding: 30px 0;

background: #f7faff;
}


/* =========================================
   CARD
========================================= */

.mou-detail-card {

    position: relative;

    max-width: 1100px;

    margin: 0 auto;

    background: #fff;

    border: 1px solid #e5e9ef;

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(8,43,115,.07);

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


.mou-detail-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(8,43,115,.12);

}


/* =========================================
   TOP ACCENT
========================================= */

.mou-card-accent {

    height: 5px;

    background:
        linear-gradient(
            90deg,
            #082b73 0%,
            #082b73 65%,
            #d99b0d 65%,
            #d99b0d 100%
        );

}


/* =========================================
   HEADER
========================================= */

.mou-detail-header {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 32px 35px;

    border-bottom: 1px solid #edf0f4;

}


/* =========================================
   DATE
========================================= */

.mou-date {

    width: 82px;

    min-width: 82px;

    height: 92px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #082b73;

    color: #fff;

    border-radius: 14px;

    box-shadow:
        0 8px 18px rgba(8,43,115,.16);

    transition:
        transform .35s ease;

}


.mou-detail-card:hover .mou-date {

    transform:
        rotate(-3deg)
        scale(1.04);

}


.mou-date-day {

    font-family: "Montserrat", sans-serif;

    font-size: 28px;

    line-height: 1;

    font-weight: 700;

}


.mou-date-month {

    margin-top: 5px;

    color: #d99b0d;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.mou-date-year {

    margin-top: 3px;

    font-size: 9px;

    opacity: .75;

}


/* =========================================
   TITLE
========================================= */

.mou-title-wrap {

    flex: 1;

}


.mou-category {

    display: block;

    margin-bottom: 7px;

    color: #d99b0d;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.mou-title-wrap h2 {

    margin: 0;

    color: #082b73;

    font-family: "Montserrat", sans-serif;

    font-size: 28px;

    line-height: 1.35;

    font-weight: 700;

}


/* =========================================
   CONTENT
========================================= */

.mou-content {

    padding: 30px 35px;

}


.mou-content > p {

margin: 0 0 22px;

color: #000000;

font-size: 14px;

line-height: 1.9;
}


.mou-content > p:last-child {

    margin-bottom: 0;

}


.mou-content strong {

    font-weight: 500;

}


/* =========================================
   HIGHLIGHT
========================================= */

.mou-highlight {

    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    margin: 25px 0;

    padding: 20px 22px;

    background: #f8f5e9;

    border-left: 4px solid #d99b0d;

    border-radius: 0 12px 12px 0;

    overflow: hidden;

}


.mou-highlight::after {

    content: "";

    position: absolute;

    right: -45px;

    top: -45px;

    width: 120px;

    height: 120px;

    border-radius: 50%;

    background: rgba(8,43,115,.05);

}


.mou-highlight-icon {

    position: relative;

    z-index: 1;

    width: 52px;

    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #082b73;

    color: #d99b0d;

    border-radius: 12px;

    font-size: 22px;

    transition:
        transform .4s ease;

}


.mou-detail-card:hover .mou-highlight-icon {

    transform:
        rotate(-8deg)
        scale(1.08);

}


.mou-highlight > div:last-child {

    position: relative;

    z-index: 1;

}


.mou-highlight > div:last-child > span {

    display: block;

    margin-bottom: 5px;

    color: #8c1bb2;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.mou-highlight p {

    margin: 0;

    color: #555;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================
   FOOTER
========================================= */

.mou-card-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 17px 35px;

    background: #082b73;

    color: #fff;

    font-size: 11px;

}


.mou-card-footer span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    opacity: .9;

}


.mou-card-footer i {

    color: #d99b0d;

    font-size: 13px;

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .mou-detail-section {

        padding: 45px 15px;

    }


    .mou-detail-header {

        align-items: flex-start;

        padding: 25px 20px;

        gap: 17px;

    }


    .mou-date {

        width: 65px;

        min-width: 65px;

        height: 76px;

    }


    .mou-date-day {

        font-size: 22px;

    }


    .mou-title-wrap h2 {

        font-size: 21px;

    }


    .mou-content {

        padding: 25px 20px;

    }


    .mou-content > p {

        font-size: 13px;

        line-height: 1.8;

    }


    .mou-highlight {

        align-items: flex-start;

        padding: 17px;

    }


    .mou-card-footer {

        align-items: flex-start;

        flex-direction: column;

        padding: 16px 20px;

    }

}


@media (max-width: 480px) {

    .mou-detail-header {

        flex-direction: column;

    }

    .mou-date {

        width: 70px;

    }

}

/*=========================================

    Career Form Design

=========================================*/



.career-form-section{

    background:#f5f8fc;

    position:relative;

    overflow:hidden;

}



.career-form-section::before{

    content:"";

    position:absolute;

    top:-120px;

    right:-100px;

    width:320px;

    height:320px;

    background:rgba(17,78,146,.06);

    border-radius:50%;

}



.career-form-section::after{

    content:"";

    position:absolute;

    bottom:-140px;

    left:-100px;

    width:360px;

    height:360px;

    background:rgba(107,178,69,.08);

    border-radius:50%;

}



.career-form-wrap{

    position:relative;

    z-index:2;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}



/* Left Info Box */

.career-info-box{

background: #082b73;

color:#fff;

padding:55px 40px;

height:100%;

position:relative;
}



.career-tag{

display:inline-block;

background: rgb(212 154 17);

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:14px;

font-weight:600;

letter-spacing:.5px;

margin-bottom:18px;
}



.career-info-box h2{

font-size:38px;

font-weight:700;

margin-bottom:18px;

color: #fff;
}



.career-info-box p{

    color:rgba(255,255,255,.9);

    line-height:1.9;

    margin-bottom:28px;

}



.career-points{

    margin:0;

    padding:0;

    list-style:none;

}



.career-points li{

    display:flex;

    gap:12px;

    margin-bottom:16px;

    font-size:16px;

    line-height:1.7;

}



.career-points li i{

color: #d59c11;

margin-top:3px;

font-size:18px;
}



/* Form Box */

.career-form-box{

    padding:50px 40px;

    background:#fff;

}



.career-form-box .form-group{

    margin-bottom:0;

}



.career-form-box label{

    display:block;

    font-size:15px;

    font-weight:600;

    color:#222;

    margin-bottom:10px;

}



.career-form-box .form-control,

.career-form-box .form-select{

    width:100%;

    min-height:54px;

    border:1px solid #dbe5f0;

    border-radius:14px;

    padding:12px 16px;

    font-size:15px;

    color:#333;

    box-shadow:none;

    transition:.3s;

    background:#fff;

}



.career-form-box textarea.form-control{

    min-height:140px;

    resize:none;

    padding-top:14px;

}



.career-form-box .form-control:focus,

.career-form-box .form-select:focus{

    border-color:#114e92;

    box-shadow:0 0 0 4px rgba(17,78,146,.08);

}



.career-form-box input[type="file"].form-control{

    padding:12px;

}



.career-btn{

display:inline-flex;

align-items:center;

gap:10px;

border:none;

background: #082b73;

color:#fff;

font-size:16px;

font-weight:600;

padding:15px 28px;

border-radius:50px;

transition:.35s;

box-shadow:0 12px 30px rgba(17,78,146,.25);
}



.career-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(17,78,146,.3);

}



.career-btn i{

    font-size:18px;

}



/* Responsive */

@media(max-width:991px){

    .career-info-box{

        padding:40px 30px;

    }



    .career-info-box h2{

        font-size:30px;

    }



    .career-form-box{

        padding:40px 30px;

    }

}



@media(max-width:767px){

    .career-form-wrap{

        border-radius:18px;

    }



    .career-info-box,

    .career-form-box{

        padding:30px 20px;

    }



    .career-info-box h2{

        font-size:26px;

    }



    .career-btn{

        width:100%;

        justify-content:center;

    }

}

@media (min-width: 1200px) and (max-width: 1399px) {

    .top-header {
        font-size: 13px !important;
    }

    .main-menu>li>a {
        font-size: 8px !important;
    }

    .footer-contact li {
        font-size: 10px !important;
    }

}