/* =====================================================
   TRIVEEXA NAVBAR
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 9999;

    background: rgba(7, 17, 31, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.nav-container {
    width: 92%;
    max-width: 1450px;
    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    min-width: 150px;
}

.logo span {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo small {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 4px;
    color: #58d6c5;
}


/* =====================================================
   NAV MENU
===================================================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}


.nav-link,
.dropdown-toggle {
    position: relative;

    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    padding: 12px 15px;

    transition: 0.3s ease;
}


.nav-link:hover,
.dropdown-toggle:hover {
    color: #ffffff;
}


/* ACTIVE */

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: "";

    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 3px;

    height: 2px;

    background: #58d6c5;
}


/* =====================================================
   DROPDOWN
===================================================== */

.nav-dropdown {
    position: relative;
    height: 100%;

    display: flex;
    align-items: center;
}


.dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 8px;

    font-family: inherit;
}


.dropdown-toggle i {
    font-size: 9px;
    transition: transform 0.3s ease;
}


/* ROTATE ARROW */

.nav-dropdown:hover .dropdown-toggle i,
.nav-dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}


/* =====================================================
   DROPDOWN MENU
===================================================== */

.dropdown-menu {
    position: absolute;

    top: 72px;
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 350px;

    padding: 10px;

    background: rgba(7, 17, 31, 0.98);

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


/* DESKTOP HOVER */

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}


/* =====================================================
   DROPDOWN ITEMS
===================================================== */

.dropdown-menu a {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 12px;

    text-decoration: none;

    border-radius: 7px;

    transition: 0.25s ease;
}


.dropdown-menu a:hover {
    background: rgba(88, 214, 197, 0.09);

    transform: translateX(3px);
}


/* ICON */

.menu-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(88, 214, 197, 0.25);

    color: #58d6c5;

    background: rgba(88, 214, 197, 0.05);

    border-radius: 6px;
}


.menu-icon i {
    font-size: 14px;
}


/* TEXT */

.dropdown-menu strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 3px;
}


.dropdown-menu small {
    display: block;

    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;
}


/* =====================================================
   EMI MENU
===================================================== */

.emi-menu {
    width: 350px;
}


/* =====================================================
   APPLY BUTTON
===================================================== */

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 19px;

    background: #58d6c5;

    color: #07111f;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: 0.3s ease;
}


.nav-btn:hover {
    background: #ffffff;

    transform: translateY(-2px);
}


.nav-btn i {
    font-size: 10px;
}


/* MOBILE APPLY */

.mobile-apply {
    display: none !important;
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.20);

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}


.menu-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: #ffffff;

    transition: 0.3s ease;
}


/* X ANIMATION */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .nav-container {
        width: 94%;
    }

    .nav-menu {
        gap: 2px;
    }

    .nav-link,
    .dropdown-toggle {
        padding: 10px 9px;
        font-size: 12px;
    }

    .nav-btn {
        padding: 10px 14px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .navbar {
        height: 72px;
    }


    .nav-container {
        width: 92%;
    }


    /* HIDE DESKTOP APPLY */

    .nav-btn {
        display: none;
    }


    /* SHOW MENU BUTTON */

    .menu-toggle {
        display: flex;
    }


    /* MOBILE NAV */

    .nav-menu {

        position: absolute;

        top: 82px;
        left: 4%;
        right: 4%;

        height: auto;

        padding: 12px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: rgba(7, 17, 31, 0.98);

        border: 1px solid rgba(255, 255, 255, 0.10);

        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.45);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }


    .nav-menu.show {

        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    /* LINKS */

    .nav-link {

        display: block;

        padding: 15px 12px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);
    }


    .nav-link.active::after {
        display: none;
    }


    /* =================================================
       MOBILE DROPDOWN
    ================================================= */

    .nav-dropdown {

        display: block;

        height: auto;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);
    }


    .dropdown-toggle {

        width: 100%;

        padding: 15px 12px;

        justify-content: space-between;

        color: rgba(255, 255, 255, 0.75);
    }


    .dropdown-menu {

        position: static;

        width: 100%;

        padding: 0;

        transform: none !important;

        background: rgba(255, 255, 255, 0.025);

        border: none;

        box-shadow: none;

        display: none;

        opacity: 1;

        visibility: visible;
    }


    .nav-dropdown.open .dropdown-menu {

        display: block;
    }


    .dropdown-menu a {

        padding: 11px 10px;

        border-top:
            1px solid rgba(255, 255, 255, 0.05);
    }


    .dropdown-menu a:hover {

        transform: none;

        background: rgba(88, 214, 197, 0.07);
    }


    .menu-icon {

        width: 34px;
        height: 34px;
    }


    .dropdown-menu strong {

        font-size: 11px;
    }


    .dropdown-menu small {

        font-size: 9px;
    }


    /* =================================================
       MOBILE APPLY
    ================================================= */

    .mobile-apply {

        display: flex !important;

        justify-content: center;
        align-items: center;

        margin-top: 12px;

        padding: 13px !important;

        background: #58d6c5;

        color: #07111f !important;

        font-weight: 700;

        border: none !important;

        text-align: center;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 500px) {

    .logo span {
        font-size: 19px;
    }

    .logo small {
        font-size: 7px;
        letter-spacing: 3px;
    }


    .nav-menu {

        top: 68px;

        left: 3%;
        right: 3%;

        max-height: calc(100vh - 85px);

        overflow-y: auto;
    }


    .menu-toggle {

        width: 40px;
        height: 40px;
    }


    .dropdown-menu a {

        padding: 10px 7px;
    }
}



