/*==================================================
APPLY FORM CSS
File : assets/css/apply.css
==================================================*/

:root {

    --primary: #0D6EFD;
    --primary-dark: #0A58CA;
    --secondary: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --dark: #0F172A;
    --text: #475569;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --shadow: 0 20px 60px rgba(15, 23, 42, .08);
    --radius: 22px;
    --transition: .35s ease;

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {

    font-family: 'Poppins', sans-serif;
    background: #F8FBFF;
    color: var(--dark);

}

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

.apply-hero {

    padding: 90px 0 70px;
    background:
        linear-gradient(135deg, #0D6EFD 0%, #2563EB 100%);
    position: relative;
    overflow: hidden;

}

.apply-hero::before {

    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -150px;
    top: -150px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;

}

.apply-hero::after {

    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    bottom: -180px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;

}

.apply-hero .container {

    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;

}

.hero-badge {

    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(18px);
    border-radius: 60px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;

}

.apply-hero h1 {

    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;

}

.apply-hero p {

    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .92);

}

.hero-feature-list {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;

}

.hero-feature-list div {

    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(15px);
    padding: 18px;
    border-radius: 16px;
    color: #fff;
    font-weight: 600;

}

.hero-feature-list i {

    margin-right: 10px;
    color: #6EE7B7;

}

/*==================================================
RIGHT CARD
==================================================*/

.apply-card {

    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(30px);
    padding: 45px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .25);
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .15);

}

.apply-icon {

    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: var(--primary);

}

.apply-card h3 {

    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;

}

.apply-card p {

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

}

/*==================================================
FORM SECTION
==================================================*/

.loan-form-section {

    padding: 100px 0;

}

#loanApplicationForm {

    background: #fff;
    border-radius: 30px;
    padding: 45px;
    box-shadow: var(--shadow);

}

/*==================================================
PROGRESS BAR
==================================================*/

.progress-wrapper {

    margin-bottom: 60px;

}

.progress-bar {

    height: 8px;
    background: #E5E7EB;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 35px;

}

.progress-fill {

    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, #0D6EFD, #10B981);
    border-radius: 50px;
    transition: .4s;

}

.progress-steps {

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

}

.step {

    text-align: center;
    flex: 1;
    position: relative;

}

.step span {

    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    border-radius: 50%;
    background: #E2E8F0;
    font-size: 20px;
    font-weight: 700;
    color: #64748B;
    transition: .35s;

}

.step p {

    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #64748B;

}

.step.active span {

    background: linear-gradient(135deg, #0D6EFD, #2563EB);
    color: #fff;
    box-shadow: 0 10px 30px rgba(13, 110, 253, .35);

}

.step.active p {

    color: #0D6EFD;

}

/*==================================================
FORM STEP
==================================================*/

.form-step {

    display: none;
    animation: fadeSlide .45s ease;

}

.form-step.active {

    display: block;

}

@keyframes fadeSlide {

    from {

        opacity: 0;
        transform: translateY(25px);

    }

    to {

        opacity: 1;
        transform: none;

    }

}

.form-step h2 {

    font-size: 34px;
    margin-bottom: 10px;
    font-weight: 700;

}

.form-step>p {

    color: #64748B;
    margin-bottom: 35px;

}

.form-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;

}

/*==================================================
PREMIUM INPUT DESIGN
==================================================*/

.form-group {

    position: relative;

}

.form-group.full-width {

    grid-column: 1/-1;

}

.form-group label {

    display: block;

    font-size: 15px;

    font-weight: 600;

    color: #0F172A;

    margin-bottom: 12px;

}

.input-box {

    position: relative;

    display: flex;

    align-items: center;

}

.input-box i {

    position: absolute;

    left: 18px;

    color: #0D6EFD;

    font-size: 18px;

    z-index: 2;

    transition: .35s;

}

.input-box input,
.input-box select,
.input-box textarea {

    width: 100%;

    padding: 18px 20px 18px 55px;

    border: 2px solid #E2E8F0;

    border-radius: 18px;

    background: #fff;

    font-size: 16px;

    color: #0F172A;

    outline: none;

    transition: .35s;

    font-family: inherit;

}

