:root {
    --navy: #0F2A44;
    --teal: #2FA79E;
    --gold: #D4A017;
    --light-bg: #F6F8FB;
    --navy-light: #1a3d5c;
    --border: #e5e9f0;
    --white: #ffffff;
    --muted: #6c757d;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #14293d;
    background: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

a {
    color: var(--navy);
    text-decoration: none;
}

.btn {
    border-radius: 50px;
    font-size: 1rem;
}

.text-accent {
    color: var(--gold);
}

.text-secondary {
    color: var(--teal) !important;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

/* Top Bar */
.top-bar {
    background: var(--navy);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 4px 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    line-height: 36px;
}

    .btn-gold:hover {
        background: #c4920f;
        color: #fff;
    }

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar-brand img {
    height: 70px;
}

.nav-link {
    font-weight: 500;
    color: var(--navy) !important;
    font-size: 14px;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all 0.2s;
}

    .nav-link:hover {
        color: var(--teal) !important;
        background: var(--light-bg);
    }

.btn-teal {
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
}

    .btn-teal:hover {
        background: #269088;
        color: #fff;
    }

.btn-outline-teal {
    border: 2px solid var(--teal);
    color: var(--teal);
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
}

    .btn-outline-teal:hover {
        background: var(--teal);
        color: #fff;
    }

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: var(--teal);
        opacity: 0.08;
        filter: blur(80px);
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: var(--gold);
        opacity: 0.08;
        filter: blur(80px);
    }

    .hero h1 {
        font-size: 3.75rem;
        font-weight: 800;
        line-height: 1.15;
    }

.text-gold {
    color: var(--gold);
}

.hero .badge-trust {
    background: rgba(47, 167, 158, 0.2);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: background 0.3s;
}

    .stat-card:hover {
        background: rgba(255, 255, 255, 0.12);
    }

    .stat-card .value {
        font-size: 2rem;
        font-weight: 800;
        color: var(--gold);
    }

    .stat-card .label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 4px;
    }

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
}

    .hero-features span {
        display: flex;
        align-items: center;
        gap: 6px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
    }

    .hero-features i {
        color: var(--gold);
    }

/* Section titles */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(47, 167, 158, 0.1);
    color: var(--teal);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-badge-gold {
    background: rgba(212, 160, 23, 0.1);
    color: var(--gold);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold), #e8b840);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Why Choose Us */
.why-section {
    background: #eef1f6;
    padding: 80px 0;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 24px -4px rgba(15, 42, 68, 0.08);
    transition: all 0.3s;
    height: 100%;
}

    .feature-card:hover {
        box-shadow: 0 12px 40px -8px rgba(15, 42, 68, 0.15);
        transform: translateY(-2px);
    }

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
    color: var(--gold);
}

/* How to Get Loan */
.howto-section {
    background: var(--navy);
    color: #fff;
    padding: 80px 0;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(47, 167, 158, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--teal);
    position: relative;
    transition: background 0.3s;
}

    .step-circle:hover {
        background: rgba(47, 167, 158, 0.3);
    }

.step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Products */
.products-section {
    padding: 80px 0;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 24px -4px rgba(15, 42, 68, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    height: 100%;
}

    .product-card:hover {
        box-shadow: 0 12px 40px -8px rgba(15, 42, 68, 0.15);
        transform: translateY(-4px);
        border-color: rgba(47, 167, 158, 0.3);
    }

.product-icon {
    /* width: 48px;
        height: 48px;
        background: rgba(47, 167, 158, 0.1);
        border-radius: 12px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    /* font-size: 22px; */
    color: var(--teal);
}

/* EMI Calculator */
.emi-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.emi-result {
    background: var(--navy);
    color: #fff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.emi-value {
    font-size: 3rem;
    font-weight: 800;
}

.emi-bar {
    height: 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    margin: 24px 0;
}

.emi-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 50px;
    transition: width 0.5s;
}

.emi-stat-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.form-range::-webkit-slider-thumb {
    background: var(--teal);
}

.form-range::-webkit-slider-runnable-track {
    background: #ddd;
}