/* =========================================================
   TRIVEEXA FINCORP
   EDUCATION LOAN
========================================================= */

:root {

    --navy: #06111f;
    --navy2: #091a2b;
    --navy3: #10263a;

    --gold: #c8a96b;
    --gold-light: #e4ca91;

    --white: #ffffff;
    --cream: #f6f4ee;

    --dark: #253547;

    --gray: #738294;

    --border: rgba(255, 255, 255, .1);

    --ease: cubic-bezier(.22, 1, .36, 1);

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: Arial, Helvetica, sans-serif;

    background: var(--navy);

    color: var(--white);

    overflow-x: hidden;

}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


.section-container {

    width: min(1180px, 90%);

    margin: auto;

}


.section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

}


.section-label::before {

    content: "";

    width: 28px;

    height: 1px;

    background: var(--gold);

}



/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

}


.nav-container {

    width: min(1240px, 94%);

    height: 82px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo span {

    color: var(--white);

    font-size: 23px;

    font-weight: 800;

    letter-spacing: 2px;

}


.logo small {

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 5px;

    margin-top: 5px;

}


.nav-menu {

    display: flex;

    align-items: center;

    gap: 6px;

}


.nav-link,
.dropdown-toggle {

    color: rgba(255, 255, 255, .72);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .3px;

}


.nav-link {

    padding: 12px 14px;

    transition: .3s ease;

}


.nav-link:hover {

    color: var(--gold-light);

}


.nav-dropdown {

    position: relative;

}


.dropdown-toggle {

    border: none;

    background: transparent;

    padding: 12px 14px;

    cursor: pointer;

    display: flex;

    align-items: center;

    gap: 8px;

}


.dropdown-toggle i {

    font-size: 9px;

    transition: .3s ease;

}


.dropdown-menu {

    position: absolute;

    top: calc(100% + 8px);

    left: 0;

    min-width: 210px;

    padding: 8px;

    background: rgba(6, 17, 31, .98);

    border: 1px solid var(--border);

    box-shadow: 0 25px 50px rgba(0, 0, 0, .35);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: .3s var(--ease);

}


.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.nav-dropdown:hover .dropdown-toggle i {

    transform: rotate(180deg);

}


.dropdown-menu a {

    display: block;

    padding: 12px;

    font-size: 11px;

    color: rgba(255, 255, 255, .65);

    transition: .25s ease;

}


.dropdown-menu a:hover {

    color: var(--gold-light);

    background: rgba(200, 169, 107, .08);

}


.nav-btn {

    padding: 12px 19px;

    border: 1px solid rgba(200, 169, 107, .55);

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .5px;

    display: flex;

    align-items: center;

    gap: 10px;

    transition: .3s ease;

}


.nav-btn:hover {

    background: var(--gold);

    color: var(--navy);

}


.mobile-apply {

    display: none !important;

}


.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, .25);

    cursor: pointer;

    padding: 9px;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

}


.menu-toggle span {

    width: 21px;

    height: 2px;

    background: white;

    display: block;

    transition: .35s ease;

}


