: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, sans-serif;

    background: var(--navy);

    color: white;

    overflow-x: hidden;
}


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


button,
input {
    font-family: inherit;
}


.container {

    width: min(1200px, 88%);

    margin: auto;
}



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

/* =====================================================
   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;
    }
}



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

.hero {

    min-height: 100vh;

    padding-top: 78px;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(circle at 75% 45%,
            rgba(200, 169, 107, .13),
            transparent 25%),

        linear-gradient(135deg,
            #06111f,
            #0a1d30);
}


.hero-pattern {

    position: absolute;

    inset: 0;

    opacity: .18;

    background-image:
        radial-gradient(rgba(255, 255, 255, .25) 1px,
            transparent 1px);

    background-size: 35px 35px;

    mask-image: linear-gradient(to right,
            black,
            transparent);
}


.hero-grid {

    min-height: calc(100vh - 78px);

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}


.hero-content {

    position: relative;

    z-index: 3;
}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 4px;

    margin-bottom: 25px;
}


.eyebrow span {

    width: 32px;

    height: 1px;

    background: var(--gold);
}


.hero h1 {

    font-family: "Playfair Display", serif;

    font-size: clamp(55px, 7vw, 90px);

    line-height: .98;

    font-weight: 600;

    margin-bottom: 28px;
}


.hero h1 span {
    color: var(--gold);
}


.hero-description {

    color: #a8b5c3;

    max-width: 560px;

    font-size: 15px;

    line-height: 1.9;
}


.hero-buttons {

    display: flex;

    gap: 14px;

    margin-top: 38px;
}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 24px;

    border-radius: 3px;

    font-size: 12px;

    font-weight: 800;

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


.btn-gold {

    background: var(--gold);

    color: var(--navy);
}


.btn-gold:hover {

    background: var(--gold-light);

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(200, 169, 107, .2);
}


.btn-outline {

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

    color: white;
}


.btn-outline:hover {

    border-color: var(--gold);

    color: var(--gold);

    transform: translateY(-4px);
}


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

.hero-visual {

    height: 620px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


.orbit {

    position: absolute;

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

    border-radius: 50%;

    animation: rotate 25s linear infinite;
}


.orbit-one {

    width: 570px;
    height: 570px;
}


.orbit-two {

    width: 430px;
    height: 430px;

    animation-duration: 18s;

    animation-direction: reverse;
}


@keyframes rotate {

    from {
        transform: rotate(0);
    }

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


.loan-card {

    position: relative;

    z-index: 5;

    width: 390px;

    padding: 38px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .11),
            rgba(255, 255, 255, .035));

    backdrop-filter: blur(22px);

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

    box-shadow:
        0 40px 100px rgba(0, 0, 0, .4);

    transform: rotate(-3deg);

    transition: .6s var(--ease);
}


.loan-card:hover {

    transform:
        rotate(0) translateY(-8px);
}


.card-top {

    display: flex;

    justify-content: space-between;

    color: #8190a0;

    font-size: 10px;

    letter-spacing: 2px;
}


.card-top i {
    color: var(--gold);
}


.loan-amount {

    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 45px;

    margin: 25px 0 5px;
}


.loan-card>p {

    color: #778697;

    font-size: 11px;
}


.card-divider {

    height: 1px;

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

    margin: 28px 0 12px;
}


.card-data {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.card-data small {

    display: block;

    color: #718194;

    font-size: 10px;

    margin-bottom: 7px;
}


.card-data strong {

    font-size: 13px;
}


.card-button {

    margin-top: 28px;

    padding: 14px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: var(--gold);

    color: var(--navy);

    font-size: 11px;

    font-weight: 800;
}


.floating-info {

    position: absolute;

    z-index: 7;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    background: #0d2033;

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

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

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


.info-one {

    left: 0;

    top: 120px;
}


.info-two {

    right: -15px;

    bottom: 125px;

    animation-delay: 1.5s;
}


@keyframes floating {

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

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


.floating-icon {

    width: 38px;
    height: 38px;

    display: flex;

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

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

    color: var(--gold);
}


.floating-info strong {

    display: block;

    font-size: 11px;

    margin-bottom: 3px;
}


.floating-info small {

    display: block;

    color: #708093;

    font-size: 9px;
}


.scroll-down {

    position: absolute;

    bottom: 28px;

    left: 5.5%;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #657586;

    font-size: 9px;

    letter-spacing: 3px;
}


.scroll-line {

    width: 45px;

    height: 1px;

    background: var(--gold);
}


/* =====================================================
   QUICK BENEFITS
===================================================== */

