/*RESET*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #16213e;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}

.container {
    width: 92%;
    max-width: 1320px;
    margin: auto;
}



/*TOP BAR*/

.topbar {

    height: 42px;

    background: #08295d;

    color: #fff;

    display: flex;

    align-items: center;

    font-size: 13px;

}

.topbar .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.topbar-left {

    font-weight: 500;

    letter-spacing: .2px;

}

.topbar-right {

    display: flex;

    align-items: center;

    gap: 22px;

}

.topbar-right a {

    color: #fff;

    display: flex;

    align-items: center;

    gap: 7px;

    transition: .3s;

}

.topbar-right a:hover {

    color: #f3b321;

}

.social-icons {

    display: flex;

    align-items: center;

    gap: 18px;

}

.social-icons a {

    font-size: 15px;

}



/*HEADER*/

header {

    height: 88px;

    background: #fff;

    box-shadow: 0 6px 25px rgba(0, 0, 0, .5);

    position: sticky;
    top: 0;

    z-index: 100;


}

.nav-wrapper {

    height: 100%;

    display: flex;

    align-items: center;

}

.logo {

    flex-shrink: 0;

}

.logo img {

    width: 80px;

}



/*NAVIGATION*/

nav {

    margin-left: auto;

    margin-right: 42px;

}

.nav-links {

    display: flex;

    align-items: center;

    gap: 34px;

}

.nav-links>li {

    position: relative;

}

.nav-links>li>a {

    display: flex;

    align-items: center;

    gap: 7px;

    height: 88px;

    color: #16213e;

    font-size: 15px;

    font-weight: 600;

    transition: .3s;

}

.nav-links>li>a:hover {

    color: #f3b321;

}

/* ONLY ACTIVE PAGE HAS GOLD LINE */

.nav-links>li>a.active {

    color: #f3b321;

    position: relative;

}

.nav-links>li>a.active::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 3px;

    background: #f3b321;

}

.nav-links i {

    font-size: 12px;

}



/*DROPDOWN*/

.dropdown-menu {

    position: absolute;

    top: 100%;

    left: 0;

    width: 285px;

    background: #fff;

    border-radius: 10px;

    overflow: hidden;

    opacity: 0;

    visibility: hidden;

    transform: translateY(18px);

    transition: .35s;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);

    z-index: 999;

}

.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.dropdown-menu li {

    border-bottom: 1px solid #f3f3f3;

}

.dropdown-menu li:last-child {

    border-bottom: none;

}

.dropdown-menu a {

    display: block;

    padding: 15px 22px;

    color: #16213e;

    font-size: 14px;

    transition: .3s;

}

.dropdown-menu a:hover {

    background: #08295d;

    color: #fff;

    padding-left: 28px;

}



/*PORTAL BUTTON*/

.portal-btn {

    width: 135px;
    display: flex;
    gap: 10px;

    height: 48px;

    background: #f3b321;

    border-radius: 6px;

    color: #08295d;
    text-transform: uppercase;

    font-size: 15px;

    font-weight: 700;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .3s;

}

.apply-btn:hover {

    background: #08295d;

    color: #fff;

}

/*MOBILE NAVIGATION*/

.menu-toggle {

    display: none;

    width: 48px;

    height: 48px;

    border: none;

    background: none;

    cursor: pointer;

    font-size: 28px;

    color: #08295d;

    margin-left: auto;

    transition: .3s;

}

.menu-toggle.active {

    transform: rotate(180deg);

}

.mobile-portal {
    display: none;
}

@media(max-width:991px) {

    /*TOP BAR MOBILE*/

    .topbar {

        height: auto;

        padding: 8px 0;

    }

    .topbar .container {

        flex-direction: column;

        gap: 8px;

        text-align: center;

    }

    .topbar-left {

        font-size: 12px;

    }

    .topbar-right {

        flex-wrap: wrap;

        justify-content: center;

        gap: 12px;

    }

    .topbar-right a {

        font-size: 12px;

    }

    .social-icons {

        gap: 14px;

    }

    header {

        height: 80px;

    }

    .nav-wrapper {

        display: flex;

        align-items: center;

    }

    .logo img {

        width: 80px;

    }

    .portal-btn {
        display: none;
    }

    .mobile-portal {
        display: block;
        border-bottom: none;
        padding: 20px;
    }

    .mobile-portal-btn {
        display: flex !important;
        justify-content: center !important;
        align-items: center;
        gap: 10px;
        height: 52px !important;
        background: #f3b321;
        color: #08295d !important;
        font-weight: 700;
        border-radius: 8px;
    }

    .mobile-portal-btn:hover {
        background: #08295d;
        color: #fff !important;
    }


    .menu-toggle {

        display: flex;

        justify-content: center;

        align-items: center;

    }

    nav {

        position: absolute;

        top: 80px;

        left: 0;

        width: 100%;

        background: #fff;

        margin: 0;

        max-height: 0;

        overflow: hidden;

        transition: max-height .45s ease;

        box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

    }

    nav.active {

        max-height: 100vh;

        overflow-y: auto;

    }

    .nav-links {

        flex-direction: column;

        gap: 0;

        align-items: stretch;

    }

    .nav-links>li {

        border-bottom: 1px solid #efefef;

    }

    .nav-links>li>a {

        height: auto;

        padding: 18px 22px;

        justify-content: space-between;

    }

    .nav-links>li>a.active::after {

        display: none;

    }

    .dropdown-menu {

        position: static;

        width: 100%;

        opacity: 1;

        visibility: visible;

        transform: none;

        max-height: 0;

        overflow: hidden;

        border-radius: 0;

        box-shadow: none;

        transition: max-height .35s ease;

        background: #f8f9fc;

    }

    .dropdown.open .dropdown-menu {

        max-height: 500px;

    }

    .dropdown-menu a {

        padding: 14px 35px;

        font-size: 14px;

    }

}