/* Loan Application Form */
.apply-section {
    padding: 80px 0;
    background: #eef1f6;
}

.apply-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px -4px rgba(15, 42, 68, 0.08);
}

.btn-submit {
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    padding: 12px;
    font-size: 16px;
    width: 100%;
}

    .btn-submit:hover {
        background: #269088;
        color: #fff;
    }

/* Testimonials */
.testimonial-section {
    padding: 80px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px -4px rgba(15, 42, 68, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

    .testimonial-card:hover {
        box-shadow: 0 12px 40px -8px rgba(15, 42, 68, 0.15);
    }

    .testimonial-card .quote-icon {
        color: rgba(212, 160, 23, 0.3);
        font-size: 28px;
        margin-bottom: 12px;
    }

.stars {
    color: var(--gold);
    font-size: 14px;
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: var(--gold);
        opacity: 0.08;
        filter: blur(80px);
    }

/* Footer */
.site-footer {
    background: var(--navy);
    color: #fff;
}

.footer_top {
    background: #F6F8FB;
    padding: 60px 0 20px;
}

.site-footer h5 {
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}

.site-footer a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

    .site-footer a:hover {
        color: var(--gold);
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

    .footer-bottom a {
        color: rgba(255, 255, 255, 0.4)
    }

.footer_detail {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    line-height: 1.7;
}

    .footer_detail ul li a {
        font-size: 12px;
    }

    .footer_detail h5 {
        margin-bottom: 10px;
        font-size: 14px;
        color: var(--navy);
    }

.social-btn {
    display: flex;
    align-items: center;
}

    .social-btn a {
        color: #fff;
        border: 1px solid #fff;
        margin: 0 3px;
        align-items: center;
        font-size: 16px;
        display: flex;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 20px;
        background-color: #fff;
        transition: .3s ease-in-out;
    }

        .social-btn a.facebook {
            background: #3a589b;
            border-color: #3a589b
        }

        .social-btn a.instagram {
            background: linear-gradient(45deg, #f09433 0, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) #fff0;
            border-color: #e6683c
        }

        .social-btn a.youtube {
            background: red;
            border-color: red
        }

        .social-btn a.whatsapp {
            border-color: #079d3f;
            background: #079d3f
        }

        .social-btn a.linkedin {
            border-color: #0a66c2;
            background: #0a66c2
        }

        .social-btn a:hover {
            background-color: #c4822b;
            color: #fff;
            border-color: #c4822b
        }

        .social-btn a.facebook:hover {
            background-color: #fff;
            color: #3a589b;
            border-color: #fff
        }

        .social-btn a.instagram:hover {
            background: #fff;
            border-color: #f09433 !important
        }

        .social-btn a.youtube:hover {
            background-color: #fff;
            color: red;
            border-color: #fff
        }

        .social-btn a.whatsapp:hover {
            background-color: #fff;
            color: #079d3f;
            border-color: #fff
        }

        .social-btn a.linkedin:hover {
            background: #fff;
            color: #0a66c2;
            border-color: #fff
        }

        .social-btn a.instagram:hover .fa-instagram {
            background: linear-gradient(45deg, #f09433 0, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) #fff0;
            -webkit-background-clip: text;
            -webkit-text-fill-color: #fff0
        }

    .social-btn a {
        border-color: currentColor !important;
    }

.form-control,
.form-select {
    /* background: hsl(214 30% 97%); */

    border-radius: 5px;
    font-size: 14px;
    padding: 8px 15px;
}

    .form-control:focus-visible {
        border-color: var(--teal);
    }

    .form-control:focus, .form-select:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 3px rgba(47, 167, 158, .12) !important;
    }

.btn-sm {
    font-size: 14px;
    padding: 5px 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.note {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.btn-close {
    box-shadow: unset !important;
}

input:focus-visible {
    box-shadow: 0 0 0 3px rgba(47, 167, 158, .12) !important;
}

.emi-section input[type="range"] {
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #ff6a00 0%, #ff6a00 10%, #e0e0e0 10%, #e0e0e0 100%);
    border-radius: 5px;
    appearance: none;
}

    /* Slider thumb */
    .emi-section input::-webkit-slider-thumb {
        -webkit-appearance: none;
        background: #f5f7fa;
        /* Change this color */
        height: 18px;
        width: 18px;
        border-radius: 50%;
        margin-top: -3px;
        cursor: pointer;
        border: 2px solid #0f2b43;
    }

    /* Firefox */
    .emi-section input::-moz-range-thumb {
        background: #f5f7fa;
        height: 18px;
        width: 18px;
        border-radius: 50%;
        border: 2px solid #0f2b43;
    }

.navbar-toggler {
    border: none;
    box-shadow: unset !important;
    padding: 0;
}


.hero_new {
    height: 100%;
    width: 100%;
    padding-top: 55px;
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: #F6F8FB;
}

    /* .hero_new::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
        background: #F6F8FB;
        z-index: -1;
    } */

    .hero_new .hero__animation {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes previewShapeX {
    0% {
        transform: translateX(-15px);
    }

    50% {
        transform: translateX(15px);
    }

    100% {
        transform: translateX(-15px);
    }
}

@keyframes rotate360deg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinSmall {
    0% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(-5deg);
    }
}

.hero_new .hero__animation img:first-child {
    position: absolute;
    left: 24%;
    top: 16%;
    animation: pulse 7s infinite;
    width: 2%;
}

.hero_new .hero__animation img:nth-child(2) {
    position: absolute;
    left: 3%;
    bottom: 12%;
    animation: previewShapeX 5s infinite;
}

.hero_new .hero__animation img:nth-child(3) {
    position: absolute;
    left: 50%;
    bottom: 17%;
    animation: pulse 7s linear infinite;
    z-index: 2;
}

.hero_new .hero__animation img:nth-child(4) {
    position: absolute;
    right: 16%;
    top: 33%;
    animation: rotate360deg 20s linear infinite;
}

.hero_new .hero__animation img:nth-child(5) {
    position: absolute;
    right: 39%;
    top: 10%;
    animation: previewShapeX 5s infinite;
}

.section__content .section__content-sub-title {
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #0e2b48;
    font-size: 24px;
    font-weight: 600;
}

.hero_new .section__content-title {
    max-width: 18ch;
    margin-bottom: 24px;
    color: #0F2A44;
    font-weight: 800;
    font-size: 50px;
    line-height: 66px;
}

.word .letter {
    color: #D4A017;
}

.hero_new .section__content-text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
}

.btn-group {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
    margin-top: 30px;
    gap: 24px;
    flex-wrap: wrap;
}

.btn_theme {
    color: #0e2b48;
    background: transparent;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    text-transform: capitalize;
    border: 1px solid #0e2b48;
    font-size: 16px;
    border-radius: 32px;
    font-weight: 600;
    line-height: 1.2;
    min-width: -moz-max-content;
    min-width: max-content;
    transition: all 0.35s ease-in-out;
    position: relative;
    z-index: 1;
    text-decoration: none;
    gap: 8px;
}

    .btn_theme i {
        transition: 0s;
    }

    .btn_theme span {
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        border-radius: 50%;
        background-color: #0e2b48;
        transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
        transform: translate(-50%, -50%);
        z-index: -1;
        font-size: 16px;
        line-height: 1.5;
        font-weight: 400;
    }

.btn_theme_active span {
    background-color: #fff;
}

.btn_theme_active {
    color: white;
    position: relative;
    z-index: 0;
}

    .btn_theme_active::after {
        content: "";
        position: absolute;
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        background: #0e2b48;
        z-index: -3;
    }

.btn_theme:hover span,
.btn_theme:focus span {
    width: 225%;
    height: 220px;
}


.btn_theme:hover,
.btn_theme:focus {
    border: 1px solid #0e2b48;
    color: #fff;
}

.btn_theme_active:hover,
.btn_theme_active:focus {
    color: #0e2b48;
}

.hero_new .hero__thumb {
    position: relative;
    display: inline-block;
}

.apply_btn {
    background: #2fa79e;
    border-radius: 5px;
    padding: 8px 55px;
    color: #ffffff;
    position: absolute;
    bottom: 40%;
    left: 35%;
    /* transform: translateX(-45%); */
    border: none;
    transition: .3s all ease-in-out;
}

    .apply_btn:hover {
        transform: scale(1.1);
        box-shadow: 1px 1px 8px 4px #e3e3e33d;
    }
/*Cradit Card Start*/
.cc-hero {
    background: #F6F8FB;
    padding: 50px 0;
    position: relative;
    overflow: hidden
}

    .cc-hero h1 {
        font-size: 2rem;
        font-weight: 800;
        line-height: 1.3
    }

    .cc-hero p {
        line-height: 26px;
        font-size: 14px;
    }

.usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.usp-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(47, 167, 158, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 18px;
    flex-shrink: 0
}
/* Filter Tabs */
.filter-bar {
    background: #fff;
    padding: 0;
    overflow-x: auto
}

    .filter-bar .nav-pills {
        /*        flex-wrap: nowrap;*/
        gap: 6px;
        padding: 12px 0
    }

        .filter-bar .nav-pills .nav-link {
            white-space: nowrap;
            border-radius: 22px;
            font-size: 12px;
            font-weight: 500;
            color: var(--navy) !important;
            padding: 8px 12px !important;
            border: 1px solid var(--border);
            transition: .2s;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            text-overflow: ellipsis;
        }

            .filter-bar .nav-pills .nav-link:hover,
            .filter-bar .nav-pills .nav-link.active {
                background: var(--teal);
                color: #fff !important;
                border-color: var(--teal)
            }

        .filter-bar .nav-pills img {
            width: 18px;
            max-height: 18px;
        }
/* Card Listings */
.cc-card {
    background: #eef1f6;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

    .cc-card:hover {
        box-shadow: 0 8px 30px -6px rgba(15, 42, 68, .1);
        border-color: var(--teal)
    }

.cc-img {
    width: 200px;
    background-color: rgb(247 248 250 / 1);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    padding: 24px;
    background-image: url(../images/bank-icon/background-shape.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 85%;
}

.cc-detail {
    padding: 24px;
}

.cc-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600
}

.badge-best {
    background: rgba(47, 167, 158, .1);
    color: var(--teal)
}

.badge-pop {
    background: rgba(212, 160, 23, .1);
    color: var(--gold)
}

.badge-prem {
    background: rgba(15, 42, 68, .08);
    color: var(--navy)
}

.feat-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--muted);
    padding: 4px 0
}

    .feat-tag i {
        color: var(--teal);
        font-size: 14px
    }

.hero-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-chip {
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 40px;
    border: 1px solid rgb(0 0 0 / 18%);
    color: rgb(0 0 0 / 75%);
}

.bank-header {
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

    .bank-header::after {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .08);
        pointer-events: none;
    }

.bh-apply-btn {
    position: relative;
    z-index: 1;
    padding: 12px 26px;
    background: #fff;
    border: none;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.bh-left h2 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.bh-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    max-width: 420px;
    line-height: 1.6;
}

.bh-stats {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.bh-stat {
    background: rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    color: #fff;
}

    .bh-stat strong {
        display: block;
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 2px;
    }

.bh-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.25)
}
/*Cradit Card End*/
/*Cradit Score*/
.creditScore_banner {
    z-index: 1;
    padding: 35px 0 15px;
    position: relative;
}

.creditScorebanner {
    text-align: center;
    min-height: 232px;
    padding: 30px 0 20px;
    position: relative;
    overflow: hidden;
}

.creditscoremeter {
    z-index: -1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: unset;
    position: absolute;
    inset: 0;
}

.mobileBanner {
    display: none;
}

.bannerText {
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--navy);
    font-size: 26px;
}

.strikeThrough {
    display: block;
    text-decoration: line-through;
}

.creditBtn {
    color: #fff;
    background: #000;
    border: none;
    border-radius: 50px;
    width: fit-content;
    margin: 10px auto;
    min-width: auto;
    padding: 12px 15px;
    display: block;
    font-size: 14px;
    line-height: normal;
}

    .creditBtn:hover {
        color: #ffffff;
        background: var(--teal);
    }
/*Eligibility Calculator Start*/
.calc-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3d5c 100%);
    padding: 48px 0 60px;
}

    .calc-hero p {
        color: rgba(255, 255, 255, .7);
        font-size: 1rem;
        margin-top: 8px;
    }

.breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
    font-size: .85rem;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .4);
}
/* Calculator Card */
.calc-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, .07);
    margin-top: -36px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
/* Tabs */
.emp-tabs {
    display: flex;
    gap: 10px;
}

.emp-tab {
    padding: 10px 28px;
    font-weight: 600;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all .3s;
    background: var(--light-bg);
    color: var(--muted);
}

    .emp-tab.active {
        background: var(--teal);
        color: var(--white);
    }

    .emp-tab:hover:not(.active) {
        color: var(--navy);
    }

label {
    margin-bottom: 6px;
    font-size: .82rem;
}

.input-box {
    display: flex;
    align-items: center;
    border: 2px solid var(--gold);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
    transition: all .25s ease;
}

    .input-box .prefix {
        background: var(--light-bg);
        padding: 10px 14px;
        font-weight: 700;
        color: var(--navy);
        border-right: 2px solid var(--gold);
        font-size: .95rem;
        min-width: 44px;
        text-align: center;
    }

    .input-box input[type="number"] {
        border: none;
        outline: none;
        flex: 1;
        padding: 10px 14px;
        font-size: 1.1rem;
        font-weight: 700;
        text-align: right;
        color: var(--navy);
        font-family: 'Inter', sans-serif;
    }

        .input-box input[type="number"]::-webkit-inner-spin-button,
        .input-box input[type="number"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

    .input-box input[type="number"] {
        -moz-appearance: textfield;
    }

    .input-box input[type="date"] {
        border: none;
        outline: none;
        flex: 1;
        padding: 10px 14px;
        font-size: .95rem;
        font-weight: 600;
        color: var(--navy);
        font-family: 'Inter', sans-serif;
    }

.calc-card input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, var(--navy) 0%, var(--teal) var(--fill, 50%), #e2e8f0 var(--fill, 50%), #e2e8f0 100%);
    outline: none;
}

    .calc-card input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #f5f7fa;
        cursor: pointer;
        border: 2px solid #0f2b43;
        box-shadow: 0 2px 8px rgba(47, 167, 158, .4);
    }

    .calc-card input[type="range"]::-moz-range-thumb {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #f5f7fa;
        cursor: pointer;
        border: 2px solid #0f2b43;
        box-shadow: 0 2px 8px rgba(47, 167, 158, .4);
    }

