/* Css section 1 */
.how-we-work {
    background-color: #ff6d00;
    /* dark teal */
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.how-we-work h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.how-we-work .description {
    font-size: 16px;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #e0f7fa;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    text-align: center;
    max-width: 160px;
}

.step .icon {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #ff6d00;
    font-size: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.step .icon:hover {
    transform: scale(1.1);
}

.step h3 {
    font-size: 16px;
    color: #e0f7fa;
    font-weight: bold;
}

.arrow i {
    font-size: 28px;
    color: #fff;
}

/* Css Section 1 end */

/* Css Section 2 */
/* Grid container */
.loan-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual card */
.loan-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

/* Hover effect */
.loan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Card title */
.loan-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/* Card value */
.loan-card .card-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: #011f4c;
}

/* Css Section 2 end */


/* Css Section 3 */
.calculator {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group,
.output-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
}

input[type=number] {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 100%;
}

input[type=range] {
    width: 100%;
}

.box {
    background: #eee;
    padding: 15px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
}

.example {
    grid-column: span 2;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
}

.highlight {
    font-weight: bold;
}

@media screen and (max-width: 600px) {
    .calculator {
        display: block !important;
    }

    .input-group {
        margin-bottom: 20px;
    }
}

/* Css Section 3 end */

/* ===== Loan Types Section ===== */

.loan-types-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.loan-types-section .section-heading h1 {
    color: #1a2e5a;
    font-weight: 700;
    font-size: 2.2rem;
}

.loan-types-section .section-heading p {
    color: #555;
    font-size: 1rem;
    margin-top: 10px;
}

.loan-types-section .section-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.loan-type-card {
    background: #fff;
    border: 1.5px solid #e07b2a;
    border-radius: 12px;
    padding: 24px 18px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s;
}

.loan-type-card:hover {
    box-shadow: 0 4px 20px rgba(224, 123, 42, 0.15);
}

.loan-type-card h5 {
    color: #1a2e5a;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1rem;
}

.loan-type-card h5.highlight {
    color: #e07b2a;
}

.loan-type-card p {
    color: #555;
    font-size: 0.88rem;
    line-height: 1.6;
}

.loan-type-card .btn-read-more {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 20px;
    border: 1.5px solid #e07b2a;
    border-radius: 6px;
    color: #e07b2a;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    transition: background 0.3s, color 0.3s;
}

.loan-type-card .btn-read-more:hover {
    background: #e07b2a;
    color: #fff;
}

/* ===== Hero Banner Section ===== */

.hero-banner {
    background-color: #fdf0f0;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(200, 150, 150, 0.08) 10px,
            rgba(200, 150, 150, 0.08) 11px);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    min-height: 550px;
}

/* Left blob shape */
.hero-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -80px;
    width: 320px;
    height: 320px;
    background-color: rgba(220, 180, 180, 0.25);
    border-radius: 50%;
    z-index: 0;
}

.hero-banner .container {
    position: relative;
    z-index: 1;
}

/* ---- Left Content ---- */
.hero-banner-content {
    padding: 20px 0;
}

.hero-banner-content .tagline {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 12px;
}

.hero-banner-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-banner-content .subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 28px;
}

.hero-banner-content .btn-apply {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
    margin-bottom: 28px;
}

.hero-banner-content .btn-apply:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.hero-banner-content .cities-note {
    font-size: 0.88rem;
    color: #444;
    font-weight: 500;
    line-height: 1.7;
    max-width: 480px;
}

/* ---- Right Image Area ---- */
.hero-banner-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 400px;
}

/* Pink circle behind image */
.hero-banner-image .circle-bg {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 340px;
    height: 340px;
    background-color: #e8a0a0;
    border-radius: 50%;
    z-index: 0;
}

.hero-banner-image img.person-img {
    position: relative;
    z-index: 1;
    max-height: 420px;
    object-fit: contain;
}