@media(min-width:992px) {

    .dropdown:hover .dropdown-menu {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }

}

/*HERO*/

.hero {

    position: relative;

    height: 640px;

    overflow: hidden;

    background: #08295d;

}


/*SLIDER*/

.slider {

    position: absolute;

    inset: 0;

    overflow: hidden;

}

.slider-track {

    display: flex;

    width: 100%;

    height: 100%;

    transition: transform .9s ease-in-out;
    will-change: transform;

}

.slide {

    flex: 0 0 100%;

    min-width: 100%;

    max-width: 100%;

    width: 100%;

    height: 100%;

    overflow: hidden;

}

.slide img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

}


/*DARK OVERLAY*/

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background: linear-gradient(90deg, rgba(3, 16, 44, .96) 0%, rgba(4, 26, 65, .94) 20%, rgba(6, 38, 90, .82) 40%, rgba(6, 38, 90, .45) 65%, rgba(6, 38, 90, .12) 82%, rgba(6, 38, 90, 0) 100%);

}


/*HERO CONTENT*/

.hero-container {

    position: relative;

    z-index: 5;

    height: 100%;

    display: flex;

    align-items: center;

}

.hero-text {

    width: 620px;

    color: #fff;

}

.hero-subtitle {

    display: inline-block;

    color: #f3b321;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 22px;

}

.hero-text h1 {

    font-family: "Poppins", sans-serif;

    font-size: 60px;

    line-height: 1.12;

    font-weight: 700;

    margin-bottom: 24px;

    letter-spacing: -1px;

}

.hero-text p {

    width: 520px;

    font-size: 20px;

    line-height: 1.8;

    color: #f7f7f7;

    margin-bottom: 38px;

}


/*BUTTONS*/

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 18px;

}

.btn-yellow {

    height: 56px;

    padding: 0 32px;

    background: #f3b321;

    border-radius: 6px;

    color: #08295d;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 12px;

    transition: .35s;

}

.btn-yellow:hover {

    background: #fff;

}

.btn-outline {

    height: 56px;

    padding: 0 30px;

    border: 2px solid rgba(255, 255, 255, .75);

    border-radius: 6px;

    color: #fff;

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

    transition: .35s;

}

.btn-outline:hover {

    background: #fff;

    color: #08295d;

}


/*SLIDER ARROWS*/

.slider-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    color: #fff;

    font-size: 28px;

    transition: .3s;

    opacity: .8;

}

.slider-btn:hover {

    color: #f3b321;

    opacity: 1;

}

.prev {

    left: 35px;

}

.next {

    right: 35px;

}


/*DOTS*/

.slider-dots {

    position: absolute;

    left: 50%;

    bottom: 35px;

    transform: translateX(-50%);

    display: flex;

    gap: 10px;

    z-index: 10;

}

.slider-dots span {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .45);

    cursor: pointer;

    transition: .3s;

}

.slider-dots span.active {

    background: #f3b321;

    transform: scale(1.2);

}


/*=BOTTOM SVG WAVE*/

