/*=====================
GLOBAL
======================*/

:root {

    --primary: 140 70% 45%;
    --accent: 250 100% 60%;

    --text: #15213A;
    --border: #E8E8E8;
    --bg: #ffffff;

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {

    font-family: Inter, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);

}

ul {

    list-style: none;

}

a {

    text-decoration: none;
    color: inherit;

}

img {

    max-width: 100%;
    display: block;

}

.container {

    width: 100%;
    max-width: 1400px;

    margin: auto;

    padding: 0 32px;

}

.text-primary {

    color: hsl(var(--primary));

}

.font-serif-italic {

    font-family: "Instrument Serif", serif;

}


/*=====================
NAVBAR
======================*/


.navbar {

    position: sticky;
    top: 0;

    z-index: 999;

    background: rgba(255, 255, 255, .70);

    backdrop-filter: blur(24px);

    border-bottom: 1px solid rgba(0, 0, 0, .05);

}

.nav-wrapper {

    height: 92px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* Logo */


.logo {

    display: flex;

    align-items: center;

    gap: 10px;

}


.logo img {
    border-radius: 14px;
    object-fit: cover;
    max-width: 110px;

}


.logo-content h3 {

    font-size: 14px;

    font-weight: 700;

    line-height: 1;

}


.logo-content p {

    font-size: 8px;
    letter-spacing: 4px;
    margin-top: 6px;
    color: #777;

}



/* Navigation */


.nav-menu ul {

    display: flex;

    align-items: center;

    gap: 40px;

}


.nav-menu a {

    font-size: 15px;

    font-weight: 500;

    transition: .3s;

    color: #344054;

}

.nav-menu a:hover {

    color: hsl(var(--primary));

}



/* Right */


.nav-right {

    display: flex;

    align-items: center;

    gap: 28px;

}


.signin-btn {

    font-size: 15px;

    font-weight: 600;

}


.apply-btn {

    padding: 16px 28px;

    border-radius: 18px;

    background: #1BBB53;

    font-size: 16px;

    font-weight: 600;

    color: #fff;

    transition: .4s;

}

.apply-btn:hover {

    transform: translateY(-3px);

}


.menu-toggle {

    display: none;

    background: none;

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 24px;

    height: 2px;

    margin: 5px;

    background: #000;

}


.mobile-menu {

    display: none;

    padding: 20px;

    border-top: 1px solid var(--border);

}

.mobile-menu ul li {

    margin-bottom: 15px;

}

/*=====================
HERO
======================*/

.hero-section {

    padding: 70px 0 100px;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(243, 252, 245, 1) 100%);

}


/* Grid */

.hero-grid {

    display: grid;
    grid-template-columns: 1.1fr .9fr;

    gap: 70px;

    align-items: center;

}


/* Badge */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 12px 20px;

    border-radius: 50px;

    border: 1px solid rgba(0, 0, 0, .07);

    background: rgba(255, 255, 255, .8);

    margin-bottom: 35px;

    font-size: 12px;

    font-weight: 500;

    color: #5B6478;

}

.badge-dot {

    width: 8px;
    height: 8px;

    background: #1EC25B;

    border-radius: 50%;

    animation: pulse 2s infinite;

}


/* Heading */

.hero-title {

    font-size: 65px;

    line-height: 0.85;

    font-weight: 700;

    letter-spacing: -4px;

    color: #081B56;

    margin-bottom: 20px;

}

.hero-title .font-serif-italic {

    display: block;
    font-style: italic;

    font-size: 70px;

    font-weight: 0500;

    margin-top: 8px;

}


/* Paragraph */

.hero-text {

    font-size: 18px;

    line-height: 1.6;

    color: #5C657C;

    max-width: 760px;

    margin-bottom: 45px;

}

.hero-text strong {

    color: #081B56;

}


/* Form Card */

.loan-card {

    background: #fff;

    padding: 25px;

    border-radius: 28px;

    border: 1px solid rgba(0, 0, 0, .06);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .05);

    margin-bottom: 45px;

}

.loan-card h5 {

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 15px;

    color: #6E7690;

}


.loan-fields {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-bottom: 15px;

}


