/* =====================================================
   TRIVEEXA FINCORP
   HOMEPAGE CSS
===================================================== */

:root {

    --dark: #07111f;
    --dark-2: #0b1728;
    --white: #ffffff;
    --light: #f5f7fa;
    --text: #172235;
    --muted: #7b8798;

    --accent: #d9a441;
    --accent-light: #f0c66d;

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

    --container: 1200px;

}


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


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;

}


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


button {
    font-family: inherit;
}


/* =====================================================
   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: 50vh;

    background: var(--dark);

    color: white;

    position: relative;

    overflow: hidden;

}


.hero::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(217, 164, 65, .12);

    right: -180px;

    top: -180px;

}


.hero::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    border-radius: 50%;

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

    left: -180px;

    bottom: -220px;

}


.hero-container {

    max-width: var(--container);

    min-height: 50vh;

    margin: auto;

    padding: 110px 25px 55px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;

}


/* Hero left */

.hero-tag {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--accent-light);

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;

}


.hero-tag i {

    font-size: 6px;

}


.headline-wrapper {

    position: relative;

    min-height: 125px;

}


.headline {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    font-size: clamp(36px, 4vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;

    opacity: 0;

    transform: translateY(20px);

    transition: .7s;

}


.headline.active {

    opacity: 1;

    transform: translateY(0);

}


.headline span {

    color: var(--accent-light);

}


.hero-description {

    max-width: 560px;

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

    font-size: 14px;

    line-height: 1.8;

    margin: 15px 0 25px;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.btn-primary {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: var(--accent);

    color: var(--dark);

    padding: 14px 22px;

    font-size: 13px;

    font-weight: 700;

    transition: .3s;

}


.btn-primary:hover {

    background: var(--accent-light);

    transform: translateY(-3px);

}


.btn-outline {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 22px;

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

    color: white;

    font-size: 13px;

    transition: .3s;

}


.btn-outline:hover {

    border-color: var(--accent);

    color: var(--accent-light);

}


.hero-trust {

    display: flex;

    gap: 35px;

    margin-top: 30px;

}


.hero-trust div {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.hero-trust strong {

    font-size: 20px;

}


.hero-trust span {

    font-size: 10px;

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

}


/* Hero right */

.hero-visual {

    position: relative;

    min-height: 380px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-circle {

    width: 330px;

    height: 330px;

    border-radius: 50%;

    border: 1px solid rgba(217, 164, 65, .2);

    position: absolute;

}


.hero-circle::before {

    content: "";

    position: absolute;

    inset: 35px;

    border-radius: 50%;

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

}


.hero-main-card {

    width: 280px;

    min-height: 320px;

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

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

    backdrop-filter: blur(15px);

    padding: 25px;

    position: relative;

    z-index: 2;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);

}


.card-top {

    display: flex;

    justify-content: space-between;

    font-size: 10px;

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

}


.card-icon {

    width: 55px;

    height: 55px;

    margin-top: 45px;

    display: grid;

    place-items: center;

    background: var(--accent);

    color: var(--dark);

    font-size: 22px;

}


.hero-main-card h3 {

    font-size: 25px;

    line-height: 1.2;

    margin: 20px 0 12px;

}


.hero-main-card p {

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

    font-size: 11px;

    line-height: 1.7;

}


.hero-main-card a {

    display: inline-flex;

    gap: 10px;

    align-items: center;

    color: var(--accent-light);

    font-size: 11px;

    margin-top: 25px;

}


.floating-card {

    position: absolute;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 12px;

    background: white;

    color: var(--dark);

    padding: 13px 18px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .3);

}


.floating-card i {

    color: var(--accent);

}


.floating-card div {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.floating-card strong {

    font-size: 11px;

}


.floating-card span {

    font-size: 9px;

    color: var(--muted);

}


.card-one {

    top: 55px;

    left: 10px;

}


.card-two {

    right: 0;

    bottom: 55px;

}


/* =====================================================
   RATE TICKER
===================================================== */

.rate-section {

    height: 55px;

    background: white;

    border-bottom: 1px solid #eee;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.rate-label {

    flex-shrink: 0;

    height: 100%;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 0 25px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    border-right: 1px solid #eee;

}


.live-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #20a86b;

    animation: blink 1s infinite;

}


@keyframes blink {

    50% {
        opacity: .3;
    }

}


.rate-track {

    display: flex;

    min-width: max-content;

    animation: ticker 28s linear infinite;

}


.rate-item {

    display: flex;

    gap: 15px;

    padding: 0 35px;

    font-size: 10px;

    border-right: 1px solid #eee;

}


.rate-item span {

    color: var(--muted);

}


@keyframes ticker {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =====================================================
   FLOATING SLIDER
===================================================== */

.loan-slider-section {

    background: white;

    padding: 60px 0;

}


.slider-container {

    width: 90%;

    max-width: 1250px;

    margin: auto;

    position: relative;

}


.loan-slide {

    display: none;

    min-height: 35vh;

    background: var(--dark);

    position: relative;

    overflow: hidden;

}


.loan-slide.active {

    display: grid;

    grid-template-columns: 48% 52%;

    animation: slideIn .7s ease;

}


@keyframes slideIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.slide-image {

    min-height: 35vh;

    background-size: cover;

    background-position: center;

}


.home-slide {

    background:
        linear-gradient(90deg, rgba(7, 17, 31, .1), rgba(7, 17, 31, .1)),
        url("images/home-loan.jpg") center/cover;
}


.personal-slide {

    background:
        linear-gradient(90deg, rgba(7, 17, 31, .1), rgba(7, 17, 31, .1)),
        url("images/personal-loan.jpg") center/cover;
}


.business-slide {

    background:
        linear-gradient(90deg, rgba(7, 17, 31, .1), rgba(7, 17, 31, .1)),
        url("images/business-loan.jpg") center/cover;
}


.slide-content {

    padding: 55px;

    color: white;

    display: flex;

    justify-content: center;

    flex-direction: column;

}


.slide-content>span {

    color: var(--accent);

    font-size: 11px;

    letter-spacing: 2px;

}


.slide-content h2 {

    font-size: 38px;

    margin: 12px 0;

}


.slide-content p {

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

    font-size: 13px;

    line-height: 1.8;

    max-width: 500px;

}


.slide-content a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--accent-light);

    margin-top: 22px;

    font-size: 12px;

}


.slider-dots {

    position: absolute;

    bottom: 20px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 8px;

}


.dot {

    width: 25px;

    height: 3px;

    border: none;

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

    cursor: pointer;

}


.dot.active {

    background: var(--accent);

}


/* =====================================================
   PRODUCTS
===================================================== */

.products-top {

    background: white;

    padding: 100px 25px 150px;

}


.section-heading {

    max-width: var(--container);

    margin: auto;

}


.section-label {

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 700;

    color: var(--accent);

}


.section-heading h2,
.journey-heading h2,
.why-heading h2,
.emi-content h2,
.faq-heading h2,
.final-cta h2 {

    font-size: clamp(36px, 5vw, 60px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-top: 15px;

}


.section-heading h2 span,
.journey-heading h2 span,
.why-heading h2 span,
.emi-content h2 span,
.faq-heading h2 span,
.final-cta h2 span {

    color: var(--accent);

}


.section-heading p {

    max-width: 520px;

    margin-top: 20px;

    color: var(--muted);

    line-height: 1.8;

    font-size: 13px;

}


.products-bottom {

    background: var(--dark);

    padding: 0 25px 100px;

}


.product-grid {

    max-width: var(--container);

    margin: auto;

    margin-top: -100px;

    display: grid;

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

}


.product-card {

    min-height: 330px;

    padding: 35px;

    color: white;

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

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

    position: relative;

    transition: .4s;

}


.product-card:hover {

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

    transform: translateY(-8px);

}


.product-number {

    position: absolute;

    top: 25px;

    right: 25px;

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

    font-size: 12px;

}


.product-icon {

    width: 55px;

    height: 55px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(217, 164, 65, .4);

    color: var(--accent);

    font-size: 20px;

}


.product-card h3 {

    font-size: 22px;

    margin: 35px 0 12px;

}


.product-card p {

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

    font-size: 12px;

    line-height: 1.8;

}


.product-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    font-size: 11px;

    color: var(--accent-light);

}


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

.journey-section {

    background: var(--dark);

    color: white;

    padding: 100px 25px 130px;

}


.journey-heading {

    max-width: var(--container);

    margin: auto;

}


.journey {

    max-width: var(--container);

    margin: 100px auto 0;

    display: grid;

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

    position: relative;

}


.journey-line {

    position: absolute;

    height: 1px;

    background: rgba(217, 164, 65, .3);

    top: 35px;

    left: 12%;

    right: 12%;

}


.journey-step {

    text-align: center;

    position: relative;

}


.step-number {

    width: 70px;

    height: 70px;

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

    border-radius: 50%;

    background: var(--dark);

    display: grid;

    place-items: center;

    margin: auto;

    color: var(--accent);

    font-weight: 700;

    position: relative;

    z-index: 2;

    transition: .4s;

}


.journey-step:hover .step-number {

    background: var(--accent);

    color: var(--dark);

    transform: scale(1.1);

}


.journey-step h3 {

    margin-top: 25px;

    font-size: 17px;

}


.journey-step p {

    max-width: 200px;

    margin: 12px auto;

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

    font-size: 11px;

    line-height: 1.7;

}


/* =====================================================
   FEATURED LOAN
===================================================== */

.featured-loan {

    background: var(--dark);

    color: white;

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 600px;

}


.featured-image {

    background:
        linear-gradient(90deg, rgba(7, 17, 31, .15), rgba(7, 17, 31, .35)),
        url("images/home-loan.jpg") center/cover;

    position: relative;

}


.image-number {

    position: absolute;

    top: 40px;

    left: 40px;

    color: white;

    font-size: 50px;

    font-weight: 800;

    opacity: .6;

}


.featured-content {

    padding: 80px;

    display: flex;

    justify-content: center;

    flex-direction: column;

}


.featured-content h2 {

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.05;

    margin: 18px 0;

}


.featured-content h2 span {

    color: var(--accent);

}


.featured-content>p {

    max-width: 520px;

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

    font-size: 13px;

    line-height: 1.8;

}


.highlights {

    margin: 30px 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

}


.highlights div {

    display: flex;

    gap: 10px;

    align-items: center;

    font-size: 11px;

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

}


.highlights i {

    color: var(--accent);

}


.featured-buttons {

    display: flex;

    align-items: center;

    gap: 25px;

}


.text-button {

    color: var(--accent-light);

    font-size: 12px;

}


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

.why-section {

    padding: 120px 25px;

    background: white;

}


.why-heading {

    max-width: var(--container);

    margin: auto;

}


.why-grid {

    max-width: var(--container);

    margin: 70px auto 0;

    display: grid;

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

}


.why-item {

    padding: 30px;

    border-left: 1px solid #e8e8e8;

}


.why-icon {

    font-size: 25px;

    color: var(--accent);

    margin-bottom: 30px;

}


.why-item h3 {

    font-size: 17px;

    margin-bottom: 12px;

}


.why-item p {

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;

}


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

.emi-section {

    background: var(--dark);

    color: white;

    min-height: 480px;

    padding: 80px 25px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

}


.emi-content {

    max-width: 550px;

    margin-left: max(25px, calc((100vw - 1150px)/2));

}


.emi-content p {

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

    max-width: 500px;

    font-size: 13px;

    line-height: 1.8;

    margin: 20px 0 30px;

}


.emi-visual {

    display: grid;

    place-items: center;

}


.emi-circle {

    width: 260px;

    height: 260px;

    border-radius: 50%;

    border: 1px solid rgba(217, 164, 65, .4);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

}


.emi-circle span {

    font-size: 10px;

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

}


.emi-circle strong {

    font-size: 35px;

    margin: 10px 0;

    color: var(--accent-light);

}


.emi-circle small {

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

}


/* =====================================================
   STATS
===================================================== */

.stats-section {

    background: white;

    padding: 80px 25px;

    display: grid;

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

    max-width: var(--container);

    margin: auto;

}


.stat {

    text-align: center;

    border-right: 1px solid #eee;

}


.stat:last-child {

    border-right: none;

}


.stat strong {

    display: block;

    font-size: 42px;

    color: var(--dark);

}


.stat span {

    display: block;

    color: var(--muted);

    font-size: 10px;

    margin-top: 8px;

}


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

.faq-section {

    background: #f7f8fa;

    padding: 110px 25px;

    display: grid;

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

    gap: 80px;

}


.faq-heading {

    max-width: 400px;

    margin-left: max(0px, calc((100vw - 1150px)/2));

}


.faq-container {

    max-width: 650px;

}


.faq-item {

    border-bottom: 1px solid #ddd;

}


.faq-question {

    width: 100%;

    padding: 22px 0;

    border: none;

    background: none;

    display: flex;

    justify-content: space-between;

    text-align: left;

    font-size: 13px;

    cursor: pointer;

}


.faq-question i {

    color: var(--accent);

    transition: .3s;

}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: .4s;

}