.menu-toggle.active span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);

}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.active span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);

}



/* =========================================================
   HERO
========================================================= */

.edu-hero {

    min-height: 760px;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(circle at 80% 35%,
            rgba(200, 169, 107, .10),
            transparent 30%),

        linear-gradient(135deg,
            var(--navy),
            var(--navy2));

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-top: 82px;

}


.edu-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .12;

    background-image:

        linear-gradient(rgba(255, 255, 255, .05) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(255, 255, 255, .05) 1px,
            transparent 1px);

    background-size: 65px 65px;

}


.hero-container {

    width: min(1180px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

    position: relative;

    z-index: 2;

}


.hero-content {

    max-width: 590px;

}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 25px;

}


.eyebrow span {

    width: 32px;

    height: 1px;

    background: var(--gold);

}


.hero-content h1 {

    font-size: clamp(45px, 5vw, 75px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 500;

    margin-bottom: 28px;

}


.hero-content h1 em {

    font-style: normal;

    color: var(--gold-light);

}


.hero-content p {

    color: rgba(255, 255, 255, .62);

    max-width: 510px;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 32px;

}


.hero-actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.btn-primary,
.btn-outline {

    min-height: 49px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .5px;

    transition: .35s var(--ease);

}


.btn-primary {

    background: var(--gold);

    color: var(--navy);

}


.btn-primary:hover {

    background: var(--gold-light);

    transform: translateY(-3px);

}


.btn-outline {

    border: 1px solid rgba(255, 255, 255, .22);

    color: white;

}


.btn-outline:hover {

    border-color: var(--gold);

    color: var(--gold-light);

    transform: translateY(-3px);

}


.hero-note {

    margin-top: 30px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, .45);

    font-size: 11px;

}


.hero-note i {

    color: var(--gold);

}



/* =========================================================
   EDUCATION VISUAL
========================================================= */

.education-visual {

    height: 510px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}


.visual-grid {

    position: absolute;

    width: 430px;

    height: 430px;

    border: 1px solid rgba(200, 169, 107, .14);

    transform: rotate(45deg);

}


.visual-grid::before,
.visual-grid::after {

    content: "";

    position: absolute;

    inset: 40px;

    border: 1px solid rgba(200, 169, 107, .10);

}


.degree-ring {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(200, 169, 107, .25);

}


.ring-one {

    width: 390px;

    height: 390px;

    animation: rotateRing 25s linear infinite;

}


.ring-two {

    width: 300px;

    height: 300px;

    border-style: dashed;

    animation: rotateRingReverse 18s linear infinite;

}


@keyframes rotateRing {

    to {
        transform: rotate(360deg);
    }

}


@keyframes rotateRingReverse {

    to {
        transform: rotate(-360deg);
    }

}


/* graduation cap */

.graduation-cap {

    position: relative;

    width: 240px;

    height: 190px;

    z-index: 3;

    filter:
        drop-shadow(0 20px 35px rgba(0, 0, 0, .45));

}


.cap-top {

    width: 190px;

    height: 190px;

    background:
        linear-gradient(135deg,
            var(--gold-light),
            var(--gold));

    position: absolute;

    top: 0;

    left: 25px;

    transform: rotate(45deg);

    clip-path: polygon(50% 0,
            100% 50%,
            50% 100%,
            0 50%);

}


.cap-top span {

    position: absolute;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: var(--navy);

    left: 70px;

    top: 70px;

}


.cap-body {

    position: absolute;

    width: 155px;

    height: 90px;

    background: var(--navy3);

    left: 43px;

    top: 82px;

    clip-path: polygon(8% 0,
            92% 0,
            100% 100%,
            0 100%);

    border-bottom: 4px solid var(--gold);

}


.tassel {

    position: absolute;

    right: -10px;

    top: 85px;

    width: 80px;

    height: 100px;

}


.tassel::before {

    content: "";

    position: absolute;

    width: 65px;

    height: 2px;

    background: var(--gold);

    transform: rotate(35deg);

    top: 15px;

    left: -15px;

}


.tassel span {

    position: absolute;

    top: 36px;

    left: 25px;

    width: 14px;

    height: 55px;

    background: var(--gold);

}