.hero-wave {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    height: 150px;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/*TABLET*/

@media (max-width:991px) {

    .hero {

        height: 560px;

    }

    .hero-overlay {

        background: linear-gradient(90deg, rgba(4, 22, 60, .96) 0%, rgba(4, 22, 60, .90) 45%, rgba(4, 22, 60, .45) 75%, rgba(4, 22, 60, .10) 100%);

    }

    .hero-container {

        justify-content: center;

        text-align: center;

    }

    .hero-text {

        width: 100%;

        max-width: 650px;

        padding: 0 25px;

    }

    .hero-subtitle {

        font-size: 14px;

        letter-spacing: 1px;

    }

    .hero-text h1 {

        font-size: 48px;

        line-height: 1.18;

        margin-bottom: 18px;

    }

    .hero-text p {

        width: 100%;

        max-width: 600px;

        margin: 0 auto 30px;

        font-size: 18px;

        line-height: 1.7;

    }

    .hero-buttons {

        justify-content: center;

    }

    .slider-btn {

        display: none;

    }

    .hero-wave {

        width: 60%;

        height: 100px;

    }

}

@media (max-width:480px) {

    .hero {

        height: 560px;

    }

    .hero-text h1 {

        font-size: 32px;

    }

    .hero-text p {

        font-size: 15px;

    }

    .hero-wave {

        width: 95%;

        height: 80px;

    }

}

/*PRINCIPAL SECTION*/

.principal-section {

    padding: 90px 0 40px;

    background: #fff;

}

.principal-grid {

    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 70px;

    align-items: center;

}

.principal-image {

    border-radius: 14px;

    overflow: hidden;

}

.principal-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}

.section-tag {

    display: inline-block;

    color: #d69000;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .8px;

    margin-bottom: 18px;

}

.principal-content h2 {

    font-family: "Poppins", sans-serif;

    font-size: 52px;

    line-height: 1.15;

    color: #102852;

    margin-bottom: 28px;

    font-weight: 700;

}

.principal-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #444;

    margin-bottom: 20px;

    max-width: 760px;

}

.principal-signature {

    margin-top: 18px;

    font-size: 42px;

    font-family: "Brush Script MT", cursive;

    color: #324a7d;

}

.principal-title {

    display: block;

    margin-top: 10px;

    font-size: 17px;

    color: #555;

}

/*TABLET*/

@media (max-width: 991px) {

    .principal-section {
        padding: 70px 0;
    }

    .principal-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .principal-image {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

    .principal-content {
        text-align: center;
    }

    .principal-content h2 {
        font-size: 42px;
        margin-bottom: 22px;
    }

    .principal-content p {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.8;
    }

    .principal-signature {
        font-size: 38px;
    }

}

/*MOBILE*/

@media (max-width:768px) {

    .principal-section {
        padding: 60px 0;
    }

    .principal-grid {
        gap: 35px;
    }

    .principal-image {
        border-radius: 12px;
    }

    .principal-content {
        text-align: center;
    }

    .section-tag {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .principal-content h2 {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .principal-content p {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .principal-signature {
        font-size: 34px;
        margin-top: 10px;
    }

    .principal-title {
        font-size: 16px;
    }

}

/*SMALL MOBILE*/

@media (max-width:480px) {

    .principal-section {
        padding: 50px 0;
    }

    .principal-content h2 {
        font-size: 29px;
    }

    .principal-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .principal-signature {
        font-size: 30px;
    }

}

/* DISCOVER SECTION */

.discover-section {

    padding: 40px 0 90px;

    background: #fff;

}

.discover-grid {

    display: grid;

    grid-template-columns: 1fr 1.15fr;

    gap: 70px;

    align-items: center;

}

.discover-content h2 {

    font-family: "Poppins", sans-serif;

    font-size: 50px;

    color: #102852;

    line-height: 1.18;

    margin: 18px 0 24px;

    font-weight: 700;

}

.discover-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #555;

    margin-bottom: 40px;

}

.feature-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 26px 35px;

    margin-bottom: 45px;

}

.feature-item {

    display: flex;

    align-items: flex-start;

    gap: 16px;

}

.feature-icon {

    width: 54px;

    height: 54px;

    border-radius: 50%;

    background: #0b2f6a;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 20px;

    flex-shrink: 0;

}

.feature-item h4 {

    font-size: 18px;

    line-height: 1.45;

    color: #102852;

    font-weight: 700;

}

.discover-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: #08295d;

    color: #fff;

    height: 56px;

    padding: 0 28px;

    border-radius: 6px;

    font-weight: 600;

    transition: .35s;

}

.discover-btn:hover {

    background: #f3b321;

    color: #08295d;

}


/* RIGHT IMAGES */

.discover-images {

    position: relative;

}

.main-image {

    border-radius: 16px;

    overflow: hidden;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.main-image img {

    width: 100%;

    display: block;

}

.floating-images {

    position: absolute;

    left: 40px;

    right: 40px;

    bottom: -45px;

    display: flex;

    justify-content: space-between;

}

.small-image {

    width: 220px;

    border-radius: 14px;

    overflow: hidden;

    background: #fff;

    padding: 8px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);

}

.small-image img {

    border-radius: 10px;

    width: 100%;

    display: block;

}

/* TABLET */

@media (max-width:991px) {

    .discover-section {
        padding: 70px 0 120px;
    }

    .discover-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .discover-content {
        text-align: center;
    }

    .discover-content h2 {
        font-size: 42px;
        margin: 16px 0 20px;
    }

    .discover-content p {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 35px;
    }

    .feature-grid {
        max-width: 650px;
        margin: 0 auto 40px;
    }

    .discover-images {
        max-width: 720px;
        margin: 0 auto;
    }

    .floating-images {
        left: 30px;
        right: 30px;
        bottom: -35px;
    }

    .small-image {
        width: 200px;
    }

}

/* MOBILE */

@media (max-width:768px) {

    .discover-section {
        padding: 60px 0 150px;
    }

    .discover-grid {
        gap: 40px;
    }

    .discover-content {
        text-align: center;
    }

    .discover-content h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .discover-content p {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 30px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 420px;
        margin-bottom: o auto 35px;
    }

    .feature-item {

        display: flex;

        align-items: center;

        justify-content: flex-start;

        gap: 16px;

        width: 100%;

        text-align: left;

    }

    .feature-icon {

        flex-shrink: 0;

    }

    .feature-item h4 {

        margin: 0;

        line-height: 1.5;

    }

    .discover-btn {
        margin: auto;
    }

    .discover-images {
        max-width: 100%;
    }

    .main-image {
        border-radius: 14px;
    }

    .floating-images {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: -30px;
        gap: 12px;
    }

    .small-image {
        width: calc(50% - 6px);
        padding: 6px;
    }

}

/* SMALL MOBILE */

@media (max-width:480px) {

    .discover-section {
        padding: 50px 0 135px;
    }

    .discover-content h2 {
        font-size: 29px;
    }

    .discover-content p {
        font-size: 15px;
    }

    .feature-grid {

        max-width: 100%;

    }

    .feature-item {

        display: flex;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 14px;

        width: 100%;

    }

    .feature-item h4 {

        font-size: 16px;

        margin: 0;

    }

    .feature-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }


    .discover-btn {
        width: 100%;
        justify-content: center;
    }

    .floating-images {
        left: 8px;
        right: 8px;
        bottom: -24px;
        gap: 10px;
    }

    .small-image {
        width: calc(50% - 5px);
        padding: 5px;
    }

}



