* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body {
    height: 100vh;
    overflow: hidden;
    background: #f7f8fc;
}

.main-wrapper {
    height: 100vh;
}

/* LEFT SIDE */

.left-section {
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 45px;
}

.form-wrapper {
    width: 100%;
    max-width: 390px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.back-btn {
    color: #0000FF;
    font-size: 14px;
    cursor: pointer;
}

.logo {
    color: #0000FF;
    font-size: 24px;
    font-weight: 700;
}

.progress {
    height: 6px;
    border-radius: 50px;
    background: #ececec;
    margin-bottom: 15px;
}

.progress-bar {
    width: 18%;
    background: linear-gradient(90deg,#0000FF,#00008B);
    border-radius: 50px;
}

.loan-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.heading {
    font-size: 20px;
    font-weight: 700;
    color: #0000FF;
    margin-bottom: 4px;
}

.subheading {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 15px;
}

.label-text {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #374151;
}

.employment-box {
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

    .employment-box button {
        width: 50%;
        height: 38px;
        border: none;
        background: #fff;
        font-size: 12px;
        font-weight: 600;
        transition: .3s;
    }

        .employment-box button.active {
            background: linear-gradient(135deg,#0000FF,#00008B);
            color: #fff;
        }

.mobile-field {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

    .mobile-field .input-group-text {
        border: none;
        background: #fff;
        font-size: 12px;
        font-weight: 600;
    }

    .mobile-field .form-control {
        border: none;
        height: 40px;
        font-size: 13px;
    }

        .mobile-field .form-control:focus {
            box-shadow: none;
        }

.terms {
    font-size: 11px;
    line-height: 1.5;
    color: #6b7280;
    text-align: center;
    margin-bottom: 20px;
}

    .terms a {
        color: #0000FF;
        text-decoration: none;
        font-weight: 600;
    }

.otp-btn {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 10px;
    margin-top: 3px;
    background: linear-gradient(135deg,#0000FF,#00008B);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    padding: 10px 50px;
}

    .otp-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255,107,0,.25);
    }

/* RIGHT SIDE */

.right-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

    .right-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(255,107,0,.75), rgba(255,145,77,.55) );
}

.top-logo {
    position: absolute;
    top: 20px;
    right: 25px;
    z-index: 10;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.floating-card {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 10;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    padding: 10px 15px;
    color: #fff;
}

    .floating-card h5 {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .floating-card small {
        font-size: 11px;
    }

.hero-content {
    position: absolute;
    left: 40px;
    bottom: 50px;
    z-index: 10;
    color: #fff;
    max-width: 420px;
}

    .hero-content h1 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.6;
    }

@media(max-width:991px) {

    body {
        overflow-y: auto;
    }

    .left-section {
        min-height: 100vh;
        height: auto;
        padding: 25px 20px;
    }

    .right-section {
        display: none;
    }

    .form-wrapper {
        max-width: 100%;
    }
}

body {
    overflow: hidden;
    background: #fff7f2;
}

.main-wrapper {
    height: 100vh;
}

/* LEFT SIDE */

.left-panel {
    height: 100vh;
    background: #fff;
    padding: 20px 45px;
    display: flex;
    align-items: center;
}

.content-box {
    max-width: 500px;
}

.logo {
    color: #0000FF;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

    .logo i {
        font-size: 14px;
        margin-right: 6px;
    }

.content-box h2 {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

    .content-box h2 span {
        color: #0000FF;
    }

.content-box p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 12px;
}

.badge-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

    .badge-box i {
        color: #00c853;
    }

.hero-img {
    position: relative;
}

    .hero-img img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 18px;
    }

.floating-card {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

/* RIGHT SIDE */

.right-panel {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0000FF, #00008B);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.circle1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -80px;
}

.circle2 {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: -50px;
}

.circle3 {
    width: 120px;
    height: 120px;
    top: 45%;
    right: 8%;
}

.form-card {
    width: 100%;
    max-width: 520px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    position: relative;
    z-index: 2;
}

.progress {
    height: 6px;
    background: rgba(255, 255, 255, .2);
    border-radius: 20px;
    margin-bottom: 12px;
}

.progress-bar {
    width: 70%;
    background: #d9ff00;
}

.step-text {
    color: rgba(255, 255, 255, .8);
    font-size: 11px;
    margin-bottom: 8px;
}

.form-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.form-label {
    color: #fff;
    font-size: 12px;
    margin-bottom: 4px;
}

.form-control {
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .20);
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 12px;
}

    .form-control::placeholder {
        color: rgba(255, 255, 255, .75);
    }

    .form-control:focus {
        background: rgba(255, 255, 255, .18);
        border-color: rgba(255, 255, 255, .4);
        color: #fff;
        box-shadow: none;
    }

.gender-btn {
    width: 100%;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 8px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

    .gender-btn.active {
        background: #fff;
        color: #0000FF;
    }

.next-btn {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: #0000FF;
    font-size: 13px;
    font-weight: 700;
    margin-top: 8px;
    transition: .3s;
}

    .next-btn:hover {
        transform: translateY(-2px);
    }

@media(max-width:991px) {

    body {
        overflow-y: auto;
    }

    .left-panel,
    .right-panel {
        height: auto;
    }

    .left-panel {
        padding: 20px;
    }

    .hero-img img {
        height: 220px;
    }

    .form-card {
        margin: 20px 0;
    }
}

html,
body {
    height: 100%;
    overflow: hidden;
    background: #f7f8fc
}

.lmf-wrapper {
    height: 100vh
}

.lmf-left,
.lmf-right {
    height: 100vh
}

.lmf-left {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px
}

.lmf-content {
    max-width: 500px
}

.lmf-logo {
    font-size: 22px;
    font-weight: 700;
    color: #0000FF;
    margin-bottom: 12px
}

.lmf-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px
}

    .lmf-title span {
        color: #0000FF
    }

.lmf-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px
}

.lmf-badge {
    display: inline-block;
    padding: 8px 12px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    font-size: 11px;
    margin-bottom: 12px
}

.lmf-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px
}

.lmf-right {
    background: linear-gradient(135deg, #0000FF, #00008B);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.lmf-card {
    width: 100%;
    max-width: 500px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(15px)
}

.lmf-progress {
    height: 6px;
    background: rgba(255, 255, 255, .2);
    border-radius: 20px;
    margin-bottom: 12px
}

    .lmf-progress div {
        height: 100%;
        width: 90%;
        background: #d9ff00;
        border-radius: 20px
    }

.lmf-form-title {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px
}

.lmf-field {
    margin-bottom: 10px
}

.lmf-label {
    display: block;
    font-size: 12px;
    color: #fff;
    margin-bottom: 4px
}

.lmf-control {
    height: 38px;
    font-size: 12px
}

.lmf-btn {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: #d9ff00;
    font-weight: 700
}

@media(max-width:991px) {
    body {
        overflow: auto
    }

    .lmf-left,
    .lmf-right {
        height: auto
    }
}

.main-wrapper {
    height: 100vh;
}

/* LEFT SIDE */

.left-side {
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 40px;
}

.form-box {
    width: 100%;
    max-width: 380px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0000FF;
    margin-bottom: 15px;
}

.progress {
    height: 6px;
    border-radius: 50px;
    background: #ececec;
    margin-bottom: 18px;
}

.progress-bar {
    width: 45%;
    background: linear-gradient(90deg,#0000FF,#00008B);
}

.loan-title {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.verify-title {
    font-size: 22px;
    font-weight: 700;
    color: #0000FF;
    margin-top: 15px;
    margin-bottom: 4px;
}

.verify-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 20px;
}

.otp-label {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    display: block;
}

.otp-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.otp-box {
    width: 60px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #d6d9df;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    outline: none;
    transition: .3s;
}

    .otp-box:focus {
        border-color: #0000FF;
        box-shadow: 0 0 0 3px rgba(255,107,0,.15);
    }

.resend-text {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 20px;
}

    .resend-text a {
        color: #0000FF;
        text-decoration: none;
        font-weight: 600;
    }

.verify-btn {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg,#0000FF,#00008B);
    box-shadow: 0 10px 25px rgba(255,107,0,.25);
    transition: .3s;
}

    .verify-btn:hover {
        transform: translateY(-2px);
    }

/* RIGHT SIDE */

.right-side {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

    .right-side img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)), linear-gradient(135deg, rgba(255,107,0,.50), rgba(255,159,67,.30));
}

.banner-logo {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    z-index: 10;
}

.banner-content {
    position: absolute;
    bottom: 50px;
    left: 40px;
    max-width: 420px;
    color: #fff;
    z-index: 10;
}

    .banner-content h1 {
        font-size: 42px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 16px;
        line-height: 1.5;
        color: #fef08a;
    }

@media(max-width:991px) {

    body {
        overflow-y: auto;
    }

    .right-side {
        display: none;
    }

    .left-side {
        padding: 20px;
    }

    .otp-box {
        width: 55px;
    }
}
/*==================================================
LoanMyntra Dashboard
Part 3A
==================================================*/

:root {
    --primary: #0000FF;
    --secondary: #00008B;
    --primary-light: #fff4eb;
    --background: #f8f9fc;
    --white: #ffffff;
    --black: #1d2939;
    --text: #667085;
    --border: #ececec;
    --success: #22c55e;
    --danger: #ef4444;
    --shadow: 0 12px 35px rgba(0,0,0,.08);
    --radius: 20px;
    --transition: .35s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins',sans-serif;
    background: var(--background);
    color: var(--black);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

/*=========================
Navbar
=========================*/

.navbar {
    background: #fff !important;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.navbar-brand {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary) !important;
}

    .navbar-brand span {
        color: #2d2d2d;
    }

.text-orange {
    color: var(--primary) !important;
}

.navbar .btn {
    box-shadow: none;
}

.profile-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.notification-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background: #ff2b2b;
    border-radius: 50%;
}
/*====================================================
 LoanMyntra Dashboard CSS
 Part A
====================================================*/

/*-----------------------
Variables
------------------------*/

:root {
    --primary: #0000FF;
    --secondary: #00008B;
    --bg: #f6f8fc;
    --white: #ffffff;
    --text: #374151;
    --light: #6b7280;
    --border: #ececec;
    --radius: 18px;
    --transition: .35s;
}

/*-----------------------
Reset
------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    font-family: 'Poppins',sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*-----------------------
Navbar
------------------------*/

.navbar {
    height: 74px;
    background: #fff !important;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    z-index: 1050;
}

.navbar-brand {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary) !important;
}

    .navbar-brand span {
        color: #222;
    }