.loan-fields select {

    height: 40px;

    border: 1px solid #E2E7F0;

    border-radius: 18px;

    padding: 0 12px;

    font-size: 14px;

    outline: none;

    font-family: inherit;

    color: #081B56;

    background: #fff;

    cursor: pointer;

}


.loan-fields select:focus {

    border: 2px solid #1EC25B;

}


.eligibility-btn {

    width: 100%;

    height: 45px;

    border-radius: 18px;

    background: #1EC25B;

    color: #fff;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: .4s;

    margin-bottom: 20px;

}

.eligibility-btn:hover {

    transform: translateY(-3px);

}


.loan-features {

    display: flex;

    gap: 20px;

    font-size: 15px;

    color: #6A7186;

}


/* Stats */

.hero-stats {

    display: flex;

    gap: 40px;

}

.stat-box h3 {

    font-size: 26px;

    color: #081B56;

    margin-bottom: 8px;

}

.stat-box p {

    font-size: 10px;

    letter-spacing: 2px;

    color: #7A8197;

}


/* Right */

.hero-image-wrapper {

    position: relative;

    border-radius: 42px;

    overflow: visible;

}


.hero-image-wrapper img {

    width: 100%;

    height: 720px;

    object-fit: cover;

    border-radius: 42px;

}


/* Floating cards */

.top-card {

    position: absolute;

    left: -40px;
    top: 60px;

    background: #fff;

    padding: 20px;

    width: 220px;

    border-radius: 24px;

    z-index: 5;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, .08);

    animation: float 6s infinite ease-in-out;

}

.top-card span {

    font-size: 10px;

    letter-spacing: 1px;

    color: #81879B;

}

.top-card h3 {

    font-size: 26px;

    margin: 8px 0;

    color: #081B56;

}

.top-card h3 span {

    font-size: 28px;

}

.top-card p {

    color: #1EC25B;
    font-size: 13px;

    font-weight: 600;

}


/* rate */

.rate-card {

    position: absolute;

    right: -30px;

    bottom: 120px;

    background: #081B56;

    padding: 28px;

    border-radius: 22px;

    width: 220px;

    color: #fff;
    font-size: 12px;

    animation: float 6s infinite ease-in-out;

    animation-delay: 1s;

}

.rate-card h3 {

    font-size: 26px;

    margin: 10px 0;

    color: #1EC25B;

}


/* bottom */

.bottom-card {

    position: absolute;

    left: 30px;

    bottom: 25px;

    background: #fff;

    border-radius: 24px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 15px;

    width: 88%;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, .08);

}

.success-icon {

    width: 25px;
    height: 25px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #DDFBE8;

    color: #1EC25B;

    font-weight: bold;

}


/* Animation */

@keyframes pulse {

    0% {

        opacity: 1;

    }

    50% {

        opacity: .5;

    }

    100% {

        opacity: 1;

    }

}


@keyframes float {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}

/*=====================
LENDERS SECTION
======================*/

.lenders-section {

    padding: 30px 0;

    overflow: hidden;

    border-top: 1px solid rgba(0, 0, 0, .06);
    border-bottom: 1px solid rgba(0, 0, 0, .06);

    background: rgba(255, 255, 255, .65);

    backdrop-filter: blur(8px);

}

.lenders-title {

    font-size: 10px;

    letter-spacing: 1px;

    margin-bottom: 35px;

    font-weight: 600;

    color: #667085;

}


.lenders-slider {

    overflow: hidden;

    width: 100%;

}


.lenders-track {

    display: flex;

    gap: 50px;

    width: max-content;

    animation: marquee 30s linear infinite;

}


.lenders-track span {

    font-size: 15px;

    font-weight: 700;

    white-space: nowrap;

    color: rgba(24, 34, 60, .35);

    transition: .4s;

}


.lenders-track span:hover {

    color: hsl(var(--primary));

}


/* marquee animation */

@keyframes marquee {

    0% {

        transform: translateX(0);

    }

    100% {

        transform: translateX(-50%);

    }

}

/*=====================
COMPARISON SECTION
======================*/

.difference-section {

    padding: 110px 0;

}

.section-heading {

    margin-bottom: 30px;

    max-width: 850px;

}