.btn-apply-result {
    background: var(--gold);
    color: var(--navy);
    transition: all .3s;
}

.result-side {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3d5c 100%);
    border-radius: 0 16px 16px 0;
    padding: 40px 32px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.result-big-label {
    font-size: .95rem;
    opacity: .8;
    margin-bottom: 6px;
    font-weight: 500;
}

.result-big-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
}

.result-emi-label {
    font-size: .85rem;
    opacity: .7;
}

.result-emi-value {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.result-item {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

    .result-item .ri-label {
        font-size: .75rem;
        opacity: .6;
        margin-bottom: 4px;
    }

    .result-item .ri-value {
        font-size: 1.1rem;
        font-weight: 700;
    }

.disclaimer {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

    .disclaimer strong {
        color: var(--navy);
    }

    .disclaimer p {
        font-size: .82rem;
        color: var(--muted);
        margin: 0;
        line-height: 1.6;
    }
/*Eligibility Calculator End*/
.policy-card {
    padding: 30px;
}

    .policy-card h2 {
        font-size: 1.3rem;
        color: var(--navy);
        margin-bottom: 15px;
    }

    .policy-card h3 {
        color: var(--gold);
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .policy-card p {
        font-size: 0.9rem;
        line-height: 1.7;
        color: var(--muted);
    }

    .policy-card ul li {
        font-size: 0.9rem;
        line-height: 1.7;
        color: var(--navy);
        margin-bottom: 5px;
    }

.table-primary th {
    background: var(--navy);
    color: #ffffff;
}

.escalation-box {
    background: var(--light-bg);
    margin-bottom: 20px;
}

.escalation-body {
    padding: 15px 20px;
    line-height: 30px;
    font-size: 14px;
}

.escalation-header {
    background: var(--navy);
}

.footer_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(9, auto);
    grid-auto-flow: column;
}

.breadcrumb {
    align-items: center;
}

/*Contact Page*/
.left-panel {
    background: linear-gradient(135deg, #2fa79e, #1c6b65);
    padding: 40px;
    height: 100%;
    position: relative;
}

    .left-panel h4, .right-panel h4 {
        font-weight: 700;
        margin-bottom: 25px;
    }

.info-item {
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

    .info-item i {
        font-size: 1.3rem;
        background: rgba(255, 255, 255, .2);
        padding: 10px;
        border-radius: 10px;
    }

    .info-item p {
        margin: 0;
        font-size: .9rem;
        line-height: 1.5;
    }

.float-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 4rem;
    opacity: .1;
}

.right-panel {
    padding: 40px 25px;
}

    .right-panel .form-control {
        background: transparent;
        border: none;
        border-bottom: 1px solid rgb(24 58 89);
        border-radius: 0;
        color: #000000;
        padding: 10px 0;
        box-shadow: unset !important;
    }

.hero-stats {
    display: flex;
    gap: 0;
    justify-content: left;
    padding-top: 20px;
    flex-wrap: wrap;
}

.hs-item {
    padding-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    margin-right: 28px;
}

.hs-val {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
}

.hs-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    margin-top: 6px;
    display: block;
}

.hs-item:last-child {
    border-right: none;
}

.trust-bar li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.loan_sec .nav-tabs {
    background: rgb(213 213 213 / 37%);
    padding: 8px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    position: relative;
}

    .loan_sec .nav-tabs .nav-link {
        font-weight: 600;
        border-radius: 50px;
        padding: 8px 20px !important;
    }

        .loan_sec .nav-tabs .nav-item.show .nav-link, .loan_sec .nav-tabs .nav-link.active, .loan_sec .nav-link:hover {
            color: #fff !important;
            background: linear-gradient(135deg, var(--teal), #1c6b65);
        }

p.ph-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 8px;
}

p.ph-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.65;
    max-width: 500px;
}

.ph-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.ph-chip {
    font-size: 12px;
    font-weight: 500;
    padding: 5px 13px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .18);
}

.ph-cta-box {
    position: relative;
    z-index: 1;
}

.ph-quick-btn {
    padding: 12px 24px;
    background: #fff;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .2);
    transition: all .2s;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    text-align: center;
}

    .ph-quick-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0,0,0,.25);
    }