.tassel span::after {

    content: "";

    position: absolute;

    width: 30px;

    height: 18px;

    bottom: 0;

    left: -8px;

    background: var(--gold);

}



/* floating cards */

.floating-card {

    position: absolute;

    z-index: 5;

    background: rgba(9, 26, 43, .92);

    border: 1px solid rgba(200, 169, 107, .25);

    backdrop-filter: blur(12px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);

    padding: 14px 17px;

    display: flex;

    align-items: center;

    gap: 12px;

}


.floating-card small {

    display: block;

    color: rgba(255, 255, 255, .35);

    font-size: 7px;

    letter-spacing: 2px;

    margin-bottom: 4px;

}


.floating-card strong {

    display: block;

    color: var(--white);

    font-size: 11px;

}


.card-icon,
.future-icon {

    width: 37px;

    height: 37px;

    display: grid;

    place-items: center;

    background: rgba(200, 169, 107, .12);

    color: var(--gold-light);

}


.card-university {

    top: 70px;

    left: 0;

    animation: floating 4s ease-in-out infinite;

}


.card-future {

    right: 0;

    top: 170px;

    animation: floating 4s ease-in-out infinite 1s;

}


.card-study {

    bottom: 70px;

    left: 55px;

    animation: floating 4s ease-in-out infinite 2s;

}


.card-study .dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow: 0 0 15px var(--gold);

}


@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}



/* =========================================================
   HERO BOTTOM
========================================================= */

.hero-bottom {

    width: min(1180px, 90%);

    margin: 35px auto 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);

    position: relative;

    z-index: 5;

}


.hero-stat {

    padding: 22px 15px;

    border-right: 1px solid var(--border);

    display: flex;

    align-items: center;

    gap: 14px;

}


.hero-stat:last-child {

    border-right: none;

}


.hero-stat>i {

    color: var(--gold);

    font-size: 18px;

}


.hero-stat strong {

    display: block;

    font-size: 11px;

    margin-bottom: 5px;

}


.hero-stat span {

    color: rgba(255, 255, 255, .38);

    font-size: 9px;

}



/* =========================================================
   INTRO
========================================================= */

.education-intro {

    background: var(--cream);

    color: var(--dark);

    padding: 120px 0;

}


.education-intro .section-label {

    color: var(--gold);

}


.education-intro .section-label::before {

    background: var(--gold);

}


.education-intro .section-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: end;

}