.input-box textarea {

    resize: vertical;

    min-height: 140px;

}

.input-box select {

    appearance: none;

    cursor: pointer;

}

.input-box::after {

    content: "\f107";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    position: absolute;

    right: 20px;

    color: #64748B;

    pointer-events: none;

}

.textarea-box::after {

    display: none;

}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {

    border-color: #0D6EFD;

    box-shadow: 0 0 0 5px rgba(13, 110, 253, .12);

}

.input-box input:focus+i {

    color: #0D6EFD;

}

.input-note,
.form-group small {

    display: block;

    margin-top: 8px;

    font-size: 13px;

    color: #64748B;

}

/*==================================================
BUTTONS
==================================================*/

.form-navigation {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 45px;

}

.prev-btn,
.next-btn,
.submit-btn {

    border: none;

    cursor: pointer;

    border-radius: 60px;

    padding: 16px 34px;

    font-size: 16px;

    font-weight: 700;

    transition: .35s;

    display: inline-flex;

    align-items: center;

    gap: 12px;

}

.prev-btn {

    background: #EEF2FF;

    color: #0F172A;

}

.prev-btn:hover {

    background: #E2E8F0;

    transform: translateY(-2px);

}

.next-btn {

    background: linear-gradient(135deg, #0D6EFD, #2563EB);

    color: #fff;

    box-shadow: 0 15px 35px rgba(13, 110, 253, .25);

}

.next-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 20px 40px rgba(13, 110, 253, .35);

}

.submit-btn {

    background: linear-gradient(135deg, #10B981, #059669);

    color: #fff;

    box-shadow: 0 18px 40px rgba(16, 185, 129, .28);

}

.submit-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 22px 45px rgba(16, 185, 129, .38);

}

/*==================================================
REVIEW CARD
==================================================*/

.review-card {

    margin-top: 40px;

    padding: 28px;

    border-radius: 22px;

    background: linear-gradient(135deg, #EFF6FF, #FFFFFF);

    border: 1px solid #D6E4FF;

    display: flex;

    gap: 22px;

    align-items: flex-start;

}

.review-icon {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #0D6EFD;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

    flex-shrink: 0;

}

.review-card h3 {

    font-size: 24px;

    margin-bottom: 10px;

    color: #0F172A;

}

.review-card p {

    color: #64748B;

    line-height: 1.8;

}

/*==================================================
VALIDATION STATES
==================================================*/

.input-box input.valid,
.input-box select.valid,
.input-box textarea.valid {

    border-color: #10B981;

}

.input-box input.invalid,
.input-box select.invalid,
.input-box textarea.invalid {

    border-color: #EF4444;

}

.error-text {

    margin-top: 8px;

    font-size: 13px;

    color: #EF4444;

}

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

@media(max-width:992px) {

    .form-grid {

        grid-template-columns: 1fr;

    }

    #loanApplicationForm {

        padding: 35px;

    }

    .form-step h2 {

        font-size: 28px;

    }

}

@media(max-width:768px) {

    .loan-form-section {

        padding: 70px 0;

    }

    #loanApplicationForm {

        padding: 25px;

        border-radius: 22px;

    }

    .progress-steps {

        gap: 10px;

    }

    .step span {

        width: 48px;

        height: 48px;

        font-size: 16px;

    }

    .step p {

        font-size: 12px;

    }

    .form-navigation {

        flex-direction: column-reverse;

        gap: 15px;

    }

    .prev-btn,
    .next-btn,
    .submit-btn {

        width: 100%;

        justify-content: center;

    }

    .review-card {

        flex-direction: column;

        text-align: center;

        align-items: center;

    }

}

@media(max-width:480px) {

    .input-box input,
    .input-box select,
    .input-box textarea {

        padding: 16px 16px 16px 50px;

        font-size: 15px;

    }

    .input-box i {

        left: 16px;

        font-size: 16px;

    }

    .form-step h2 {

        font-size: 24px;

    }

    .review-card h3 {

        font-size: 20px;

    }

}





















/*==================================================
APPLICATION PROCESS TIMELINE
==================================================*/