.profile-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.notification-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: red;
    top: 10px;
    right: 10px;
}

/*-----------------------
Dashboard Layout
------------------------*/

.dashboard-wrapper {
    display: flex;
    height: calc(100vh - 74px);
}

/*-----------------------
Sidebar
------------------------*/

.sidebar {
    width: 270px;
    background: #fff;
    border-right: 1px solid var(--border);
    overflow-y: auto;
    flex-shrink: 0;
    padding: 25px;
}

    .sidebar::-webkit-scrollbar {
        width: 5px;
    }

    .sidebar::-webkit-scrollbar-thumb {
        background: #ddd;
    }

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.sidebar li {
    margin-bottom: 12px;
}

    .sidebar li a {
        display: flex;
        align-items: center;
        font-size: 14px;
        gap: 14px;
        padding: 7px 18px;
        border-radius: 14px;
        color: #555;
        transition: .3s;
    }

    .sidebar li.active a {
        background: linear-gradient(135deg,var(--primary),var(--secondary));
        color: #fff;
    }

    .sidebar li:hover a {
        background: #fff3ea;
        color: var(--primary);
    }

.website-btn {
    display: block;
    margin-top: 40px;
    padding: 15px;
    text-align: center;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
}

/*-----------------------
Offcanvas
------------------------*/