.section-tag {

    display: block;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 25px;

    color: #1EC25B;

}

.section-heading h2 {

    font-size: 64px;

    line-height: 0.85;

    font-weight: 700;

    letter-spacing: -3px;

    color: #081B56;

    margin-bottom: 25px;

}

.section-heading .font-serif-italic {

    font-size: 64px;

    font-style: italic;

    font-weight: 500;

    display: block;

    margin-top: 10px;

}

.section-heading p {

    font-size: 18px;

    line-height: 1.6;

    color: #697388;

}


/* Table */

.comparison-table-wrapper {

    overflow: auto;

    border-radius: 32px;

    border: 1px solid #E5E9F0;

}


.comparison-table {

    width: 100%;

    border-collapse: collapse;

    background: #fff;

    min-width: 1000px;

}


.comparison-table th {

    padding: 18px;

    text-align: left;

    font-size: 12px;

    letter-spacing: 1px;

    font-weight: 600;

    color: #55627E;

    background: #F7F9FC;

    border-bottom: 1px solid #E5E9F0;

}


.active-column {

    background: #1EC25B !important;

    color: #fff !important;

}


.comparison-table td {

    padding: 20px;

    font-size: 16px;

    font-weight: 500;

    border-bottom: 1px solid #E5E9F0;

    color: #506079;

}


.comparison-table tbody tr:last-child td {

    border-bottom: none;

}


.comparison-table td:first-child {

    font-size: 18px;

    font-weight: 600;

    color: #081B56;

    width: 25%;

}


.highlight-cell {

    background: #F3FBF6;

    font-weight: 600;

    color: #081B56 !important;

}

/*=====================
FINANCE SECTION
======================*/

.finance-section {

    padding: 110px 0;

}


.finance-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

}


.finance-card {

    padding: 35px;

    border: 1px solid #E3E7EF;

    border-radius: 28px;

    background: #fff;

    transition: .5s;

    overflow: hidden;

    position: relative;

}


.finance-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);

}


.finance-icon {

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: #E7F9EE;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    font-size: 20px;

}


.card-number {

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #7D859B;

    display: block;

    margin-bottom: 25px;

}


.finance-card h3 {

    font-size: 22px;

    margin-bottom: 15px;

    color: #081B56;

}


.finance-card p {

    font-size: 15px;

    line-height: 1.8;

    color: #667085;

    margin-bottom: 20px;

}


.finance-tags {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

}


.finance-tags span {

    padding: 6px 10px;

    border-radius: 50px;

    background: #F3F5FA;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1px;

    color: #081B56;

}


.card-image {

    height: 210px;

    overflow: hidden;

    margin: -35px -35px 25px;

}


.card-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .7s;

}


.finance-card:hover img {

    transform: scale(1.08);

}

/*=====================
STUDY ABROAD
======================*/

.abroad-section {

    padding: 100px 0;

}

.abroad-header {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

    margin-bottom: 50px;

}

.abroad-content p {

    font-size: 17px;

    line-height: 1.7;

    color: #667085;

    max-width: 650px;

}


.country-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;

}


.country-card {

    position: relative;

    padding: 25px;

    border: 1px solid #E3E8F0;

    border-radius: 28px;

    background: #fff;

    overflow: hidden;

    transition: .4s;

}

.country-card:hover {

    transform: translateY(-8px);

    border-color: #1EC25B;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);

}

.country-card::after {

    content: "↗";

    position: absolute;

    top: 25px;
    right: 25px;

    font-size: 20px;

    opacity: 0;

    color: #1EC25B;

    transition: .3s;

}

.country-card:hover::after {

    opacity: 1;

}


.country-flag {

    font-size: 32px;

    margin-bottom: 18px;

}


.country-card h3 {

    font-size: 18px;

    margin-bottom: 4px;

    color: #081B56;

}


.country-card p {

    font-size: 14px;

    color: #697388;

    margin-bottom: 20px;

}


.country-divider {

    height: 1px;

    background: #E4E7EF;

    margin-bottom: 18px;

}


.country-card span {

    display: block;

    font-size: 8px;

    letter-spacing: 2px;

    margin-bottom: 8px;

    color: #7E879E;

}