.intro-heading h2 {

    font-size: clamp(40px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 500;

    margin-top: 22px;

}


.intro-text {

    padding-bottom: 5px;

}


.intro-text p {

    color: #697887;

    font-size: 15px;

    line-height: 1.9;

    max-width: 480px;

    margin-bottom: 25px;

}


.intro-text a {

    color: var(--dark);

    font-size: 11px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 8px;

}



/* =========================================================
   EDUCATION OPTIONS
========================================================= */

.education-options {

    background: var(--cream);

    color: var(--dark);

    padding: 0 0 120px;

}


.section-top {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 50px;

    margin-bottom: 55px;

}


.section-top h2 {

    font-size: clamp(40px, 4.5vw, 62px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 500;

    margin-top: 22px;

}


.section-top>p {

    color: var(--gray);

    max-width: 380px;

    font-size: 13px;

    line-height: 1.8;

}


.education-paths {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: #d8d7d1;

}


.path-card {

    min-height: 550px;

    background: var(--cream);

    padding: 35px;

    position: relative;

    overflow: hidden;

    transition: .5s var(--ease);

}


.path-card:hover {

    background: var(--navy);

    color: var(--white);

    transform: translateY(-8px);

    z-index: 2;

}


.path-number {

    position: absolute;

    top: 25px;

    right: 30px;

    color: rgba(37, 53, 71, .18);

    font-size: 50px;

    font-weight: 800;

    transition: .4s ease;

}


.path-card:hover .path-number {

    color: rgba(200, 169, 107, .18);

}


.path-icon {

    width: 65px;

    height: 65px;

    display: grid;

    place-items: center;

    border: 1px solid #d5d2c9;

    color: var(--gold);

    font-size: 23px;

    margin-bottom: 70px;

    transition: .4s ease;

}


.path-card:hover .path-icon {

    border-color: rgba(200, 169, 107, .4);

    background: rgba(200, 169, 107, .08);

}


.path-content>span {

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 2px;

    font-weight: 700;

}


.path-content h3 {

    font-size: 30px;

    font-weight: 500;

    margin: 12px 0 17px;

}


.path-content p {

    color: var(--gray);

    font-size: 12px;

    line-height: 1.8;

    margin-bottom: 25px;

}


.path-card:hover .path-content p {

    color: rgba(255, 255, 255, .52);

}


.path-content ul {

    list-style: none;

}


.path-content li {

    display: flex;

    gap: 10px;

    align-items: center;

    font-size: 10px;

    margin-bottom: 11px;

}


.path-content li i {

    color: var(--gold);

}


.path-link {

    position: absolute;

    bottom: 30px;

    left: 35px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 10px;

    font-weight: 700;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 7px;

}



/* =========================================================
   PLANNING
========================================================= */

.planning-section {

    background: var(--navy2);

    position: relative;

    overflow: hidden;

    padding: 130px 0;

}


.planning-glow {

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(200, 169, 107, .07);

    filter: blur(100px);

    right: -150px;

    top: -150px;

}


.planning-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    align-items: center;

    position: relative;

}


.planning-content h2 {

    font-size: clamp(42px, 5vw, 70px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 500;

    margin: 25px 0;

}


.planning-content h2 span {

    color: var(--gold-light);

}


.planning-content p {

    color: rgba(255, 255, 255, .55);

    font-size: 14px;

    line-height: 1.9;

    max-width: 460px;

    margin-bottom: 30px;

}


.text-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 700;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 8px;

}


.planning-board {

    border: 1px solid rgba(255, 255, 255, .12);

    background: rgba(255, 255, 255, .025);

}


.board-header {

    padding: 20px 25px;

    border-bottom: 1px solid rgba(255, 255, 255, .1);

    display: flex;

    justify-content: space-between;

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 2px;

}


.cost-row {

    padding: 23px 25px;

    display: grid;

    grid-template-columns: 42px 1fr 130px;

    align-items: center;

    gap: 15px;

    border-bottom: 1px solid rgba(255, 255, 255, .07);

}


.cost-icon {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(200, 169, 107, .22);

    color: var(--gold);

}


.cost-info strong {

    display: block;

    font-size: 11px;

    margin-bottom: 5px;

}


.cost-info span {

    display: block;

    color: rgba(255, 255, 255, .35);

    font-size: 9px;

}


.cost-line {

    height: 3px;

    background: rgba(255, 255, 255, .08);

}


.cost-line span {

    display: block;

    height: 100%;

    background: var(--gold);

    transform-origin: left;

}


.board-footer {

    padding: 18px 25px;

    display: flex;

    justify-content: space-between;

    color: rgba(255, 255, 255, .35);

    font-size: 8px;

    letter-spacing: 2px;

}



/* =========================================================
   WHY
========================================================= */

.why-education {

    background: var(--cream);

    color: var(--dark);

    padding: 125px 0;

}


.why-heading {

    margin-bottom: 65px;

}


.why-heading h2 {

    font-size: clamp(40px, 4.8vw, 65px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 500;

    margin-top: 23px;

}


.why-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #d8d6cf;

    border-bottom: 1px solid #d8d6cf;

}


.why-item {

    padding: 40px 28px 45px;

    border-right: 1px solid #d8d6cf;

    position: relative;

}


.why-item:last-child {

    border-right: none;

}


.why-number {

    position: absolute;

    right: 22px;

    top: 25px;

    color: rgba(37, 53, 71, .2);

    font-size: 10px;

    font-weight: 700;

}


.why-item>i {

    color: var(--gold);

    font-size: 24px;

    margin: 30px 0 45px;

}


.why-item h3 {

    font-size: 17px;

    font-weight: 600;

    margin-bottom: 15px;

}


.why-item p {

    color: var(--gray);

    font-size: 11px;

    line-height: 1.8;

}



/* =========================================================
   PROCESS
========================================================= */

.process-section {

    background: var(--navy);

    padding: 130px 0;

    overflow: hidden;

}


.process-heading {

    text-align: center;

    max-width: 650px;

    margin: 0 auto 100px;

}


.process-heading h2 {

    font-size: clamp(42px, 5vw, 70px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 500;

    margin: 25px 0;

}


.process-heading p {

    color: rgba(255, 255, 255, .45);

    font-size: 13px;

    line-height: 1.8;

}


.journey {

    position: relative;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 35px;

}


.journey-line {

    position: absolute;

    left: 7%;

    right: 7%;

    top: 30px;

    height: 1px;

    background: rgba(255, 255, 255, .12);

}


.journey-progress {

    width: 0%;

    height: 100%;

    background: var(--gold);

    box-shadow: 0 0 12px rgba(200, 169, 107, .7);

    transition: width .15s linear;

}


.journey-step {

    position: relative;

    z-index: 2;

}


.step-circle {

    width: 61px;

    height: 61px;

    border-radius: 50%;

    border: 1px solid rgba(200, 169, 107, .5);

    background: var(--navy);

    color: var(--gold-light);

    display: grid;

    place-items: center;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 35px;

}


.step-content span {

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 2px;

}


.step-content h3 {

    font-size: 18px;

    font-weight: 500;

    margin: 13px 0;

}


.step-content p {

    color: rgba(255, 255, 255, .4);

    font-size: 11px;

    line-height: 1.8;

    max-width: 230px;

}



/* =========================================================
   ELIGIBILITY
========================================================= */

.eligibility-section {

    background: var(--navy2);

    padding: 125px 0;

}


.eligibility-grid {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 100px;

    align-items: center;

}


.eligibility-content h2 {

    font-size: clamp(40px, 4.5vw, 65px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 500;

    margin: 25px 0;

}


.eligibility-content h2 span {

    color: var(--gold-light);

}


.eligibility-content p {

    color: rgba(255, 255, 255, .45);

    font-size: 13px;

    line-height: 1.8;

    max-width: 430px;

    margin-bottom: 30px;

}


.eligibility-table {

    border-top: 1px solid rgba(255, 255, 255, .1);

}


.eligibility-row {

    min-height: 105px;

    display: grid;

    grid-template-columns: 50px 1fr 35px;

    align-items: center;

    gap: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, .1);

}


.eligibility-icon {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(200, 169, 107, .25);

    color: var(--gold);

}


.eligibility-row strong {

    display: block;

    font-size: 12px;

    margin-bottom: 6px;

}


.eligibility-row span {

    color: rgba(255, 255, 255, .35);

    font-size: 10px;

}


.eligibility-row b {

    color: rgba(255, 255, 255, .18);

    font-size: 10px;

}



/* =========================================================
   DOCUMENTS
========================================================= */

.documents-section {

    background: var(--cream);

    color: var(--dark);

    padding: 125px 0;

}


.documents-heading {

    max-width: 700px;

    margin-bottom: 65px;

}


.documents-heading h2 {

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 500;

    margin: 23px 0 17px;

}


.documents-heading p {

    color: var(--gray);

    font-size: 13px;

    line-height: 1.8;

}


.documents-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background: #d6d4ce;

}


.document-item {

    background: var(--cream);

    padding: 30px;

    min-height: 260px;

    transition: .4s var(--ease);

}


.document-item:hover {

    background: var(--navy);

    color: white;

    transform: translateY(-6px);

}


.document-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 70px;

}


