/* ========================
   Root Variables & Globals
=========================== */
:root {
    --red: #e33;
    --dark: #222;
    --bg: #f5f4ef;
    --radius: 6px;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
}

* {
    box-sizing: border-box;
}


/* ========================
   Body & Base Styles
=========================== */
body {
    background: #fff;
    color: #333;
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================
   Navbar Section
=========================== */
/* Optional: Add spacing between phone and border */
.border-start {
    padding-left: 16px;
}



/* ========================
   Hero Section
=========================== */
/* Optional: Override display heading font size */
.display-5 {
    font-size: 4rem;
}
 .img-fluid {
    max-width: 110%;
    height: auto;
}


.btn-primary {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    background-color: #e0993f !important;
    color: #ffffff;
    transition: 0.5s;
    border-radius: 5px;
    opacity: 1;
    font-weight: 400;
    font-size: 16px;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 12px;
    padding-bottom: 12px;
    border: #e0993f !important;

}

/* ========================
   Approvals Section (Updated)
=========================== */
.approvals {
    background-color: #f5f4ef;
}

.approval-card i {
    color: var(--red);
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}


/* ========================
   Section Base
=========================== */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 32px;
}

.section-title span {
    display: block;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 8px;
}

/* ========================
   Features Section 
=========================== */
/* ========================
   Features Section 
=========================== */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature {
    background-image: url('../assets/img/process-shape.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    padding: 30px 20px;
    height: 280px;
    width: 280px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature i {
    color: var(--red);
    font-size: 32px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.feature h3 {
    font-size: 24px;
    margin-top: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature p {
    font-size: 14px;
    color: #666;
}


/* ========================
   About Section
=========================== */
.about {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 20px;
}


.about h3 {
    font-size: 36px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 16px;
}

.about p {
    margin-bottom: 15px;
    line-height: 2;
    color: #606060;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}

.about strong {
    font-size: 18px;
    color: #606060;
    font-weight: 400;
}

.about li {
    list-style-type: none;
    color: #606060;
    margin-bottom: 10px;
    position: relative;
}


/* ========================
   Fun Facts
=========================== */
/* ========================
   Fun Facts
=========================== */
.fun-facts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 40px 0;
    flex-wrap: wrap;
    gap: 24px;
}

.fact {
    flex: 1;
    min-width: 120px;
    color: #111;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #e53935;
}

.percent-symbol {
    font-size: 2rem;
    font-weight: 700;
    color: #e53935;
    margin-left: 2px;
}

.divider {
    width: 1px;
    height: 60px;
    background: #ddd;
}

.fun-facts h3 {
    font-size: 1.25rem;
    margin-top: 10px;
    margin-bottom: 0;
}




/* ========================
   Tabs Section
=========================== */
/* Section base */
.services-tabs-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

/* Tabs */
.tabs-wrapper {
    margin-bottom: 60px;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 24px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: #e53935;
    color: #fff;
    border-color: #e53935;
}

.tab-content {
    text-align: center;
    margin: 0 auto;
}

.tab-pane {
    display: none;
    text-align: left;
}

.tab-pane.active {
    display: block;
}
.tab-pane ul {
    list-style-type: disc;
    padding-left: 20px;
}

.tab-pane ul li {
    color: #111; /* Text color */
    font-size: 1.1rem;
    position: relative;
    margin-bottom: 8px;
}

.tab-pane ul li::marker {
    color: #e53935; /* 🔴 Red bullet */
    font-size: 1.4rem; /* Bigger bullet */
}



/* ========================
   Solution Section
=========================== */
.solution {
    background: var(--bg);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin: 40px 0;
}

.solution h3 {
    margin: 0;
    font-size: 1.3rem;
}

/* ========================
   Value Section
=========================== */

/* Value Section */
.value-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.value {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.value-img {
    min-width: 50%;
    max-width: 100%;
    height: auto;
}

.value-img img {
    max-width: 100%;
    border-radius: 12px;
}

.value-content {
    flex: 1;
    min-width: 280px;
}

.value-content span {
    display: block;
    color: #e53935;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.value-content p {
    margin-bottom: 15px;
}

.value-content ul {
    list-style: disc inside;
    padding-left: 0;
    color: #444;
}

/* ========================
   Testimonials Section
=========================== */
.testimonials {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 20px;
}

.testimonial-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 260px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 12px;
}

.testimonial img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* ========================
   loans and calculator
=========================== */

.loan-section {
    background: #fff;
}

.loan-subtitle {
    color: #dc3545;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    margin-bottom: 8px;
}

.loan-title {
    font-size: 2rem;
    font-weight: 700;
}

.loan-desc {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.loan-block-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.loan-subtitle {
    color: #dc3545;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 6px;
}

.loan-title {
    font-size: 2rem;
    font-weight: 700;
}

.loan-desc {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.loan-step-wrapper {
    position: relative;
    margin-left: 30px;
    padding-left: 40px;
}

.loan-step-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 16px;
    width: 2px;
    height: 100%;
    background-color: rgb(231, 60, 62);
    z-index: 0;
}

.loan-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
    z-index: 1;
}

.step-number {
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
    background-color: #fff;
    border: 2px solid #dc3545;
    border-radius: 50%;
    font-weight: 600;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.loan-rate-form {
    background-color: #dc3545;
    border-radius: 8px;
    padding: 30px;
}

.loan-rate-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.loan-rate-form .form-control,
.loan-rate-form .form-select {
    border: none;
    border-radius: 4px;
    height: 45px;
    font-size: 0.95rem;
}

.loan-rate-form .form-control::placeholder {
    color: #999;
}

.loan-rate-form .btn {
    font-weight: 600;
    height: 45px;
}


/* ========================
   Blog Section
=========================== */

.blog-section {
    background: linear-gradient(to bottom, #fbf5ec 0%, #ffffff 100%);
    padding-top: 60px;
    padding-bottom: 160px;
    /* large space below */
}

.custom-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}


.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-subtitle {
    color: #dc3545;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.blog-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.blog-description {
    max-width: 600px;
    margin: 0 auto;
    color: #6c757d;
    font-size: 0.95rem;
}


.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.blog-content {
    padding: 20px;
    flex-grow: 1;
}

.blog-date {
    color: #dc3545;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 10px;
}

.blog-post-title {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #000;
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-read-more {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #dc3545;
}


/* ========================
   Footer
=========================== */
.footer-custom {
    background-color: #0d0d0d;
    font-size: 17px;
    /* Increased base text size */
    padding-top: 180px;
    /* More vertical space */
    padding-bottom: 150px;
}

.footer-custom .container {
    max-width: 1140px;
    padding-left: 20px;
    /* reduced side space */
    padding-right: 20px;
}

.footer-custom .footer-link {
    display: block;
    color: #ffffff;
    margin-bottom: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    /* Larger link text */
}

.footer-custom .footer-link:hover {
    color: #e50914;
}

.footer-custom .social-icons {
    display: flex;
    gap: 8px;
    /* tighter spacing */
    margin-left: 10px;
}

.footer-custom .social-icons a {
    color: #ffffff;
    font-size: 22px;
    transition: color 0.3s ease;
}

.footer-custom .social-icons a:hover {
    color: #e50914;
}

.footer-custom .icon-red {
    color: #e50914;
    font-size: 18px;
    margin-top: 2px;
}

.footer-custom .footer-bottom {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid #222;
    /* dark slim line */
}

.footer-custom .footer-heading {
    font-size: 22px;
    /* Slightly larger headings */
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
    /* Slim underline */
}

.footer-custom p,
.footer-custom span,
.footer-custom .footer-bottom p {
    font-size: 16px;
    line-height: 1.8;
}