.country-card h4 {

    font-size: 12px;

    font-weight: 700;

    color: #1EC25B;

}

/*=====================
ARCHITECTURE
======================*/

.architecture-section {

    position: relative;

    padding: 120px 0;

    background: #081B56;

    color: #fff;

    overflow: hidden;

}


/* grid background */

.grid-pattern {

    position: absolute;

    inset: 0;

    opacity: .08;

    background-image:
        linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);

    background-size: 48px 48px;

}


.architecture-section .container {

    position: relative;
    z-index: 2;

}


.architecture-header {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    margin-bottom: 70px;

}


.architecture-section h2 {

    color: #fff;

}

.architecture-text p {

    font-size: 16px;

    line-height: 1.7;

    color: rgba(255, 255, 255, .75);

}


/* Main */

.architecture-grid {

    display: grid;

    grid-template-columns: 520px 1fr;

    gap: 40px;

    align-items: start;

}


/* Left image */

.architecture-image {

    position: relative;

    border-radius: 35px;

    overflow: hidden;

    height: 760px;

}

.architecture-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;

}


/* floating card */

.cost-card {

    position: absolute;

    bottom: 35px;
    right: 10px;

    background: #1EC25B;

    padding: 25px;

    width: 230px;

    border-radius: 24px;

    box-shadow:
        0 0 80px rgba(30, 194, 91, .45);

}

.cost-card span {

    font-size: 12px;

    letter-spacing: 2px;

    display: block;

    margin-bottom: 8px;

}

.cost-card h3 {

    font-size: 45px;

    line-height: 1;

    margin-bottom: 10px;

}


.cost-card p {

    font-size: 13px;

}


/* Cards */

.architecture-cards {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

}

.architecture-card {

    position: relative;

    padding: 35px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 24px;

    backdrop-filter: blur(20px);

    transition: .4s;

}

.architecture-card:hover {

    transform: translateY(-5px);

    border-color: #1EC25B;

}


.active-card {

    border-color: #1EC25B;

}


.card-count {

    display: block;

    font-size: 12px;

    color: #1EC25B;

    margin-bottom: 25px;

    font-weight: 600;

}


.card-dot {

    position: absolute;

    top: 35px;
    right: 30px;

    width: 10px;
    height: 10px;

    background: #1EC25B;

    border-radius: 50%;

}


.architecture-card h3 {

    font-size: 20px;

    margin-bottom: 25px;

}


.architecture-card ul {

    margin-bottom: 15px;

}

.architecture-card li {

    margin-bottom: 14px;

    font-size: 15px;

    color: rgba(255, 255, 255, .8);

}


.architecture-card p {

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .1);

    font-size: 13px;

    font-style: italic;

    color: rgba(255, 255, 255, .6);

}

/*======================
SMART EMI
======================*/

.emi-section {

    padding: 100px 0;

}

.emi-wrapper {

    display: grid;

    grid-template-columns: 2fr 1.2fr;

    gap: 30px;

    margin-top: 50px;

}

.emi-controls {

    padding: 35px;

    border: 1px solid #E4E8F0;

    border-radius: 30px;

    background: #fff;

}

.slider-box {

    margin-bottom: 50px;

}

.slider-top {

    display: flex;

    justify-content: space-between;

    margin-bottom: 15px;

}

.slider-top label {

    font-weight: 600;

    font-size: 20px;

}

.slider-top span {

    font-size: 20px;

    font-weight: 700;

    color: #1EC25B;

}

.slider-range {

    display: flex;

    justify-content: space-between;

    margin-top: 10px;

    font-size: 14px;

    color: #667085;

}

input[type=range] {

    width: 100%;

    height: 8px;

    appearance: none;

    background: #E5EAF1;

    border-radius: 30px;

}

input[type=range]::-webkit-slider-thumb {

    appearance: none;

    width: 24px;
    height: 24px;

    background: #fff;

    border: 3px solid #081B56;

    border-radius: 50%;

    cursor: pointer;

}

.emi-result {

    padding: 35px;

    border-radius: 30px;

    background: #081B56;

    color: #fff;

}