.application-process {

    position: relative;

    padding: 110px 0;

    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);

    overflow: hidden;

}

.application-process::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    background: rgba(13, 110, 253, .06);

    border-radius: 50%;

    top: -180px;

    right: -120px;

    filter: blur(90px);

}

.application-process::after {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    background: rgba(16, 185, 129, .06);

    border-radius: 50%;

    bottom: -180px;

    left: -150px;

    filter: blur(90px);

}

.application-process .container {

    position: relative;

    z-index: 2;

}

/*=============================
Section Heading
=============================*/

.application-process .section-heading {

    text-align: center;

    max-width: 850px;

    margin: auto;

    margin-bottom: 70px;

}

.application-process .section-tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 22px;

    background: #EEF5FF;

    color: #0D6EFD;

    border-radius: 50px;

    font-weight: 700;

    margin-bottom: 22px;

}

.application-process h2 {

    font-size: 44px;

    line-height: 1.2;

    color: #0F172A;

    margin-bottom: 18px;

    font-weight: 800;

}

.application-process p {

    font-size: 17px;

    line-height: 1.9;

    color: #64748B;

}

/*=============================
Timeline
=============================*/

.process-timeline {

    position: relative;

    max-width: 1050px;

    margin: 0 auto;

    padding: 30px 0;

}

.process-timeline::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    transform: translateX(-50%);

    width: 5px;

    height: 100%;

    border-radius: 50px;

    background: linear-gradient(to bottom,

            #0D6EFD,

            #2563EB,

            #10B981);

}

/*=============================
Timeline Item
=============================*/

.process-item {

    position: relative;

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 70px;

}

.process-item:nth-child(even) {

    flex-direction: row-reverse;

}

.process-content {

    width: 44%;

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

    backdrop-filter: blur(18px);

    padding: 35px;

    border-radius: 26px;

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

    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);

    transition: .40s;

    position: relative;

}

.process-content:hover {

    transform: translateY(-10px);

    box-shadow: 0 35px 70px rgba(13, 110, 253, .15);

}

.process-content h3 {

    font-size: 25px;

    color: #0F172A;

    margin: 22px 0 15px;

    font-weight: 700;

}

.process-content p {

    font-size: 16px;

    line-height: 1.9;

    color: #64748B;

}

/*=============================
Number
=============================*/

.process-number {

    width: 90px;

    height: 90px;

    background: linear-gradient(135deg,

            #0D6EFD,

            #2563EB);

    color: #fff;

    font-size: 30px;

    font-weight: 800;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    box-shadow: 0 18px 40px rgba(13, 110, 253, .30);

}

/*=============================
Icon
=============================*/

.process-icon {

    width: 78px;

    height: 78px;

    border-radius: 22px;

    background: linear-gradient(135deg,

            #EFF6FF,

            #ffffff);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    color: #0D6EFD;

    box-shadow: 0 12px 30px rgba(13, 110, 253, .10);

    transition: .35s;

}

.process-content:hover .process-icon {

    transform: rotate(8deg) scale(1.08);

    color: #10B981;

}

/*==================================================
APPLICATION PROCESS PREMIUM EFFECTS
PART 2
==================================================*/

/*================================
Connector Arrows
================================*/

.process-content::before {

    content: "";

    position: absolute;

    top: 50%;

    width: 32px;

    height: 32px;

    background: #fff;

    transform: translateY(-50%) rotate(45deg);

    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);

}

.process-item:nth-child(odd) .process-content::before {

    right: -16px;

}

.process-item:nth-child(even) .process-content::before {

    left: -16px;

}

/*================================
Timeline Dots
================================*/

.process-number::before {

    content: "";

    position: absolute;

    inset: -10px;

    border: 2px dashed rgba(13, 110, 253, .25);

    border-radius: 50%;

    animation: spinCircle 15s linear infinite;

}

@keyframes spinCircle {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}

/*================================
Card Border Glow
================================*/

.process-content::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 26px;

    padding: 1px;

    background: linear-gradient(135deg,
            rgba(13, 110, 253, .20),
            rgba(16, 185, 129, .18));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;

}