/* ACADEMIC LEVELS */

.levels-section {

    padding: 90px 0;

    background: #ffffff;

}

.levels-tag {

    display: block;

    text-align: center;

    color: #d99a00;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 12px;

}

.levels-title {

    text-align: center;

    font-family: "Poppins", sans-serif;

    font-size: 48px;

    color: #102852;

    margin-bottom: 60px;

    font-weight: 700;

}

.levels-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.level-card {

    background: #fff;

    border-radius: 16px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .35s;

}

.level-card:hover {

    transform: translateY(-8px);

}

.level-image {

    height: 220px;

    overflow: hidden;

}

.level-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;

}

.level-card:hover img {

    transform: scale(1.08);

}

.level-content {

    position: relative;

    padding: 55px 28px 30px;

}

.level-icon {

    position: absolute;

    left: 28px;

    top: -28px;

    width: 56px;

    height: 56px;

    border-radius: 50%;

    background: #0b2f6a;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

    border: 5px solid #fff;

}

.level-content h3 {

    font-size: 24px;

    color: #102852;

    margin-bottom: 18px;

    font-weight: 700;

}

.level-content p {

    color: #555;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 26px;

    min-height: 90px;

}

.level-content a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #102852;

    font-weight: 700;

    transition: .3s;

}

.level-content a:hover {

    color: #f3b321;

}

/* TABLET */

@media (max-width:991px) {

    .levels-section {
        padding: 70px 0;
    }

    .levels-title {
        font-size: 40px;
        margin-bottom: 45px;
    }

    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .level-image {
        height: 240px;
    }

}

/* MOBILE */

@media (max-width:768px) {

    .levels-section {
        padding: 60px 0;
    }

    .levels-tag {
        font-size: 13px;
    }

    .levels-title {
        font-size: 34px;
        line-height: 1.25;
        margin-bottom: 35px;
    }

    .levels-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 480px;
        margin: 0 auto;
    }

    .level-card {
        border-radius: 14px;
    }

    .level-image {
        height: 240px;
    }

    .level-content {
        padding: 50px 24px 25px;
    }

    .level-icon {
        left: 24px;
        width: 54px;
        height: 54px;
        font-size: 20px;
    }

    .level-content h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .level-content p {
        min-height: auto;
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.7;
    }

    .level-content a {
        font-size: 15px;
    }

}

/* SMALL MOBILE */