.ph-wa-btn {
    padding: 10px 20px;
    background: rgba(37,211,102,.18);
    color: #fff;
    border: 1px solid rgba(37,211,102,.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    transition: all .2s;
    justify-content: center;
}

    .ph-wa-btn:hover {
        background: rgba(37,211,102,.3);
    }
/*Product grid*/
.loan_solution .nav-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 20px;
}

.prod-card {
    background: var(--white);
    border: 1.5px solid var(--light-bg);
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
}

    .prod-card:hover {
        border-color: var(--pc-accent);
        box-shadow: 0 10px 36px rgba(0,0,0,.10);
        transform: translateY(-4px);
    }

.pc-strip {
    height: 4px;
    background: var(--pc-accent);
    width: 0;
    transition: width .3s ease;
}

.prod-card:hover .pc-strip {
    width: 100%;
}

.pc-body {
    padding: 24px 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pc-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pc-icon {
    width: 100px;
    height: 100px;
    border-radius: 13px;
    background: var(--pc-iconbg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

    .pc-icon img {
        width: 100%;
        object-fit: cover;
        height: 100px;
        object-position: bottom;
    }

    .pc-icon svg {
        width: 22px;
        height: 22px;
    }

.pc-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}

.pc-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 3px;
    background: var(--pc-iconbg);
    color: var(--pc-accent);
}

.pc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
    padding: 0;
    margin: 0;
}

    .pc-features li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        line-height: 1.45;
    }

        .pc-features li .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--pc-accent);
            flex-shrink: 0;
            margin-top: 4px;
        }