/*================================
Hover
================================*/

.process-content:hover {

    border-color: #0D6EFD;

}

.process-content:hover h3 {

    color: #0D6EFD;

}

.process-content:hover .process-number {

    transform: translateX(-50%) scale(1.08);

}

/*================================
Scroll Animation
================================*/

.process-item {

    opacity: 0;

    transform: translateY(70px);

    transition: all .8s ease;

}

.process-item.show {

    opacity: 1;

    transform: none;

}

/*================================
Responsive
================================*/

@media(max-width:991px) {

    .process-timeline::before {

        left: 30px;

    }

    .process-item {

        display: flex;

        flex-direction: row !important;

        padding-left: 95px;

        margin-bottom: 50px;

    }

    .process-content {

        width: 100%;

    }

    .process-number {

        left: 30px;

        transform: translateX(-50%);

        width: 70px;

        height: 70px;

        font-size: 22px;

    }

    .process-icon {

        width: 65px;

        height: 65px;

        font-size: 24px;

    }

    .process-content::before {

        left: -16px !important;

        right: auto;

    }

}

@media(max-width:768px) {

    .application-process {

        padding: 80px 0;

    }

    .application-process h2 {

        font-size: 34px;

    }

    .application-process p {

        font-size: 16px;

    }

    .process-content {

        padding: 25px;

        border-radius: 20px;

    }

    .process-content h3 {

        font-size: 21px;

    }

    .process-content p {

        font-size: 15px;

        line-height: 1.8;

    }

    .process-number {

        width: 60px;

        height: 60px;

        font-size: 18px;

    }

    .process-icon {

        width: 55px;

        height: 55px;

        font-size: 20px;

    }

}

@media(max-width:480px) {

    .application-process {

        padding: 60px 0;

    }

    .application-process h2 {

        font-size: 28px;

    }

    .application-process .section-heading {

        margin-bottom: 50px;

    }

    .process-item {

        padding-left: 75px;

    }

    .process-timeline::before {

        left: 24px;

    }

    .process-number {

        left: 24px;

        width: 50px;

        height: 50px;

        font-size: 16px;

    }

    .process-content {

        padding: 20px;

    }

    .process-content h3 {

        font-size: 18px;

    }

    .process-content p {

        font-size: 14px;

    }

    .process-icon {

        width: 48px;

        height: 48px;

        font-size: 18px;

    }

}


/* Active Timeline */

.process-item.active-step .process-number {

    background: linear-gradient(135deg, #10B981, #059669);

    box-shadow: 0 20px 45px rgba(16, 185, 129, .35);

}

.process-item.active-step .process-icon {

    background: linear-gradient(135deg, #10B981, #059669);

    color: #fff;

}

.process-item.active-step .process-content {

    border-color: #10B981;

}





/*==================================================
DOCUMENTS REQUIRED SECTION
==================================================*/

.documents-section {

    position: relative;

    padding: 110px 0;

    background: #ffffff;

    overflow: hidden;

}

.documents-section::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    top: -180px;

    right: -120px;

    border-radius: 50%;

    background: rgba(13, 110, 253, .05);

    filter: blur(80px);

}

.documents-section::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    left: -150px;

    bottom: -180px;

    border-radius: 50%;

    background: rgba(16, 185, 129, .05);

    filter: blur(80px);

}

.documents-section .container {

    position: relative;

    z-index: 2;

}

/*=========================
Heading
=========================*/

.documents-section .section-heading {

    max-width: 860px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;

}

.documents-section .section-tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 22px;

    border-radius: 50px;

    background: #EEF5FF;

    color: #0D6EFD;

    font-weight: 700;

    margin-bottom: 22px;

}

.documents-section h2 {

    font-size: 42px;

    font-weight: 800;

    line-height: 1.2;

    color: #0F172A;

    margin-bottom: 18px;

}

.documents-section p {

    font-size: 17px;

    line-height: 1.9;

    color: #64748B;

}

/*=========================
Grid
=========================*/

.documents-grid {

    display: grid;

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

    gap: 30px;

}

/*=========================
Card
=========================*/