.offcanvas {
    width: 280px;
}

.mobile-menu li {
    margin-bottom: 10px;
}

    .mobile-menu li a {
        display: flex;
        gap: 15px;
        padding: 14px;
        border-radius: 14px;
        color: #555;
    }

    .mobile-menu li.active a {
        background: linear-gradient(135deg,var(--primary),var(--secondary));
        color: #fff;
    }

/*-----------------------
Main Content
------------------------*/

.content-area {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px;
}

    /* Right panel scrollbar */

    .content-area::-webkit-scrollbar {
        width: 8px;
    }

    .content-area::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 20px;
    }

    .content-area::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

/*-----------------------
Filter Box
------------------------*/

.filter-box {
    background: #fff;
    border-radius: 22px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .filter-box h3 {
        font-size: 30px;
        font-weight: 700;
        color: var(--primary);
    }

    .filter-box small {
        color: #888;
    }

.form-range {
    cursor: pointer;
}

/*-----------------------
Heading
------------------------*/

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

    .section-title h2 {
        font-size: 28px;
        font-weight: 700;
    }

    .section-title span {
        background: linear-gradient(135deg,var(--primary),var(--secondary));
        color: #fff;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 13px;
    }

/*-----------------------
Responsive
------------------------*/

@media(max-width:991px) {

    body {
        overflow: auto;
    }

    .dashboard-wrapper {
        display: block;
        height: auto;
    }

    .content-area {
        overflow: visible;
        padding: 20px;
    }
}

@media(max-width:767px) {

    .content-area {
        padding: 15px;
    }

    .filter-box {
        padding: 18px;
    }

    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

        .section-title h2 {
            font-size: 22px;
        }

    .navbar-brand {
        font-size: 24px;
    }
}
/*====================================================
 LoanMyntra Dashboard CSS
 Part B
 Loan Cards + Buttons + Responsive
====================================================*/

/*-----------------------
Loan Card
------------------------*/

.loan-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .loan-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(135deg,var(--primary),var(--secondary));
    }

    .loan-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(255,107,0,.15);
    }