.pc-actions {
    border-top: 1.5px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
}

.pc-btn {
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: inherit;
    transition: background .18s;
    border-right: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
}

    .pc-btn svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .pc-btn span {
        line-height: 1;
    }

    .pc-btn:last-child {
        border-right: none;
    }

    .pc-btn:hover {
        background: var(--gray50);
    }

    .pc-btn.apply:hover {
        background: var(--pc-iconbg);
        color: var(--pc-accent);
    }

    .pc-btn.contact:hover {
        background: #fdf3e0;
        color: #d97000;
    }

    .pc-btn.whatsapp:hover {
        background: #e8f5e9;
        color: #1a7f4b;
    }





.trust_bar {
    background: #2fa79e;
    padding: 12px 0;
    color: #ffffff;
}

    .trust_bar ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.form-control::placeholder {
    color: #a1a1a1;
}

#response {
    font-size: 14px;
    color: green;
    border: 1px solid green;
    text-align: center;
    padding: 5px;
    font-weight: 600;
    display: none;
}

#alert {
    font-size: 14px;
    color: Red;
    border: 1px solid Red;
    text-align: center;
    padding: 5px;
    font-weight: 600;
    display: none;
}

#pageloader {
    background: rgba(255, 255, 255, 0.8);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

    #pageloader img {
        left: 50%;
        margin-left: -32px;
        margin-top: -32px;
        position: absolute;
        top: 50%;
    }