.faq-answer p {

    padding-bottom: 20px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;

}


.faq-item.active .faq-answer {

    max-height: 200px;

}


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

    transform: rotate(45deg);

}


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

.final-cta {

    min-height: 500px;

    background:

        radial-gradient(circle at 70% 50%,
            rgba(217, 164, 65, .15),
            transparent 35%),

        var(--dark);

    color: white;

    display: grid;

    place-items: center;

    text-align: center;

    padding: 80px 25px;

}


.final-cta p {

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

    font-size: 13px;

    margin: 20px 0 30px;

}


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

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

.footer-container {

    position: relative;

    width: 90%;
    max-width: 1400px;

    margin: auto;

    padding: 90px 0 70px;

    display: grid;

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

    gap: 70px;
}


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

.footer-logo {

    display: inline-flex;

    flex-direction: column;

    text-decoration: none;

    color: #07111f;

    font-size: 32px;

    font-weight: 800;

    letter-spacing: 1px;
}

.footer-logo span {

    font-size: 12px;

    letter-spacing: 5px;

    color: #d9a441;

    margin-top: 2px;
}


.footer-brand p {

    max-width: 390px;

    margin-top: 25px;

    color: #07111f;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   SOCIAL LINKS
========================================= */

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-links a {
    width: 44px;
    height: 44px;

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

    border-radius: 50%;

    text-decoration: none;

    color: #d9a441;

    background: #07111f;

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

    font-size: 18px;

    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #07111f;
    background: #00c985;
    border-color: #00c985;

    transform: translateY(-5px);

    box-shadow:
        0 8px 20px rgba(0, 201, 133, 0.25);
}

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

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 15px;
}