.card-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

    .card-header-custom h4 {
        margin: 0;
        font-size: 22px;
        font-weight: 700;
    }

    .card-header-custom small {
        color: #888;
        font-size: 13px;
    }

.bank-logo {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #fff5ee;
    padding: 10px;
    object-fit: contain;
}

.loan-card hr {
    margin: 20px 0;
    opacity: .15;
}

.loan-card .col-4 {
    text-align: center;
}

    .loan-card .col-4 small {
        display: block;
        color: #888;
        font-size: 12px;
        margin-bottom: 5px;
    }

    .loan-card .col-4 h6 {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        color: #222;
    }

/*-----------------------
Apply Button
------------------------*/

.apply-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    color: #fff;
    font-weight: 600;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

    .apply-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(255,107,0,.25);
    }

/*-----------------------
Statistics Card
------------------------*/

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid #ececec;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    transition: .35s;
    height: 100%;
}

    .stat-card:hover {
        transform: translateY(-5px);
    }

.stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.stat-title {
    font-size: 13px;
    color: #777;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-top: 8px;
}

/*-----------------------
Quick Action
------------------------*/

.quick-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 14px;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

    .quick-btn:hover {
        transform: translateY(-3px);
    }

/*-----------------------
Ripple Effect
------------------------*/

.apply-btn,
.quick-btn,
.website-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    transform: translate(-50%,-50%);
    animation: ripple .6s linear;
}

@keyframes ripple {

    from {
        width: 0;
        height: 0;
        opacity: .7;
    }

    to {
        width: 450px;
        height: 450px;
        opacity: 0;
    }
}

/*-----------------------
Fade Animation
------------------------*/

.fade-in {
    animation: fadeIn .6s ease;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*-----------------------
Scrollbar
------------------------*/

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: #efefef;
}

/*-----------------------
Responsive
------------------------*/

@media (max-width:1200px) {

    .loan-card {
        padding: 22px;
    }
}

@media (max-width:992px) {

    .loan-card {
        margin-bottom: 20px;
    }

    .card-header-custom h4 {
        font-size: 20px;
    }
}

@media (max-width:768px) {

    .loan-card {
        padding: 18px;
        border-radius: 16px;
    }

    .card-header-custom {
        flex-direction: column;
        text-align: center;
    }

    .bank-logo {
        margin-top: 10px;
    }

    .loan-card .col-4 h6 {
        font-size: 16px;
    }

    .apply-btn {
        height: 44px;
        font-size: 14px;
    }
}

@media (max-width:576px) {

    .loan-card {
        padding: 16px;
    }

    .card-header-custom h4 {
        font-size: 18px;
    }

    .loan-card .row {
        row-gap: 15px;
    }

    .loan-card .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

        .loan-card .col-4 h6 {
            font-size: 15px;
        }

    .bank-logo {
        width: 52px;
        height: 52px;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/*-----------------------
Footer
------------------------*/

.dashboard-footer {
    text-align: center;
    margin-top: 40px;
    color: #777;
    font-size: 14px;
    padding: 20px 0;
}