/* Floating cards */
.float-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
    z-index: 2;
    text-align: center;
    line-height: 1.4;
}

.float-card .card-label {
    font-size: 0.82rem;
    color: #555;
    margin-bottom: 4px;
}

.float-card .card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.float-card-loan {
    bottom: 40px;
    left: 0;
}

.float-card-disbursal {
    top: 50px;
    right: 0;
}

.float-card-disbursal .card-label {
    font-size: 0.85rem;
    color: #555;
}

.float-card-disbursal .card-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-color);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-banner-content h1 {
        font-size: 2.2rem;
    }

    .hero-banner-image {
        min-height: 300px;
        margin-top: 30px;
    }

    .hero-banner-image .circle-bg {
        width: 260px;
        height: 260px;
        right: 20px;
    }

    .float-card-loan {
        left: 10px;
        bottom: 10px;
    }

    .float-card-disbursal {
        right: 10px;
        top: 10px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        padding: 40px 0;
        text-align: center;
    }

    .hero-banner-content h1 {
        font-size: 1.8rem;
    }

    .hero-banner-content .cities-note {
        margin: 0 auto;
    }

    .hero-banner-image {
        display: none;
    }
}

/* <!-- ===== Apply Steps Section Start ===== --> */
/* ===== Apply Steps Section ===== */

.apply-steps-section {
    background-color: #fdf0f0;
    padding: 60px 0;
}

.apply-steps-section .section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.apply-steps-section .section-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3561;
}

/* Steps List */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list .step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.step-icon-box {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background-color: #ede8f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-box i {
    font-size: 1.4rem;
    color: #6a4fc4;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Right Image Box */
.steps-image-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    min-height: 380px;
}

.steps-image-box img {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .steps-image-box {
        margin-top: 36px;
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .apply-steps-section .section-heading h2 {
        font-size: 1.5rem;
    }
}

/* <!-- ===== Apply Steps Section End ===== --> */

/* <!-- ===== Why Choose Section Start ===== --> */
/* ===== Why Choose Section ===== */

.why-choose-section {
    background-color: #fff;
    padding: 60px 0;
}

.why-choose-section .section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.why-choose-section .section-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3561;
}

/* Left Image Box */
.why-choose-image-box {
    background-color: #fde8d8;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    height: 100%;
}

.why-choose-image-box img {
    max-width: 100%;
    height: auto;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.feature-icon-box {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background-color: #ede8f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-box i {
    font-size: 1.3rem;
    color: #6a4fc4;
}

.feature-content h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #2d3561;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .why-choose-image-box {
        margin-bottom: 36px;
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .why-choose-section .section-heading h2 {
        font-size: 1.5rem;
    }
}

/* <!-- ===== Why Choose Section End ===== --> */

/* <!-- ===== Blogs Section Start ===== --> */
/* ===== Blogs Section ===== */

.blogs-section {
    background: color-mix(in srgb, var(--accent-color) 30%, transparent);
    padding: 60px 0;
}

.blogs-section .section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.blogs-section .section-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3561;
}

/* Blog Card */
.blog-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background-color: #f0eefa;
    border-radius: 16px;
    padding: 16px;
    height: 100%;
    transition: box-shadow 0.3s;
}

.blog-card:hover {
    box-shadow: 0 6px 24px rgba(106, 79, 196, 0.12);
}

.blog-card-img {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ddd;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    flex: 1;
}

.blog-card-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.blog-card-content .btn-read-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: #6a4fc4;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.blog-card-content .btn-read-more:hover {
    border-color: #6a4fc4;
}

/* Responsive */
@media (max-width: 767px) {
    .blogs-section .section-heading h2 {
        font-size: 1.5rem;
    }

    .blog-card {
        flex-direction: column;
    }

    .blog-card-img {
        width: 100%;
        height: 160px;
    }
}

/* <!-- ===== Blogs Section End ===== --> */