.footer-column h3 {

    font-size: 17px;

    margin-bottom: 12px;

    color: #d9a441;
}

.footer-column h3::after {

    content: "";

    display: block;

    width: 30px;

    height: 3px;

    background: #d9a441;

    margin-top: 10px;

    border-radius: 10px;
}

.footer-column a {

    color: #07111f;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s ease;
}

.footer-column a:hover {

    color: #00c985;

    padding-left: 5px;
}


/* =========================================
   CONTACT BAR
========================================= */

.footer-contact {

    width: 90%;
    max-width: 1400px;

    margin: auto;

    padding: 30px 0;

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

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

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.contact-item {

    display: flex;

    align-items: center;

    gap: 15px;
}

.contact-icon {

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: rgba(0, 201, 133, 0.12);

    color: #d9a441;

    display: flex;

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

    font-size: 18px;
}

.contact-item span {

    display: block;

    color: #7f8b98;

    font-size: 12px;

    margin-bottom: 5px;
}

.contact-item strong {

    font-size: 14px;

    color: #07111f;
}


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

.footer-apply {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 14px 24px;

    border-radius: 50px;

    background: #07111f;

    color: #d9a441;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.footer-apply span {

    font-size: 20px;

    transition: 0.3s ease;
}

.footer-apply:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(0, 201, 133, 0.25);
}