.emi-label {

    font-size: 12px;

    letter-spacing: 2px;

    opacity: .6;

    margin-bottom: 15px;

}

#emiAmount {

    font-size: 65px;

    color: #1EC25B;

}

.progress {

    display: flex;

    height: 12px;

    border-radius: 50px;

    overflow: hidden;

    background: rgba(255, 255, 255, .15);

    margin: 40px 0 10px;

}

.principal-bar {

    background: #1EC25B;

}

.interest-bar {

    background: rgba(255, 255, 255, .4);

}

.progress-label {

    display: flex;

    justify-content: space-between;

    font-size: 13px;

    margin-bottom: 40px;

}

.result-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-bottom: 30px;

}

.result-grid div {

    border: 1px solid rgba(255, 255, 255, .1);

    padding: 20px;

    border-radius: 15px;

}

.result-grid h4 {

    font-size: 28px;

    margin-bottom: 8px;

}

.result-grid p {

    font-size: 11px;

    opacity: .7;

    letter-spacing: 2px;

}

.yearly-box {

    margin-top: 30px;

    padding: 35px;

    border-radius: 30px;

    background: #fff;

    border: 1px solid #E4E8F0;

}

.year-top {

    display: flex;

    justify-content: space-between;

    margin-bottom: 35px;

}

.green-dot,
.blue-dot {

    width: 12px;
    height: 12px;

    display: inline-block;

    border-radius: 50%;

    margin: 0 5px;

}

.green-dot {

    background: #1EC25B;

}

.blue-dot {

    background: #081B56;

}

#yearlyBreakdown {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));

    gap: 15px;

}

.year-card {

    display: flex;

    flex-direction: column;

    align-items: center;

}

.year-bar {
    height: 180px;
    display: flex;
    flex-direction: column-reverse;
    background: #EEF2F7;
    overflow: hidden;
    border-radius: 14px;
}

.principal-part {
    background: #1EC25B;
    transition: .4s;
}

.interest-part {
    background: #081B56;
    transition: .4s;
}

.principal-bar,
.interest-bar {
    transition: .4s;
}

.year-card span {

    margin-top: 10px;

}

/*======================
STATS SECTION
======================*/

.stats-section {

    position: relative;

    padding: 90px 0;

    background: #081B56;

    overflow: hidden;

}


.stats-section .grid-pattern {

    position: absolute;

    inset: 0;

    opacity: .08;

    background-image:
        linear-gradient(rgba(255, 255, 255, .12) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(255, 255, 255, .12) 1px,
            transparent 1px);

    background-size: 48px 48px;

}



.stats-section .container {

    position: relative;

    z-index: 2;

}


/* Stats */

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    padding-bottom: 60px;

    border-bottom: 1px solid rgba(255, 255, 255, .12);

}


.stat-item {

    padding-left: 18px;

    border-left: 2px solid #1EC25B;

}


.stat-item h2 {

    font-size: 40px;

    font-weight: 700;

    line-height: 1;

    margin-bottom: 12px;

    color: #1EC25B;

}


.stat-item h4 {

    font-size: 16px;

    margin-bottom: 8px;

    color: #fff;

}

.stat-item p {

    font-size: 14px;

    color: rgba(255, 255, 255, .55);

}


/* Featured */

.featured-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 40px;

    gap: 40px;

}


.featured-title {

    font-size: 13px;

    letter-spacing: 5px;

    font-weight: 600;

    color: rgba(255, 255, 255, .6);

    white-space: nowrap;

}


.featured-logos {

    display: flex;

    align-items: center;

    gap: 50px;

    flex-wrap: wrap;

}


.featured-logos a {

    font-size: 24px;

    font-weight: 700;

    color: rgba(255, 255, 255, .35);

    transition: .35s;

}

.featured-logos a:hover {

    color: #1EC25B;

}

/*======================
EXECUTION MODEL
======================*/

.execution-section {

    padding: 110px 0;

    background: #fff;

}


.execution-header {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    margin-bottom: 70px;

}


.execution-content p {

    font-size: 18px;

    line-height: 1.7;

    color: #667085;

    max-width: 600px;

}


/* cards */

.execution-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 30px;

}