.quick-benefits {

    background: #081625;

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

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


.quick-grid {

    display: grid;

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


.quick-item {

    padding: 30px 20px;

    display: flex;

    align-items: center;

    gap: 14px;

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


.quick-item:last-child {
    border-right: 0;
}


.quick-item i {

    color: var(--gold);

    font-size: 19px;
}


.quick-item strong {

    display: block;

    font-size: 12px;

    margin-bottom: 4px;
}


.quick-item span {

    color: #6e7f91;

    font-size: 10px;
}


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

.intro {

    padding: 130px 0;

    background: var(--cream);

    color: var(--dark);
}


.intro-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 100px;
}


.section-label {

    display: inline-block;

    color: #9b783a;

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 22px;
}


.intro-heading h2,
.section-heading h2,
.calculator-heading h2,
.eligibility-content h2,
.journey-heading h2,
.apply-inner h2 {

    font-family: "Playfair Display", serif;

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

    line-height: 1.08;

    font-weight: 600;
}


.intro-heading h2 span,
.section-heading h2 span,
.calculator-heading h2 span,
.eligibility-content h2 span,
.journey-heading h2 span,
.apply-inner h2 span {

    color: #a27e3d;
}


.intro-text {

    padding-top: 40px;
}


.intro-text p {

    color: #687787;

    line-height: 1.9;

    font-size: 14px;

    margin-bottom: 20px;
}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #957335;

    font-size: 12px;

    font-weight: 800;

    margin-top: 10px;
}


/* =====================================================
   USE CASES
===================================================== */

.use-cases {

    padding: 130px 0;

    background: #06111f;
}


.section-heading {

    max-width: 750px;

    margin-bottom: 60px;
}


.section-heading h2 {
    color: white;
}


.section-heading p {

    color: #7b8b9c;

    font-size: 14px;

    line-height: 1.8;

    margin-top: 20px;
}


.use-case-grid {

    display: grid;

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

    gap: 1px;

    background: rgba(255, 255, 255, .09);
}


.use-case {

    min-height: 280px;

    padding: 35px;

    background: #081725;

    position: relative;

    overflow: hidden;

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


.use-case:hover {

    background: #0d2135;

    transform: translateY(-7px);

    z-index: 2;
}


.case-number {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;
}


.use-case i {

    display: block;

    color: var(--gold);

    font-size: 26px;

    margin: 32px 0 25px;
}


.use-case h3 {

    font-size: 18px;

    margin-bottom: 12px;
}


.use-case p {

    color: #718194;

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
   CALCULATOR
===================================================== */

.calculator-section {

    padding: 130px 0;

    background: var(--cream);

    color: var(--dark);
}


.calculator-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 60px;
}


.calculator-heading p {

    color: #748293;

    font-size: 14px;

    line-height: 1.8;
}


.calculator {

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: white;

    box-shadow: 0 30px 90px rgba(7, 17, 31, .1);
}


.calculator-inputs {

    padding: 50px;
}


.input-group {

    margin-bottom: 40px;
}


.input-header {

    display: flex;

    justify-content: space-between;

    margin-bottom: 16px;
}


.input-header label {

    color: #344456;

    font-size: 12px;

    font-weight: 800;
}


.input-header strong {

    color: #987437;

    font-size: 17px;
}


input[type="range"] {

    width: 100%;

    height: 5px;

    appearance: none;

    -webkit-appearance: none;

    background: #dfe2e5;

    border-radius: 10px;

    outline: none;
}


input[type="range"]::-webkit-slider-thumb {

    appearance: none;

    -webkit-appearance: none;

    width: 19px;
    height: 19px;

    border-radius: 50%;

    background: var(--gold);

    border: 3px solid white;

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

    cursor: pointer;
}


input[type="range"]::-moz-range-thumb {

    width: 19px;
    height: 19px;

    border-radius: 50%;

    background: var(--gold);

    border: 3px solid white;

    cursor: pointer;
}


.range-labels {

    display: flex;

    justify-content: space-between;

    color: #9ba4ad;

    font-size: 9px;

    margin-top: 8px;
}


.calculator-note {

    display: flex;

    gap: 10px;

    color: #8a96a2;

    font-size: 10px;

    line-height: 1.6;

    padding: 15px;

    background: #f5f4ef;
}


.calculator-note i {
    color: #a08043;
}


/* result */

.calculator-result {

    padding: 50px;

    background: var(--navy);

    color: white;

    position: relative;

    overflow: hidden;
}


.calculator-result::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

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

    border-radius: 50%;

    right: -220px;

    top: -200px;
}


.result-label {

    position: relative;

    color: #8190a0;

    font-size: 10px;

    letter-spacing: 2px;
}


.emi-number {

    position: relative;

    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 50px;

    margin: 10px 0 35px;
}


.result-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1px;

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

    position: relative;
}


.result-box {

    padding: 20px;

    background: #091827;
}