.footer-apply:hover span {

    transform: translateX(5px);
}


/* =========================================
   DISCLAIMER
========================================= */

.footer-disclaimer {

    width: 90%;
    max-width: 1400px;

    margin: auto;

    padding: 30px 0;
}

.footer-disclaimer p {

    color: #6f7b88;

    font-size: 11px;

    line-height: 1.8;
}

.footer-disclaimer strong {

    color: #aeb8c4;
}


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

.footer-bottom {

    width: 90%;
    max-width: 1400px;

    margin: auto;

    padding: 25px 0;

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

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {

    color: #6f7b88;

    font-size: 12px;
}

.footer-bottom div {

    display: flex;

    gap: 25px;
}

.footer-bottom a {

    color: #7f8b98;

    font-size: 12px;

    text-decoration: none;
}

.footer-bottom a:hover {

    color: #00c985;
}


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

@media (max-width: 900px) {

    .footer-container {

        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }

    .footer-contact {

        flex-wrap: wrap;
    }

}


@media (max-width: 600px) {

    .footer-container {

        grid-template-columns: 1fr;

        padding: 60px 0;
    }

    .footer-contact {

        align-items: flex-start;

        flex-direction: column;
    }

    .footer-apply {

        width: 100%;

        justify-content: center;
    }

    .footer-bottom {

        flex-direction: column;

        text-align: center;
    }

    .footer-bottom div {

        flex-wrap: wrap;

        justify-content: center;
    }

}

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

@media(max-width: 900px) {

    .nav-menu {

        position: absolute;

        top: 75px;

        left: 25px;

        right: 25px;

        background: var(--dark);

        padding: 20px;

        display: none;

        flex-direction: column;

        align-items: flex-start;

    }


    .nav-menu.show {

        display: flex;

    }


    .menu-toggle {

        display: block;

    }


    .nav-btn {

        display: none;

    }


    .hero-container {

        grid-template-columns: 1fr;

    }


    .hero-visual {

        display: none;

    }


    .loan-slide.active {

        grid-template-columns: 1fr;

    }


    .slide-image {

        min-height: 230px;

    }


    .product-grid {

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

    }


    .why-grid {

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

    }


    .featured-loan {

        grid-template-columns: 1fr;

    }


    .featured-image {

        min-height: 400px;

    }


    .emi-section {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .emi-content {

        margin-left: 0;

        max-width: none;

    }


    .stats-section {

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

        gap: 40px;

    }


    .faq-section {

        grid-template-columns: 1fr;

    }


    .faq-heading {

        margin-left: 0;

    }


    .footer-container {

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

    }

}


@media(max-width: 600px) {

    .nav-container {

        padding: 20px;

    }


    .hero-container {

        padding: 105px 20px 45px;

    }


    .hero {

        min-height: auto;

    }


    .hero-container {

        min-height: auto;

    }


    .headline-wrapper {

        min-height: 190px;

    }


    .headline {

        font-size: 38px;

    }


    .hero-trust {

        gap: 18px;

    }


    .hero-trust strong {

        font-size: 16px;

    }


    .hero-trust span {

        font-size: 8px;

    }


    .rate-label {

        padding: 0 15px;

    }


    .slider-container {

        width: 94%;

    }


    .slide-content {

        padding: 35px 25px 50px;

    }


    .slide-content h2 {

        font-size: 30px;

    }


    .products-top {

        padding: 70px 20px 130px;

    }


    .products-bottom {

        padding: 0 20px 70px;

    }


    .product-grid {

        grid-template-columns: 1fr;

    }


    .product-card {

        min-height: 280px;

    }


    .journey {

        grid-template-columns: 1fr;

        gap: 50px;

        margin-top: 60px;

    }


    .journey-line {

        width: 1px;

        height: calc(100% - 70px);

        top: 35px;

        bottom: 35px;

        left: 50%;

        right: auto;

    }


    .journey-step {

        background: var(--dark);

    }


    .featured-content {

        padding: 55px 25px;

    }


    .highlights {

        grid-template-columns: 1fr;

    }


    .why-section {

        padding: 80px 20px;

    }


    .why-grid {

        grid-template-columns: 1fr;

    }


    .why-item {

        border-left: none;

        border-bottom: 1px solid #eee;

        padding: 30px 0;

    }


    .emi-section {

        padding: 70px 20px;

    }


    .emi-circle {

        width: 220px;

        height: 220px;

    }


    .stats-section {

        grid-template-columns: 1fr 1fr;

        padding: 60px 20px;

    }


    .stat strong {

        font-size: 30px;

    }


    .faq-section {

        padding: 80px 20px;

    }


    .footer-container {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .footer-bottom {

        flex-direction: column;

    }

}