.execution-card {

    position: relative;

    transition: .35s;

}

.execution-card:hover {

    transform: translateY(-8px);

}


.step-number {

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #1EC25B;

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: 700;

    font-size: 15px;

    margin-bottom: 25px;

    color: #fff;

    box-shadow:
        0 10px 30px rgba(30, 194, 91, .25);

}


.execution-card h3 {

    font-size: 20px;

    line-height: 1.3;

    margin-bottom: 15px;

    color: #081B56;

}


.execution-card p {

    font-size: 14px;

    line-height: 1.7;

    color: #667085;

}

/*======================
TESTIMONIAL
======================*/

.testimonial-section {

    padding: 110px 0;

    background: #fff;

}


.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 60px;

}


.testimonial-card {

    padding: 35px;

    border: 1px solid #E5EAF0;

    border-radius: 30px;

    background: #fff;

    transition: .35s;

    box-shadow:
        0 4px 24px -8px rgba(0, 0, 0, .06);

}

.testimonial-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 60px -20px rgba(0, 0, 0, .15);

}


.stars {

    font-size: 20px;

    letter-spacing: 3px;

    margin-bottom: 20px;

    color: #1EC25B;

}


.testimonial-content {

    font-size: 16px;

    line-height: 1.8;

    color: #081B56;

    padding-bottom: 35px;

    margin-bottom: 25px;

    border-bottom: 1px solid #E4E7EE;

}


.testimonial-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

}


.student {

    display: flex;

    align-items: center;

    gap: 14px;

}


.student img {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    object-fit: cover;

}


.student h4 {

    font-size: 16px;

    margin-bottom: 6px;

    color: #081B56;

}

.student p {

    font-size: 12px;

    color: #667085;

}


.funded {

    text-align: right;

}

.funded span {

    font-size: 12px;

    display: block;

    margin-bottom: 5px;

    color: #667085;

    letter-spacing: 2px;

}

.funded h5 {

    font-size: 15px;

    color: #1EC25B;

}

/*======================
CTA SECTION
======================*/

.cta-section {

    padding: 100px 0;

}


.cta-wrapper {

    position: relative;

    border-radius: 40px;

    overflow: hidden;

    height: 520px;

}


/* background image */

.cta-image {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

}


/* dark overlay */

.cta-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(8, 27, 86, .95),
            rgba(8, 27, 86, .7),
            rgba(8, 27, 86, .3));

    z-index: 2;

}


/* grid */

.cta-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .08) 1px,
            transparent 1px);

    background-size: 48px 48px;

    z-index: 3;

    opacity: .8;

}


/* content */

.cta-content {

    position: relative;

    z-index: 5;

    height: 100%;

    display: flex;

    justify-content: center;

    flex-direction: column;

    padding: 90px;

    max-width: 650px;

}


.cta-content h2 {

    font-size: 56px;

    line-height: 1.05;

    color: #fff;

    margin: 20px 0;

}


.cta-content p {

    font-size: 14px;

    line-height: 1.7;

    color: rgba(255, 255, 255, .8);

    margin-bottom: 40px;

}


.cta-buttons {

    display: flex;

    gap: 20px;

}


.btn-primary {

    padding: 20px 40px;

    background: #1EC25B;

    color: #fff;

    font-size: 12px;

    font-weight: 600;

    border-radius: 16px;

    display: flex;

    align-items: center;

    gap: 12px;

    transition: .4s;

}

.btn-primary:hover {

    transform: translateY(-5px);

}


.btn-primary svg {

    stroke: #fff;

    fill: none;

    stroke-width: 2;

}


.btn-outline {

    padding: 20px 40px;

    border: 1px solid rgba(255, 255, 255, .25);

    border-radius: 16px;

    font-size: 12px;

    font-weight: 600;

    color: #fff;

    backdrop-filter: blur(20px);

    transition: .4s;

}

.btn-outline:hover {

    background: rgba(255, 255, 255, .08);

}

/*=================
FAQ SECTION
==================*/

.faq-section {

    padding: 100px 0;

}

.faq-wrapper {

    margin-top: 60px;

    max-width: 900px;

}