@media (max-width:480px) {

    .levels-section {
        padding: 50px 0;
    }

    .levels-title {
        font-size: 29px;
    }

    .levels-grid {
        gap: 20px;
    }

    .level-image {
        height: 210px;
    }

    .level-content {
        padding: 45px 20px 22px;
    }

    .level-icon {
        left: 20px;
        top: -24px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .level-content h3 {
        font-size: 20px;
    }

    .level-content p {
        font-size: 15px;
    }

}



/* RESULTS SECTION*/

.results-section {

    background: #08295d;

    padding: 90px 0 130px;

    position: relative;

}

.results-tag {

    display: block;

    text-align: center;

    color: #f3b321;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 12px;

}

.results-title {

    color: #fff;

    text-align: center;

    font-size: 42px;

    font-family: "Poppins", sans-serif;

    margin-bottom: 45px;

}

.results-grid {

    display: grid;

    grid-template-columns: 270px 1fr 240px;

    gap: 24px;

    align-items: stretch;

}



.topper-card {

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 16px;

    padding: 28px;

    color: #fff;

}

.topper-card small {

    color: #d8d8d8;

    font-size: 12px;

    letter-spacing: 1px;

}

.topper-content {

    margin-top: 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.topper-content h3 {

    font-size: 58px;

    color: #fff;

}

.topper-content h4 {

    margin: 12px 0 6px;

}

.topper-content p {

    color: #cfd8ea;

}

.topper-content i {

    font-size: 70px;

    color: #f3b321;

}


.results-card {

    background: rgba(255, 255, 255, .05);

    border-radius: 16px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .08);

}

.tabs {

    display: flex;

}

.tab {

    flex: 1;

    height: 58px;

    background: transparent;

    color: #fff;

    font-weight: 700;

    font-size: 14px;

    border-bottom: 2px solid transparent;

    transition: .3s;

}

.tab.active {

    color: #f3b321;

    border-color: #f3b321;

}

.tab-content {

    display: none;

    padding: 22px 30px;

}

.tab-content.active {

    display: block;

}

.results-card table {

    width: 100%;

    border-collapse: collapse;

}

.results-card td {

    color: #fff;

    padding: 10px 0;

    font-size: 15px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.results-card tr:last-child td {

    border: none;

}


.view-results {

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 16px;

    color: #fff;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 22px;

    transition: .35s;

}

.view-results i {

    font-size: 62px;

    color: #f3b321;

}

.view-results span {

    font-size: 24px;

    font-weight: 600;

}

.view-results:hover {

    background: #f3b321;

    color: #08295d;

}

.view-results:hover i {

    color: #08295d;

}


@media (max-width:991px) {

    .results-section {

        padding: 70px 0 90px;

    }

    .results-title {

        font-size: 36px;

        margin-bottom: 35px;

    }

    .results-grid {

        grid-template-columns: 1fr;

        gap: 24px;

        max-width: 700px;

        margin: 0 auto;

    }

    .topper-card {

        padding: 24px;

    }

    .topper-content h3 {

        font-size: 52px;

    }

    .topper-content i {

        font-size: 62px;

    }

    .view-results {

        min-height: 180px;

        padding: 30px;

    }

}


@media (max-width:768px) {

    .results-section {

        padding: 60px 0 70px;

    }

    .results-tag {

        font-size: 12px;

    }

    .results-title {

        font-size: 30px;

        line-height: 1.3;

        margin-bottom: 30px;

    }

    .results-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .topper-card {

        padding: 22px;

    }

    .topper-content {

        gap: 18px;

    }

    .topper-content h3 {

        font-size: 42px;

    }

    .topper-content h4 {

        font-size: 20px;

    }

    .topper-content p {

        font-size: 14px;

    }

    .topper-content i {

        font-size: 52px;

    }

    .tabs {

        flex-wrap: wrap;

    }

    .tab {

        flex: 1 1 33.333%;

        height: 52px;

        font-size: 13px;

    }

    .tab-content {

        padding: 18px;

        overflow-x: auto;

    }

    .results-card table {

        min-width: 420px;

    }

    .results-card td {

        font-size: 14px;

        white-space: nowrap;

    }

    .view-results {

        min-height: 160px;

        padding: 25px;

        gap: 16px;

    }

    .view-results i {

        font-size: 52px;

    }

    .view-results span {

        font-size: 22px;

    }

}



@media (max-width:480px) {

    .results-section {

        padding: 50px 0 60px;

    }

    .results-title {

        font-size: 26px;

    }

    .topper-card {

        padding: 18px;

    }

    .topper-content {

        align-items: center;

    }

    .topper-content h3 {

        font-size: 36px;

    }

    .topper-content h4 {

        font-size: 18px;

    }

    .topper-content i {

        font-size: 44px;

    }

    .tab {

        font-size: 12px;

        height: 48px;

    }

    .tab-content {

        padding: 15px;

    }

    .results-card td {

        font-size: 13px;

    }

    .view-results {

        min-height: 140px;

    }

    .view-results i {

        font-size: 46px;

    }

    .view-results span {

        font-size: 18px;

    }

}

/* STATISTICS BAR */

.stats-wrapper {

    position: absolute;

    left: 0;

    right: 0;

    bottom: -55px;

    z-index: 20;

}



.stats-card {

    width: 92%;

    max-width: 1320px;

    margin: auto;

    background: #fff;

    border-radius: 18px;

    padding: 28px 35px;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 20px;

    align-items: center;

    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);

}

.stat-item {

    display: flex;

    align-items: center;

    gap: 18px;

}

.stat-icon {

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: #fff8eb;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #f3b321;

    font-size: 24px;

    flex-shrink: 0;

}

.stat-item h3 {

    font-size: 38px;

    color: #102852;

    font-weight: 700;

    line-height: 1;

}

.stat-item span {

    display: block;

    margin-top: 8px;

    color: #666;

    font-size: 14px;

    line-height: 1.5;

}

/* TABLET */

@media (max-width:991px) {

    .stats-wrapper {

        position: relative;

        bottom: 0;

        margin-top: 50px;

        padding: 0 15px;

    }

    .stats-card {

        width: 100%;

        padding: 25px;

        grid-template-columns: repeat(3, 1fr);

        gap: 25px;

    }

}


@media (max-width:768px) {

    .stats-wrapper {

        margin-top: 40px;

    }

    .stats-card {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

        padding: 22px;

        border-radius: 16px;

    }

    .stat-item {

        gap: 14px;

    }

    .stat-icon {

        width: 50px;

        height: 50px;

        font-size: 20px;

    }

    .stat-item h3 {

        font-size: 30px;

    }

    .stat-item span {

        font-size: 13px;

        line-height: 1.4;

    }

}


@media (max-width:480px) {

    .stats-card {

        grid-template-columns: repeat(2, 1fr);

        gap: 18px;

        padding: 18px;

    }

    .stat-item {

        flex-direction: column;

        text-align: center;

        gap: 10px;

    }

    .stat-icon {

        width: 46px;

        height: 46px;

        font-size: 18px;

    }

    .stat-item h3 {

        font-size: 26px;

    }

    .stat-item span {

        margin-top: 4px;

        font-size: 12px;

    }

}

/* FEATURED GALLERY */

.featured-gallery {

    padding: 120px 0;

    background: #fff;

}

.featured-gallery .container {

    max-width: 1200px;

    margin: auto;

    padding: 0 20px;

}

.featured-gallery-image {

    position: relative;

    width: 88%;

    max-width: 900px;

    margin: 0 auto;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);

}