/* about-css */
.about-section p {
    font-size: 16px;
    letter-spacing: 0.75px;
}

.leadership-team .avatar-circle {
    font-size: 26px;
}

.section-space {
    padding: 80px 0;
}

.leadership-content li {
    margin-bottom: 10px;
}

.kuvik-different .feature-card {
    padding: 28px 20px;
}

.box001 {
    background-color: #ffebff;
    border: 1px solid #ffc8ff;
}

.box002 {
    background-color: #00ffff17;
    border: 1px solid #00ffff;
}

.box003 {
    background-color: #0026ff17;
    border: 1px solid #8981f0;
}

.box004 {
    background-color: #00ff0017;
    border: 1px solid #7bf8a1;
}

.box005 {
    background-color: #fbff0017;
    border: 1px solid #e7f071;
}

.box006 {
    background-color: #ff3c0017;
    border: 1px solid #ff4800;
}

.rpls {
    text-align: center;
    border: 2px solid #2fa69d3b;
    border-radius: 50%;
    height: 220px;
    width: 220px;
    padding: 30px;
    background-color: #2fa69d1a;
}

.contact-info {
    padding: 80px 0;
    background: #eef1f6;
}

.cont-style {
    background-color: #102a4533;
    padding: 60px 10px;
    border-radius: 30px;
    text-align: center;
}

.cont-ic {
    background-color: #ffffff;
    font-size: 25px;
    width: 60px;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 30px;
    color: #3a7972;
    margin: auto;
}


.faq .accordion-item {
    background: transparent !important;
    border: 0;
    border-bottom: 1px solid #d1d1d1;
    border-radius: 0;
}

.faq .accordion-button {
    box-shadow: unset;
    padding: 12px 0;
    font-size: 14px;
    border-radius: 0 !important;
    background: transparent;
    color: #000000;
}

.faq .accordion-body {
    padding: 8px 15px 12px;
    font-size: 14px;
}

.faq .accordion-button::after {
    background-image: unset;
    content: "+";
    font-size: 22px;
    line-height: 22px;
    transition: unset !important;
    transform: unset !important;
}

.faq .accordion-button:not(.collapsed)::after {
    content: "-";
}

.tab-pane:focus-visible {
    outline: unset !important;
}
.group-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    font-weight: 700;
}
.wa-chat-icon {
    position: fixed;
    z-index: 9999;
    bottom: 80px;
    right: 10px;
}

    .wa-chat-icon img {
        width: 55px;
        height:55px;
    }
@media(min-width:992px){
    .howto-section .col-lg-2{
        width:20%;
    }
}