.faq-item {

    border: 1px solid #E4E8F0;

    border-radius: 24px;

    margin-bottom: 15px;

    overflow: hidden;

    background: #fff;

    transition: .4s;

}


.faq-item.active {

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);

}


.faq-question {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 30px;

    cursor: pointer;

    font-size: 22px;

    font-weight: 600;

    color: #081B56;

}


.faq-question svg {

    width: 18px;

    height: 18px;

    fill: none;

    stroke: #081B56;

    stroke-width: 2;

    transition: .4s;

    flex-shrink: 0;

}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    padding: 0 30px;

    transition:
        max-height .5s ease,
        padding .5s ease;

}


.faq-answer p {

    font-size: 16px;

    line-height: 1.8;

    color: #667085;

    padding-bottom: 25px;

}


.faq-item.active .faq-answer {

    max-height: 200px;

    padding-top: 0;

    padding-bottom: 15px;

}


.faq-item.active svg {

    transform: rotate(180deg);

}


/*=====================
FOOTER
=====================*/

/*==================
UPDATED FOOTER
===================*/

.hoc-footer {

    background: #071B56;

    padding: 90px 0 30px;

    color: #fff;

}


/* center */

.footer-center {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    padding-bottom: 60px;

    border-bottom: 1px solid rgba(255, 255, 255, .1);

}


.footer-logo {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;

}


.footer-logo img {
    width: 90px;
    object-fit: cover;
    border-radius: 14px;
    background: #fff;

}


.footer-logo h3 {

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 6px;

}


.footer-logo span {

    color: #1EC25B;

}


.footer-logo p {

    font-size: 13px;

    letter-spacing: 4px;

    color: rgba(255, 255, 255, .75);

}


.footer-desc {

    max-width: 650px;

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255, 255, 255, .8);

}



/* bottom */

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 30px;

}


.footer-bottom p {

    font-size: 12px;

    color: rgba(255, 255, 255, .7);

}


.footer-policy a {

    color: rgba(255, 255, 255, .75);

    font-size: 12px;

    text-decoration: none;

    transition: .3s;

}


.footer-policy a:hover {

    color: #1EC25B;

}

.footer-note {

    font-size: 12px;

    margin-top: 8px;

    color: rgba(255, 255, 255, .6);

}


@media(max-width:768px) {

    .footer-note {

        margin-top: 12px;

    }

}


/* responsive */

@media(max-width:768px) {

    .footer-bottom {

        flex-direction: column;

        gap: 15px;

        text-align: center;

    }

    .footer-logo {

        flex-direction: column;

    }

    .footer-logo h3 {

        font-size: 24px;

    }

    .footer-desc {

        font-size: 16px;

    }

}