.document-card {

    position: relative;

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

    backdrop-filter: blur(18px);

    border-radius: 26px;

    padding: 38px;

    text-align: center;

    overflow: hidden;

    border: 1px solid rgba(13, 110, 253, .08);

    box-shadow: 0 18px 45px rgba(15, 23, 42, .08);

    transition: .40s;

}

.document-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 30px 70px rgba(13, 110, 253, .18);

    border-color: #0D6EFD;

}

/*=========================
Icon
=========================*/

.document-icon {

    width: 88px;

    height: 88px;

    margin: auto;

    margin-bottom: 24px;

    border-radius: 24px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 34px;

    color: #0D6EFD;

    background: linear-gradient(135deg, #EEF5FF, #ffffff);

    box-shadow: 0 12px 35px rgba(13, 110, 253, .12);

    transition: .35s;

}

.document-card:hover .document-icon {

    background: linear-gradient(135deg, #0D6EFD, #2563EB);

    color: #fff;

    transform: rotate(8deg) scale(1.08);

}

/*=========================
Text
=========================*/

.document-card h3 {

    font-size: 24px;

    color: #0F172A;

    margin-bottom: 15px;

    font-weight: 700;

}

.document-card p {

    font-size: 15px;

    color: #64748B;

    line-height: 1.8;

}

/*=========================
Top Glow
=========================*/

.document-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(90deg, #0D6EFD, #10B981);

    transform: scaleX(0);

    transition: .40s;

}

.document-card:hover::before {

    transform: scaleX(1);

}





/*==================================================
DOCUMENTS REQUIRED
PART 2 - PREMIUM EFFECTS
==================================================*/

/*=========================
Gradient Border
=========================*/

.document-card::after {

    content: "";

    position: absolute;

    inset: 0;

    padding: 1px;

    border-radius: 26px;

    background: linear-gradient(135deg,
            rgba(13, 110, 253, .18),
            rgba(16, 185, 129, .18));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;

}

/*=========================
Floating Animation
=========================*/

.document-card {

    animation: documentFloat 5s ease-in-out infinite;

}

.document-card:nth-child(2) {

    animation-delay: .3s;

}

.document-card:nth-child(3) {

    animation-delay: .6s;

}

.document-card:nth-child(4) {

    animation-delay: .9s;

}

.document-card:nth-child(5) {

    animation-delay: 1.2s;

}

.document-card:nth-child(6) {

    animation-delay: 1.5s;

}

@keyframes documentFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }

}

/*=========================
Hover Shine
=========================*/

.document-card {

    position: relative;

    overflow: hidden;

}

.document-card span.shine {

    display: none;

}

.document-card::before {

    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 60%;

    height: 100%;

    background: linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .45),

            transparent);

    transform: skewX(-25deg);

}

.document-card:hover::before {

    left: 150%;

    transition: 1s;

}

/*=========================
Scroll Reveal
=========================*/

.document-card {

    opacity: 0;

    transform: translateY(60px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.document-card.show {

    opacity: 1;

    transform: none;

}

/*=========================
Responsive
=========================*/

@media(max-width:992px) {

    .documents-grid {

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

        gap: 25px;

    }

    .documents-section {

        padding: 90px 0;

    }

    .documents-section h2 {

        font-size: 36px;

    }

}

@media(max-width:768px) {

    .documents-grid {

        grid-template-columns: 1fr;

    }

    .documents-section {

        padding: 70px 0;

    }

    .documents-section .section-heading {

        margin-bottom: 50px;

    }

    .documents-section h2 {

        font-size: 30px;

    }

    .document-card {

        padding: 28px;

    }

    .document-icon {

        width: 72px;

        height: 72px;

        font-size: 28px;

    }

    .document-card h3 {

        font-size: 21px;

    }

    .document-card p {

        font-size: 15px;

    }

}

@media(max-width:480px) {

    .documents-section {

        padding: 60px 0;

    }

    .documents-section h2 {

        font-size: 26px;

    }

    .documents-section p {

        font-size: 15px;

    }

    .document-card {

        padding: 22px;

        border-radius: 20px;

    }

    .document-icon {

        width: 64px;

        height: 64px;

        font-size: 24px;

        border-radius: 18px;

    }

    .document-card h3 {

        font-size: 19px;

    }

}






/*==================================================
LOAN INFORMATION SECTION
Premium UI Design
==================================================*/

.loan-information-section {

    position: relative;

    padding: 110px 0;

    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);

    overflow: hidden;

}

.loan-information-section::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    top: -180px;

    right: -120px;

    border-radius: 50%;

    background: rgba(13, 110, 253, .05);

    filter: blur(90px);

}