.document-top i {

    color: var(--gold);

    font-size: 23px;

}


.document-top span {

    color: rgba(37, 53, 71, .3);

    font-size: 10px;

    font-weight: 700;

}


.document-item:hover .document-top span {

    color: rgba(255, 255, 255, .2);

}


.document-item h3 {

    font-size: 17px;

    margin-bottom: 12px;

}


.document-item p {

    color: var(--gray);

    font-size: 10px;

    line-height: 1.8;

}


.document-item:hover p {

    color: rgba(255, 255, 255, .45);

}



/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background: var(--navy);

    padding: 125px 0;

}


.faq-grid {

    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 100px;

}


.faq-heading h2 {

    font-size: clamp(40px, 4.5vw, 62px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 500;

    margin: 25px 0;

}


.faq-heading p {

    color: rgba(255, 255, 255, .4);

    font-size: 12px;

    line-height: 1.8;

    max-width: 330px;

}


.faq-list {

    border-top: 1px solid rgba(255, 255, 255, .1);

}


.faq-item {

    border-bottom: 1px solid rgba(255, 255, 255, .1);

}


.faq-question {

    width: 100%;

    min-height: 75px;

    background: transparent;

    border: none;

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    text-align: left;

    cursor: pointer;

    font-size: 12px;

    padding: 0;

}


.faq-question i {

    color: var(--gold);

    transition: .3s ease;

}


.faq-item.active .faq-question i {

    transform: rotate(45deg);

}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .45s ease;

}