.calculator-container {
    max-width: 1240px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.top-section {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 30px;
}

@media (max-width: 900px) {
    .top-section {
        grid-template-columns: 1fr;
    }
}

/* Sliders Box Styling */
.sliders-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-label {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

.value-display {
    font-size: 20px;
    font-weight: 700;
    color: #10b981;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 10px;
    background: #0f172a;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #10b981;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.limit-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
}

/* Right Summary Card */
.summary-card {
    background: #0b1528;
    border-radius: 24px;
    padding: 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(11, 21, 40, 0.12);
}

.emi-header {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.emi-amount {
    font-size: 52px;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.progress-container {
    margin-bottom: 35px;
}

.split-bar {
    width: 100%;
    height: 8px;
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

.principal-fill {
    background: #10b981;
    width: 30.45%;
    height: 100%;
    transition: width 0.3s;
}

.bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 12px;
}

.dot-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-principal::before {
    background: #10b981;
}

.dot-interest::before {
    background: #64748b;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.info-box {
    border: 1px solid #1e293b;
    border-radius: 14px;
    padding: 18px 15px;
    background: rgba(255, 255, 255, 0.01);
}

.info-val {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.info-lbl {
    font-size: 11px;
    color: #475569;
    font-weight: 600;
    text-transform: uppercase;
}

.action-btn {
    background: #10b981;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Bottom Section: Graph Layout */
.breakdown-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.graph-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.graph-legends {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #475569;
}

.chart-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 240px;
    gap: 12px;
}

.bar-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
    gap: 12px;
}

.stacked-bar {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
    background: #0b1528;
}

.bar-p-fill {
    background: #10b981;
    transition: height 0.3s;
}

.bar-i-fill {
    background: #0b1528;
    flex-grow: 1;
}

.x-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
}
/* Overlay */
.finance-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(3,15,35,.65);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
    padding:20px;
}

/* Popup Box */
.finance-popup{
    width:100%;
    max-width:720px;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(25px);
    -webkit-backdrop-filter:blur(25px);
    border:1px solid rgba(255,255,255,.6);
    border-radius:28px;
    padding:40px;
    position:relative;
    box-shadow:
        0 25px 80px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.7);
    animation: popupFade .35s ease;
}

@keyframes popupFade{
    from{
        opacity:0;
        transform:translateY(30px) scale(.95);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

/* Close */
.close-popup{
    position:absolute;
    right:22px;
    top:18px;
    font-size:34px;
    cursor:pointer;
    color:#0b2559;
    transition:.3s;
}

.close-popup:hover{
    transform:rotate(90deg);
}

/* Header */
.popup-header{
    margin-bottom:28px;
}

.popup-badge{
    display:inline-block;
    background:rgba(22,163,74,.12);
    color:#16a34a;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.popup-header h2{
    margin:0;
    color:#082452;
    font-size:42px;
    line-height:1.1;
    font-weight:700;
    letter-spacing:-1px;
}

.popup-header p{
    margin-top:14px;
    color:#5d6678;
    font-size:17px;
    line-height:1.7;
    max-width:600px;
}

/* Inputs */
.form-group{
    margin-bottom:16px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:18px 20px;
    border:1px solid #d9e1ef;
    border-radius:16px;
    background:#fff;
    font-size:15px;
    transition:.3s;
    box-sizing:border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#16a34a;
    box-shadow:0 0 0 4px rgba(22,163,74,.12);
}

/* Submit Button */
.submit-btn{
    width:100%;
    border:none;
    padding:18px;
    border-radius:16px;
    background:linear-gradient(
        135deg,
        #16a34a,
        #22c55e
    );
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 35px rgba(34,197,94,.25);
}

/* Success Box */
#successBox{
    text-align:center;
    padding:20px 0;
}

#successBox h3{
    color:#082452;
    font-size:32px;
    margin-bottom:10px;
}

#successBox p{
    color:#667085;
    line-height:1.7;
    margin-bottom:20px;
}

#whatsappBtn{
    display:inline-block;
    padding:16px 28px;
    border-radius:14px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    font-weight:700;
}
@media(max-width:767px){
.logo img {
    border-radius: 14px;
    object-fit: cover;
    max-width: 90px !important;
    width:100% !important;
    height: 100% !important;
}
.hero-stats {
    display: block;
}


.hero-stats .stat-box {
    width: 32%;
    display: inline-block !important;
    vertical-align: top;
            text-align: center;
}
.difference-section {
    padding: 40px 0;
}
.finance-section {
    padding: 40px 0;
}
.section-heading {
    margin: 0;
}
.abroad-header {
    grid-template-columns: 1fr;
    gap: 0;
}
.abroad-header {
    margin-bottom: 20px;
}
.abroad-section {
    padding: 40px 0;
}
.architecture-header {
    grid-template-columns: 1fr;
    gap: 0;
}
.architecture-header {
    margin-bottom: 30px;
}
.emi-section {
    padding: 40px 0;
}
.execution-header {
    grid-template-columns: 1fr;
    gap: 0;
}
.execution-header {
    margin-bottom: 30px;
}
.section-heading {
    margin-bottom: 0;
}
.testimonial-section {
    padding: 40px 0;
}
.cta-section {
    padding: 40px 0;
}
.faq-section {
    padding: 40px 0;
}
.hoc-footer {
    padding: 70px 0 30px;
}
.stat-box h3 {
    font-size: 18px;;
}
}
@media(max-width: 540px){
.chart-wrapper {
    width: 300px;
    overflow-x: scroll;
}
.summary-card {
    width: 340px;
    overflow-x: scroll;
}
.execution-section {
    padding: 40px 0;
}
}