.featured-gallery-image img {

    width: 100%;

    height: 520px;

    object-fit: cover;

    display: block;

    transition: .6s;

}

.featured-gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.featured-gallery-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;

    transition: opacity .8s ease;
}

.featured-gallery-slide.active {
    opacity: 1;
}

.featured-gallery-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 34, 90, .45);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    color: #fff;

    opacity: 0;

    transition: .4s;

}

.featured-gallery-overlay i {

    font-size: 55px;

    margin-bottom: 15px;

}

.featured-gallery-overlay span {

    font-size: 22px;

    font-weight: 700;

    letter-spacing: .5px;

}

.featured-gallery-image:hover img {

    transform: scale(1.08);

}

.featured-gallery-image:hover .featured-gallery-overlay {

    opacity: 1;

}

.featured-gallery-content {

    text-align: center;

    max-width: 850px;

    margin: 55px auto 0;

}

.featured-gallery-content h2 {

    font-size: 42px;

    color: #0b2b66;

    margin-bottom: 20px;

    font-family: "Poppins", sans-serif;

}

.featured-gallery-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #5d6778;

    margin-bottom: 35px;

}

.featured-gallery-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: #f6a11a;

    font-size: 18px;

    font-weight: 700;

    transition: .35s;

}

.featured-gallery-link i {

    transition: .35s;

}

.featured-gallery-link:hover {

    color: #0b2b66;

}

.featured-gallery-link:hover i {

    transform: translateX(8px);

}

@media(max-width:768px) {
    .featured-gallery {

        padding: 80px 0;

    }

    .featured-gallery-image img {

        height: 260px;

    }

    .featured-gallery-content {

        margin-top: 35px;

    }

    .featured-gallery-content h2 {

        font-size: 30px;

    }

    .featured-gallery-content p {

        font-size: 16px;

    }

    .featured-gallery-overlay i {

        font-size: 38px;

    }

    .featured-gallery-overlay span {

        font-size: 18px;

    }
}

/* NEWS • MAP • TESTIMONIALS */

.info-section {

    padding: 140px 0 100px;

    background: #f6f8fc;

}

.info-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

    align-items: stretch;

}

.info-card {

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);

    transition: .35s;

    display: flex;

    flex-direction: column;

}

.info-card:hover {

    transform: translateY(-8px);

}


/* CARD HEADER */

.card-heading {

    padding: 25px 28px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-bottom: 1px solid #eef2f7;

}

.card-heading span {

    font-size: 23px;

    font-weight: 700;

    color: #0b2f6a;

    font-family: "Poppins", sans-serif;

}

.card-heading a {

    color: #f3b321;

    font-weight: 600;

    font-size: 14px;

    display: flex;

    align-items: center;

    gap: 8px;

}


/* NEWS */