.result-box span {

    display: block;

    color: #718194;

    font-size: 9px;

    margin-bottom: 7px;
}


.result-box strong {
    font-size: 13px;
}


.graph-section {

    margin-top: 35px;

    position: relative;
}


.graph-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;
}


.graph-header strong {
    font-size: 12px;
}


.legend {

    display: flex;

    gap: 12px;

    color: #768698;

    font-size: 9px;
}


.legend span {

    display: flex;

    align-items: center;

    gap: 5px;
}


.principal-dot,
.interest-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    display: inline-block;
}


.principal-dot {
    background: #68a8c7;
}


.interest-dot {
    background: #c87968;
}


.graph {

    height: 115px;

    display: flex;

    align-items: end;

    gap: 8px;

    padding-top: 10px;
}


.graph-principal {

    height: 75%;

    flex: 3;

    background: #68a8c7;

    transition: .5s;
}


.graph-interest {

    height: 25%;

    flex: 1;

    background: #c87968;

    transition: .5s;
}


.result-button {

    margin-top: 35px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 15px 18px;

    background: var(--gold);

    color: var(--navy);

    font-size: 11px;

    font-weight: 800;
}


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

.eligibility {

    padding: 130px 0;

    background: #071522;
}


.eligibility-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


.eligibility-content h2 {

    color: white;

    margin-bottom: 22px;
}


.eligibility-content p {

    color: #7d8d9d;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 30px;
}


.criteria {

    display: grid;

    gap: 1px;

    background: rgba(255, 255, 255, .1);
}


.criteria-item {

    padding: 23px 27px;

    background: #0a1a2b;

    display: flex;

    align-items: center;

    justify-content: space-between;

    transition: .3s;
}


.criteria-item:hover {
    background: #10263a;
}


.criteria-item div {

    display: flex;

    align-items: center;

    gap: 14px;
}


.criteria-item i {
    color: var(--gold);
}


.criteria-item span {

    color: #718194;

    font-size: 10px;
}


.criteria-item strong {

    font-size: 12px;

    text-align: right;
}


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

.documents {

    padding: 120px 0;

    background: var(--cream);

    color: var(--dark);
}


.section-heading.center {

    margin-left: auto;

    margin-right: auto;

    text-align: center;
}


.document-grid {

    display: grid;

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

    gap: 20px;
}