.loan-information-section::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    left: -150px;

    bottom: -180px;

    border-radius: 50%;

    background: rgba(16, 185, 129, .05);

    filter: blur(90px);

}

.loan-information-section .container {

    position: relative;

    z-index: 2;

}

/*==============================
Heading
==============================*/

.loan-information-section .section-heading {

    max-width: 900px;

    margin: auto;

    text-align: center;

    margin-bottom: 60px;

}

.loan-information-section .section-tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 22px;

    border-radius: 50px;

    background: #eef5ff;

    color: #0d6efd;

    font-weight: 700;

    margin-bottom: 22px;

}

.loan-information-section h2 {

    font-size: 46px;

    font-weight: 800;

    line-height: 1.2;

    color: #0f172a;

    margin-bottom: 18px;

}

.loan-information-section .section-heading p {

    font-size: 17px;

    line-height: 1.9;

    color: #64748b;

}

/*==============================
Main Card
==============================*/

.loan-content-card {

    position: relative;

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

    backdrop-filter: blur(20px);

    border-radius: 30px;

    padding: 60px;

    border: 1px solid rgba(13, 110, 253, .08);

    box-shadow: 0 25px 70px rgba(15, 23, 42, .08);

    overflow: hidden;

}

.loan-content-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 7px;

    height: 100%;

    background: linear-gradient(180deg, #0D6EFD, #10B981);

}

.loan-content-card h3 {

    font-size: 30px;

    font-weight: 700;

    color: #0f172a;

    margin-top: 40px;

    margin-bottom: 18px;

}

.loan-content-card h3:first-child {

    margin-top: 0;

}

.loan-content-card p {

    font-size: 17px;

    line-height: 2;

    color: #475569;

    margin-bottom: 22px;

}

/*==============================
Highlight Box
==============================*/

.loan-highlight {

    display: grid;

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

    gap: 22px;

    margin-top: 45px;

}

.highlight-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    background: #f8fbff;

    border-radius: 18px;

    padding: 22px;

    transition: .35s;

    border: 1px solid #e5eefc;

}

.highlight-item:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 35px rgba(13, 110, 253, .12);

    border-color: #0d6efd;

}

.highlight-item i {

    width: 46px;

    height: 46px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background: linear-gradient(135deg, #0D6EFD, #2563EB);

    color: #fff;

    font-size: 18px;

    flex-shrink: 0;

}

.highlight-item span {

    font-size: 16px;

    font-weight: 600;

    color: #334155;

    line-height: 1.7;

}

/*==============================
Responsive
==============================*/

@media(max-width:992px) {

    .loan-content-card {

        padding: 40px;

    }

    .loan-highlight {

        grid-template-columns: 1fr;

    }

    .loan-information-section h2 {

        font-size: 38px;

    }

}

@media(max-width:768px) {

    .loan-information-section {

        padding: 80px 0;

    }

    .loan-content-card {

        padding: 30px;

        border-radius: 22px;

    }

    .loan-information-section h2 {

        font-size: 30px;

    }

    .loan-content-card h3 {

        font-size: 24px;

    }

    .loan-content-card p {

        font-size: 16px;

        line-height: 1.9;

    }

}

@media(max-width:480px) {

    .loan-information-section {

        padding: 60px 0;

    }

    .loan-information-section h2 {

        font-size: 26px;

    }

    .loan-content-card {

        padding: 22px;

    }

    .loan-content-card h3 {

        font-size: 21px;

    }

    .loan-content-card p {

        font-size: 15px;

    }

    .highlight-item {

        padding: 18px;

    }

}