.faq-answer p {

    color: rgba(255, 255, 255, .4);

    font-size: 11px;

    line-height: 1.9;

    padding: 0 30px 25px 0;

}



/* =========================================================
   CTA
========================================================= */

.final-cta {

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(circle at center,
            rgba(200, 169, 107, .12),
            transparent 38%),

        var(--navy2);

    padding: 140px 0;

    text-align: center;

}


.cta-orbit {

    position: absolute;

    width: 600px;

    height: 600px;

    border: 1px solid rgba(200, 169, 107, .08);

    border-radius: 50%;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

}


.cta-orbit::after {

    content: "";

    position: absolute;

    inset: 60px;

    border: 1px dashed rgba(200, 169, 107, .08);

    border-radius: 50%;

}


.cta-content {

    position: relative;

    z-index: 2;

}


.cta-content h2 {

    font-size: clamp(42px, 5.5vw, 76px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 500;

    margin: 25px 0;

}


.cta-content p {

    color: rgba(255, 255, 255, .45);

    font-size: 13px;

    line-height: 1.8;

    max-width: 520px;

    margin: 0 auto 30px;

}


.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;

}



/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: #030b14;

    padding-top: 80px;

}


.footer-container {

    width: min(1180px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;

    gap: 60px;

    padding-bottom: 70px;

}


.footer-logo {

    display: flex;

    flex-direction: column;

    line-height: 1;

    width: fit-content;

}


.footer-logo span {

    font-size: 23px;

    font-weight: 800;

    letter-spacing: 2px;

}


.footer-logo small {

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 5px;

    margin-top: 5px;

}


.footer-brand p {

    max-width: 300px;

    color: rgba(255, 255, 255, .35);

    font-size: 11px;

    line-height: 1.9;

    margin: 22px 0;

}


.social-links {

    display: flex;

    gap: 8px;

}


.social-links a {

    width: 35px;

    height: 35px;

    border: 1px solid rgba(255, 255, 255, .12);

    display: grid;

    place-items: center;

    color: rgba(255, 255, 255, .5);

    transition: .3s ease;

}


.social-links a:hover {

    color: var(--gold);

    border-color: var(--gold);

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.footer-column h4 {

    color: var(--gold-light);

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 10px;

}


.footer-column a,
.footer-column span {

    color: rgba(255, 255, 255, .38);

    font-size: 10px;

    transition: .25s ease;

}


.footer-column a:hover {

    color: var(--gold-light);

}


.footer-contact a,
.footer-contact span {

    display: flex;

    align-items: center;

    gap: 10px;

}


.footer-contact i {

    color: var(--gold);

}


.footer-bottom {

    width: min(1180px, 90%);

    margin: auto;

    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, .08);

    display: flex;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p,
.footer-bottom span {

    color: rgba(255, 255, 255, .22);

    font-size: 9px;

}



/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .9s var(--ease),
        transform .9s var(--ease);

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .hero-container {

        gap: 40px;

    }

    .hero-content h1 {

        font-size: 57px;

    }

    .education-paths {

        grid-template-columns: 1fr;

    }

    .path-card {

        min-height: 470px;

    }

    .why-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .why-item:nth-child(2) {

        border-right: none;

    }

    .why-item:nth-child(-n+2) {

        border-bottom: 1px solid #d8d6cf;

    }

    .documents-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 900px) {

    .nav-container {

        padding: 18px 25px;

    }

    .nav-btn {

        display: none;

    }

    .menu-toggle {

        display: flex;

    }

    .nav-menu {

        position: absolute;

        top: 78px;

        left: 20px;

        right: 20px;

        background: rgba(7, 17, 31, .98);

        backdrop-filter: blur(20px);

        border: 1px solid rgba(255, 255, 255, .10);

        padding: 18px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-15px);

        transition: .35s ease;

        box-shadow: 0 25px 60px rgba(0, 0, 0, .35);

    }


    .nav-menu.show {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .nav-menu>a {

        padding: 15px 10px;

        border-bottom: 1px solid rgba(255, 255, 255, .08);

        font-size: 13px;

        color: rgba(255, 255, 255, .8);

    }


    .nav-dropdown {

        width: 100%;

        border-bottom: 1px solid rgba(255, 255, 255, .08);

    }


    .dropdown-toggle {

        width: 100%;

        padding: 15px 10px;

        color: rgba(255, 255, 255, .8);

        font-size: 13px;

        justify-content: space-between;

    }


    .dropdown-menu {

        position: static;

        min-width: 100%;

        background: rgba(255, 255, 255, .03);

        border: none;

        padding: 0;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

    }


    .nav-dropdown.open .dropdown-menu {

        display: block;

    }


    .nav-dropdown.open .dropdown-toggle i {

        transform: rotate(180deg);

    }


    .dropdown-menu a {

        padding: 12px 15px;

        font-size: 12px;

        color: rgba(255, 255, 255, .55);

        border-top: 1px solid rgba(255, 255, 255, .05);

    }


    .mobile-apply {

        display: flex !important;

        justify-content: center;

        align-items: center;

        margin-top: 15px;

        padding: 13px !important;

        background: var(--gold);

        color: var(--navy) !important;

        font-weight: 700;

        border: none !important;

    }


    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .hero-content {

        margin: auto;

    }


    .hero-actions,
    .hero-note {

        justify-content: center;

    }


    .education-visual {

        height: 420px;

    }


    .hero-bottom {

        grid-template-columns: repeat(2, 1fr);

    }


    .hero-stat:nth-child(2) {

        border-right: none;

    }


    .intro-text {

        padding: 0;

    }


    .education-intro .section-container,
    .planning-grid,
    .eligibility-grid,
    .faq-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .section-top {

        align-items: flex-start;

        flex-direction: column;

    }


    .journey {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .journey-line {

        top: 30px;

        bottom: 30px;

        left: 30px;

        right: auto;

        width: 1px;

        height: auto;

    }


    .journey-progress {

        width: 100%;

        height: 0%;

    }


    .journey-step {

        display: grid;

        grid-template-columns: 61px 1fr;

        gap: 25px;

    }


    .step-circle {

        margin: 0;

    }


    .footer-container {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .edu-hero {

        min-height: auto;

        padding: 130px 0 50px;

    }


    .hero-content h1 {

        font-size: 45px;

        letter-spacing: -2px;

    }


    .hero-content p {

        font-size: 13px;

    }


    .education-visual {

        height: 350px;

        transform: scale(.8);

    }


    .visual-grid {

        width: 320px;

        height: 320px;

    }


    .ring-one {

        width: 300px;

        height: 300px;

    }


    .ring-two {

        width: 230px;

        height: 230px;

    }


    .graduation-cap {

        transform: scale(.75);

    }


    .card-university {

        left: -5px;

        top: 40px;

    }


    .card-future {

        right: -5px;

        top: 120px;

    }


    .card-study {

        left: 15px;

        bottom: 40px;

    }


    .hero-bottom {

        grid-template-columns: 1fr;

        margin-top: 20px;

    }


    .hero-stat {

        border-right: none;

        border-bottom: 1px solid var(--border);

    }


    .education-intro,
    .planning-section,
    .why-education,
    .process-section,
    .eligibility-section,
    .documents-section,
    .faq-section {

        padding: 90px 0;

    }


    .intro-heading h2,
    .section-top h2,
    .planning-content h2,
    .why-heading h2,
    .process-heading h2,
    .eligibility-content h2,
    .documents-heading h2,
    .faq-heading h2 {

        font-size: 42px;

        letter-spacing: -2px;

    }


    .why-grid {

        grid-template-columns: 1fr;

    }


    .why-item {

        border-right: none;

        border-bottom: 1px solid #d8d6cf;

    }


    .why-item:last-child {

        border-bottom: none;

    }


    .documents-grid {

        grid-template-columns: 1fr;

    }


    .cost-row {

        grid-template-columns: 42px 1fr;

    }


    .cost-line {

        display: none;

    }


    .final-cta {

        padding: 100px 0;

    }


    .cta-content h2 {

        font-size: 43px;

        letter-spacing: -2px;

    }


    .cta-orbit {

        width: 400px;

        height: 400px;

    }


    .footer-container {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .footer-bottom {

        flex-direction: column;

    }

}