.document-card {

    background: white;

    padding: 35px 25px;

    min-height: 210px;

    border-bottom: 3px solid transparent;

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


.document-card:hover {

    transform: translateY(-8px);

    border-bottom-color: var(--gold);

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


.document-card i {

    color: #9d7939;

    font-size: 25px;

    margin-bottom: 25px;
}


.document-card h3 {

    font-size: 15px;

    margin-bottom: 10px;
}


.document-card p {

    color: #788695;

    font-size: 11px;

    line-height: 1.8;
}


/* =====================================================
   JOURNEY
===================================================== */

.journey {

    padding: 130px 0;

    background: #06111f;
}


.journey-heading {

    max-width: 700px;

    margin: 0 auto 90px;

    text-align: center;
}


.journey-heading h2 {
    color: white;
}


.journey-heading p {

    color: #718194;

    font-size: 13px;

    line-height: 1.8;

    margin-top: 20px;
}


.journey-line {

    position: relative;

    display: grid;

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


.journey-line::before {

    content: "";

    position: absolute;

    top: 31px;

    left: 12.5%;

    right: 12.5%;

    height: 1px;

    background: linear-gradient(90deg,
            var(--gold),
            rgba(200, 169, 107, .1));

    transform: scaleX(0);

    transform-origin: left;

    transition: 2s var(--ease);
}


.journey-line.active::before {
    transform: scaleX(1);
}


.step {

    position: relative;

    z-index: 2;

    text-align: center;
}


.step-circle {

    width: 64px;
    height: 64px;

    margin: 0 auto 25px;

    display: flex;

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

    border-radius: 50%;

    background: #071522;

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

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    transition: .4s;
}


.step:hover .step-circle {

    background: var(--gold);

    color: var(--navy);

    transform: scale(1.1);
}


.step h3 {

    font-size: 14px;

    margin-bottom: 9px;
}


.step p {

    max-width: 180px;

    margin: auto;

    color: #6e7f91;

    font-size: 10px;

    line-height: 1.7;
}


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

.faq {

    padding: 130px 0;

    background: var(--cream);

    color: var(--dark);
}


.faq-wrapper {

    max-width: 850px;

    margin: 55px auto 0;
}


.faq-item {

    border-bottom: 1px solid #d9d9d3;
}


.faq-question {

    width: 100%;

    padding: 24px 0;

    background: none;

    border: 0;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    text-align: left;

    color: var(--dark);

    font-size: 13px;

    font-weight: 700;
}


.faq-question i {

    color: #9b7739;

    transition: .4s;
}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .5s ease;
}


.faq-answer p {

    color: #748291;

    font-size: 12px;

    line-height: 1.8;

    padding: 0 40px 25px 0;
}


.faq-item.active .faq-question i {
    transform: rotate(180deg);
}


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

.apply-section {

    padding: 120px 0;

    background:

        radial-gradient(circle at center top,
            rgba(200, 169, 107, .14),
            transparent 45%),

        #071522;

    text-align: center;
}


.apply-inner {

    max-width: 800px;

    margin: auto;
}


.apply-inner h2 {
    color: white;
}


.apply-inner p {

    max-width: 550px;

    margin: 22px auto 35px;

    color: #7c8c9c;

    font-size: 13px;

    line-height: 1.8;
}


.apply-buttons {

    display: flex;

    justify-content: center;

    gap: 14px;
}


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

footer {

    background: #040b13;

    padding: 70px 0 25px;

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


.footer-grid {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 50px;

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


.footer-brand p {

    max-width: 300px;

    color: #657485;

    font-size: 11px;

    line-height: 1.8;

    margin-top: 18px;
}


.footer h4 {

    font-size: 11px;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


.footer-links {

    list-style: none;

    display: grid;

    gap: 11px;
}


.footer-links li,
.footer-links a {

    color: #667687;

    font-size: 11px;

    transition: .3s;
}


.footer-links a:hover {
    color: var(--gold);
}


.socials {

    display: flex;

    gap: 9px;

    margin-top: 24px;
}


.socials a {

    width: 35px;
    height: 35px;

    display: flex;

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

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

    color: #6e7e8f;

    transition: .3s;
}


.socials a:hover {

    color: var(--gold);

    border-color: var(--gold);

    transform: translateY(-3px);
}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    padding-top: 22px;

    color: #4d5c6b;

    font-size: 9px;
}


/* =====================================================
   SCROLL ANIMATION
===================================================== */

.reveal {

    opacity: 0;

    transform: translateY(35px);

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


.reveal.show {

    opacity: 1;

    transform: translateY(0);
}


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

@media(max-width:1050px) {

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 10px;
    }

    .hero-grid {

        grid-template-columns: 1fr;

        padding: 80px 0;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-visual {
        height: 520px;
    }

    .quick-grid {
        grid-template-columns: 1fr 1fr;
    }

    .use-case-grid {
        grid-template-columns: 1fr 1fr;
    }

    .calculator {
        grid-template-columns: 1fr;
    }

    .eligibility-grid {
        grid-template-columns: 1fr;
    }

    .document-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


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

@media(max-width:700px) {

    .navbar {
        height: 70px;
    }

    .nav-links {

        position: absolute;

        top: 70px;

        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        padding: 25px 6%;

        background: #071522;

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

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 12px;
    }

    .nav-apply {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero {

        padding-top: 70px;
    }

    .hero-grid {

        min-height: auto;

        padding: 90px 0 70px;

        gap: 10px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }

    .hero-visual {
        height: 440px;
    }

    .orbit-one {
        width: 400px;
        height: 400px;
    }

    .orbit-two {
        width: 310px;
        height: 310px;
    }

    .loan-card {
        width: 90%;
        padding: 28px;
    }

    .loan-amount {
        font-size: 37px;
    }

    .floating-info {
        padding: 11px;
    }

    .info-one {
        left: -5px;
        top: 55px;
    }

    .info-two {
        right: -5px;
        bottom: 55px;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .quick-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .intro,
    .use-cases,
    .calculator-section,
    .eligibility,
    .documents,
    .journey,
    .faq {
        padding: 90px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .intro-text {
        padding-top: 0;
    }

    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .calculator-inputs,
    .calculator-result {
        padding: 30px 25px;
    }

    .emi-number {
        font-size: 40px;
    }

    .result-grid {
        grid-template-columns: 1fr;
    }

    .document-grid {
        grid-template-columns: 1fr;
    }

    .journey-line {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .journey-line::before {

        left: 50%;

        top: 31px;

        bottom: 31px;

        width: 1px;

        height: auto;

        right: auto;

        transform: scaleY(0);

        transform-origin: top;
    }

    .journey-line.active::before {
        transform: scaleY(1);
    }

    .apply-buttons {

        flex-direction: column;

        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {

        flex-direction: column;

        gap: 10px;
    }
}


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

@media(max-width:430px) {

    .container {
        width: 90%;
    }

    .hero h1 {
        font-size: 46px;
    }

    .loan-card {
        width: 95%;
    }

    .card-data {
        gap: 10px;
    }

    .loan-amount {
        font-size: 32px;
    }

    .graph-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

}