.news-list {

    padding: 25px;

    display: flex;

    flex-direction: column;

    gap: 22px;

}

.news-item {

    display: flex;

    gap: 18px;

    align-items: flex-start;

}

.news-item img {

    width: 105px;

    height: 90px;

    border-radius: 12px;

    object-fit: cover;

    flex-shrink: 0;

}

.news-date {

    display: block;

    font-size: 13px;

    color: #f3b321;

    margin-bottom: 10px;

    font-weight: 600;

}

.news-date i {

    margin-right: 6px;

}

.news-item h4 {

    color: #0b2f6a;

    font-size: 18px;

    line-height: 1.45;

    transition: .3s;

    cursor: pointer;

}

.news-item h4:hover {

    color: #f3b321;

}


/* MAP */

.map-box {

    height: 320px;

}

.map-box iframe {

    width: 100%;

    height: 100%;

    border: none;

}

.campus-address {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 25px;

}

.campus-address i {

    color: #f3b321;

    font-size: 28px;

    margin-top: 4px;

}

.campus-address p {

    color: #555;

    line-height: 1.8;

}


/* TESTIMONIAL */

.testimonial-slider {

    position: relative;

    overflow: hidden;

    width: 100%;

    flex: 1;

}

.testimonial-track {

    display: flex;

    width: 100%;

    transition: transform .8s ease;

}

.testimonial {

    flex: 0 0 100%;

    min-width: 100%;

    padding: 45px 35px;

    text-align: center;

    box-sizing: border-box;

}

.testimonial img {

    width: 95px;

    height: 95px;

    border-radius: 50%;

    object-fit: cover;

    margin: auto;

    border: 5px solid #f3b321;

}

.testimonial p {

    margin: 28px 0;

    color: #555;

    line-height: 1.9;

    font-size: 16px;

}

.testimonial h4 {

    color: #0b2f6a;

    font-size: 22px;

    margin-bottom: 6px;

}

.testimonial span {

    color: #888;

}

.testimonial-dots {

    display: flex;

    justify-content: center;

    gap: 12px;

    padding: 0 0 28px;

}

.testimonial-dots span {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #d4d8e1;

    cursor: pointer;

    transition: .3s;

}

.testimonial-dots span.active {

    background: #f3b321;

    transform: scale(1.2);

}

/* TABLET */

@media (max-width:991px) {

    .info-section {

        padding: 120px 0 80px;

    }

    .info-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 30px;

    }

    .testimonial-card {

        grid-column: 1 / -1;

        max-width: 700px;

        margin: 0 auto;

    }

    .card-heading {

        padding: 22px 24px;

    }

    .card-heading span {

        font-size: 21px;

    }

    .news-list {

        padding: 22px;

    }

    .map-box {

        height: 300px;

    }

}


@media (max-width:768px) {

    .info-section {

        padding: 80px 0 60px;

    }

    .info-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .info-card {

        border-radius: 16px;

    }

    .card-heading {

        padding: 20px;

    }

    .card-heading span {

        font-size: 20px;

    }

    .card-heading a {

        font-size: 13px;

    }

    /* NEWS */

    .news-list {

        padding: 20px;

        gap: 20px;

    }

    .news-item {

        align-items: center;

        gap: 15px;

    }

    .news-item img {

        width: 90px;

        height: 80px;

    }

    .news-item h4 {

        font-size: 16px;

        line-height: 1.45;

    }

    .news-date {

        font-size: 12px;

    }

    /* MAP */

    .map-box {

        height: 260px;

    }

    .campus-address {

        padding: 20px;

        gap: 12px;

    }

    .campus-address i {

        font-size: 24px;

    }

    .campus-address p {

        font-size: 15px;

        line-height: 1.7;

    }

    /* TESTIMONIAL */

    .testimonial-card {

        width: 100%;

        max-width: 100%;

    }

    .testimonial-slider {

        width: 100%;

        overflow: hidden;

    }

    .testimonial-track {

        display: flex;

        flex-wrap: nowrap;

    }

    .testimonial {

        flex: 0 0 100%;

        width: 100%;

        min-width: 100%;

        max-width: 100%;

        padding: 35px 20px;

        box-sizing: border-box;

    }

}


@media (max-width:480px) {

    .info-section {

        padding: 70px 0 50px;

    }

    .card-heading {

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

    }

    .card-heading span {

        font-size: 18px;

    }

    /* NEWS */

    .news-item {

        flex-direction: column;

        align-items: flex-start;

    }

    .news-item img {

        width: 100%;

        height: 190px;

    }

    .news-item h4 {

        font-size: 17px;

    }

    /*==========================
    MAP
    ==========================*/

    .map-box {

        height: 220px;

    }

    .campus-address {

        padding: 18px;

    }

    /* TESTIMONIAL */

    .testimonial {

        padding: 30px 20px;

    }

    .testimonial img {

        width: 72px;

        height: 72px;

    }

    .testimonial h4 {

        font-size: 18px;

    }

    .testimonial p {

        font-size: 14px;

    }

}


/* FOOTER */

.footer {

    background: #06255a;

    color: #fff;

    padding: 65px 0 0;

}

.footer-grid {

    display: grid;

    grid-template-columns: 1.35fr 1fr 1fr 1.3fr;

    gap: 50px;

    padding-bottom: 45px;

}

.footer-column {

    position: relative;

}

.footer-column:not(:last-child) {

    border-right: 1px solid rgba(255, 255, 255, .08);

    padding-right: 35px;

}

.footer-logo {

    width: 220px;

    margin-bottom: 22px;

}

.footer-column p {

    color: rgba(255, 255, 255, .82);

    line-height: 1.9;

    font-size: 15px;

}

.footer-column h3 {

    color: #f3b321;

    font-size: 18px;

    margin-bottom: 25px;

    font-family: "Poppins", sans-serif;

}

.footer-column ul {

    list-style: none;

}

.footer-column ul li {

    margin-bottom: 16px;

}

.footer-column ul li a {

    color: rgba(255, 255, 255, .82);

    transition: .3s;

    font-size: 15px;

}

.footer-column ul li a:hover {

    color: #f3b321;

    padding-left: 6px;

}

.footer-socials {

    display: flex;

    gap: 18px;

    margin-top: 28px;

}

.footer-socials a {

    color: #fff;

    font-size: 19px;

    transition: .3s;

}

.footer-socials a:hover {

    color: #f3b321;

    transform: translateY(-4px);

}

.contact-list li {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    color: rgba(255, 255, 255, .85);

    line-height: 1.8;

}

.contact-list i {

    color: #f3b321;

    font-size: 18px;

    margin-top: 4px;

    min-width: 18px;

}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 22px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: rgba(255, 255, 255, .7);

    font-size: 14px;

}

.footer-bottom p {

    margin: 0;

}

/* TABLET */

@media (max-width:991px) {

    .footer {

        padding: 60px 0 0;

    }

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 45px 35px;

    }

    .footer-column {

        border: none !important;

        padding-right: 0 !important;

    }

    .footer-logo {

        width: 190px;

    }

    .footer-column h3 {

        margin-bottom: 20px;

    }

    .footer-bottom {

        padding: 20px 0;

    }

}

/* MOBILE */

@media (max-width:768px) {

    .footer {

        padding: 55px 0 0;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;

        padding-bottom: 35px;

    }

    .footer-column {

        border: none !important;

        padding-right: 0 !important;

    }

    .footer-logo {

        width: 180px;

        margin: 0 auto 20px;

    }

    .footer-column h3 {

        font-size: 20px;

        margin-bottom: 18px;

    }

    .footer-column p {

        font-size: 15px;

        line-height: 1.8;

    }

    .footer-column ul li {

        margin-bottom: 14px;

    }

    .footer-socials {

        justify-content: center;

        margin-top: 22px;

    }

    .contact-list {

        max-width: 320px;

        margin: 0 auto;

    }

    .contact-list li {

        display: flex;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 14px;

        margin-bottom: 18px;

        text-align: left;

    }

    .contact-list i {

        width: 20px;

        min-width: 20px;

        margin-top: 4px;

        text-align: center;

    }

    .contact-list span,

    .contact-list p,

    .contact-list li div {

        flex: 1;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 10px;

        text-align: center;

        padding: 18px 0;

    }

}

/* SMALL MOBILE */

@media (max-width:480px) {

    .footer {

        padding: 45px 0 0;

    }

    .footer-grid {

        gap: 35px;

    }

    .footer-logo {

        width: 160px;

    }

    .footer-column h3 {

        font-size: 18px;

    }

    .footer-column p {

        font-size: 14px;

    }

    .footer-column ul li a {

        font-size: 14px;

    }

    .footer-socials {

        gap: 15px;

    }

    .footer-socials a {

        font-size: 18px;

    }

    .contact-list li {

        max-width: 100%;

        font-size: 14px;

    }

    .footer-bottom {

        font-size: 13px;

        line-height: 1.6;

    }

}

/* SCROLL ANIMATIONS */

.reveal {
    opacity: 0;
    transform: translateY(70px);
    transition:
        opacity .8s ease,
        transform .8s ease;
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Left */

.reveal-left {
    opacity: 0;
    transform: translateX(-70px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Right */

.reveal-right {
    opacity: 0;
    transform: translateX(70px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale */

.reveal-scale {
    opacity: 0;
    transform: scale(.9);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger */

.delay-1 {
    transition-delay: .15s;
}

.delay-2 {
    transition-delay: .30s;
}

.delay-3 {
    transition-delay: .45s;
}

.delay-4 {
    transition-delay: .60s;
}

.delay-5 {
    transition-delay: .75s;
}