@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

h2 {
    font-size: 2.5rem;
    color: #b52a24;
    font-weight: 800;
    padding-bottom: 2vh;
}

section {
    padding: 0 8%;
    padding-top: 5vh;
}

.image-section {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    padding: 0;
}

.image-section img {
    width: 100%;
    height: 100%;
}

/* body {
    background: #f3f3f3;
} */

/* ================= HEADER ================= */

        .header {
            width: 100%;
            background: #fff;
            position: relative;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .navbar {
            max-width: 1200px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            position: relative;
        }

        /* ================= LOGO ================= */

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
        }

        .logo img {
            width: 80%;
            height: 50px;
            /*max-width: 220px;*/
            object-fit: cover;
        }

        /* ================= MENU ================= */

        .nav-links {
            display: flex;
            align-items: center;
            gap: 5px;
            list-style: none;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links li a {
            text-decoration: none;
            color: #b52d22;
            font-size: 18px;
            font-weight: 500;
            transition: 0.3s;
            padding: 12px 16px;
            display: block;
            border-radius: 4px;
        }

        /* Hover Effect */

        .nav-links li a:hover {
            background: #b63128;
            color: #fff;
        }

        /* ================= APPLY BUTTON ================= */

        .apply-btn {
            background: #b63128;
            color: #fff !important;
            padding: 14px 26px !important;
            border-radius: 2px;
            display: flex !important;
            align-items: center;
            gap: 10px;
            font-size: 18px !important;
        }

        .apply-btn:hover {
            background: #91241d !important;
            color: #fff !important;
        }

        /* ================= DROPDOWN ================= */

        .dropdown-menu {
            position: absolute;
            top: 120%;
            left: 0;
            background: #fff;
            min-width: 220px;
            list-style: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);

            transition: 0.3s ease;
            z-index: 999;
        }

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu li a {
            padding: 14px 18px;
            width: 100%;
            border-radius: 0;
        }

        .dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* ================= HAMBURGER ================= */

        .menu-toggle {
            display: none;
            width: 55px;
            height: 55px;
            border: 1px solid #222;
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: #fff;
        }

        .menu-toggle i {
            font-size: 28px;
            color: #666;
        }

/* FOOTER */
.footer {
    background: #b52a24;
    color: #fff;
    width: 100%;
    font-family: "Poppins", sans-serif;
}

.footer a {
    color: #3b82f6;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer a:hover {
    transform: translateX(6px);
    text-decoration: underline;
}

/* TOP AREA */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* BOX */
.footer-box h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.line {
    width: 70px;
    height: 4px;
    background: #fff;
    margin-bottom: 25px;
}

.footer-box p,
.footer-box li {
    font-size: 1rem;
    line-height: 1.8;
    color: #f5f5f5;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 12px;
}

.footer-box a {
    color: #fff;
    text-decoration: none;
}

.contact-info {
    margin-top: 15px;
}

/* GRIEVANCE */
.grievance {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    padding: 20px 20px 50px;
}

.grievance h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #fff;
}

.grievance p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

.grievance a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* COPYRIGHT */
.copyright {
    background: #f4b400;
    color: #111;
    text-align: center;
    padding: 18px;
    font-size: 1rem;
    font-weight: 600;
}

/* SECTION */
.loan-section {
    width: 100%;
    background: url('../images/firstbannerbg.jpg');
    padding: 4vh 10%;
    overflow: hidden;
}

/* CONTAINER */
.loan-container {
    /* max-width: 1200px; */
    /* margin: auto; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT */
.loan-left {
    flex: 1;
    text-align: center;
}

.loan-left h2 {
    font-size: 2rem;
    color: #b52a24;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 40px;
}

.loan-left h2 span {
    display: block;
}

.loan-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    display: block;
    margin: auto;
}

/* FORM BOX */
.loan-form-box {
    width: 55%;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.loan-form-box h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #b52a24;
    margin-bottom: 25px;
}

/* FORM */
.loan-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width:100%;
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #b52a24;
}

/* CHECKBOX */
.checkbox-area {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-area p {
    font-size: 12px;
    line-height: 1.7;
    color: #555;
}

/* BUTTON */
.submit-btn {
    grid-column: 1 / -1;
    width: 160px;
    height: 50px;
    margin: 10px auto 0;
    border: none;
    border-radius: 50px;
    background: #b52a24;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #8f1f1a;
    transform: translateY(-3px);
}

/* CONTAINER */
.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.features-container2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 4vh;

}

/* CARD */
.feature-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #b52a24;
    transition: 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* IMAGE AREA */
.feature-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image2 {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image2 img {
    height: 100%;
}

/* CONTENT */
/* CONTENT */
.feature-content{
    background: transparent;
    text-align: center;
    padding: 0 15px 20px;
    margin-top: 12px;   /* image ke upar overlap */
    position: relative;
    z-index: 2;
}

/* HEADING */
.feature-content h3{
    display: inline-block;
    background: linear-gradient(135deg,#b52a24,#d94841);
    color: #fff;
    padding: 5px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    box-shadow: 0 8px 20px rgba(181,42,36,.25);
}


/* CONTAINER */


/* TEXT */
.mudra-container p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

/* CATEGORY LIST */
.mudra-list {
    margin: 35px 0;
}

.mudra-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.mudra-item i {
    font-size: 2rem;
    color: #2563eb;
    margin-top: 2px;
}

.mudra-item p {
    margin-bottom: 0;
}

/* SUB TITLE */
.mudra-container h3 {
    font-size: 1.8rem;
    color: #111;
}

/* ELIGIBILITY */
.eligibility-list {
    padding-left: 25px;
}

.eligibility-list li {
    font-size: 1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 8px;
}

/* PRODUCTS SECTION */
.mudra-products-section {
    background: #efd6ac;
}

/* CONTAINER */
.mudra-products-container {
    width: 100%;
}

/* TITLE */
.mudra-products-container h3,
.product-box h3 {
    font-size: 2rem;
    color: #111;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-box h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

/* TEXT */
.top-text,
.product-box p,
.bottom-text {
    font-size: 1.2rem;
    color: #333;
}

/* PRODUCT BOX */
.product-box {
    margin-top: 35px;
}

/* SUB TITLE */

/* LIST */
.product-box ul {
    margin-top: 18px;
    padding-left: 28px;
}

.product-box ul li {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 6px;
}

/* BOTTOM TEXT */
.bottom-text {
    margin-top: 35px;
}

/* SECTION */


/* CONTAINER */
.loan-doc-container {
    padding-bottom: 4vh;
}

/* TABLE WRAPPER */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

/* TABLE */
.loan-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

/* HEAD */
.loan-table thead {
    background: #ececec;
}

.loan-table th {
    text-align: left;
    padding: 18px 20px;
    font-size: 1.2rem;
    border: 1px solid #d5d5d5;
}

/* BODY */
.loan-table td {
    padding: 25px 20px;
    vertical-align: top;
    border: 1px solid #d5d5d5;
    font-size: 1rem;
    line-height: 1.9;
}

/* LEFT COLUMN */
.loan-table td:first-child {
    width: 35%;
    font-size: 1.1rem;
}

/* LIST */
.loan-table ul {
    padding-left: 22px;
}

.loan-table ul li {
    margin-bottom: 6px;
    color: #333;
}

/* ROW HOVER */
.loan-table tbody tr:hover {
    background: #fafafa;
}


/* COMMON SECTION */
.mudra-activity-section,
.funding-section {
    background: #efd6ac;
    padding-bottom: 2vh;
}


/* TITLE */
.mudra-activity-container h2,
.funding-container h2 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 10px;
    font-weight: 500;
}

/* TEXT */
.section-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
}

/* ACTIVITY LIST */
.activity-list {
    padding-left: 25px;
}

.activity-list li {
    margin-bottom: 28px;
    color: #111;
}

.activity-list strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.activity-list p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
}

/* FUNDING LIST */
.funding-list {
    padding-left: 25px;
}

.funding-list>li {
    margin-bottom: 28px;
    font-size: 1.15rem;
    color: #111;
}

.funding-list strong {
    font-size: 1.25rem;
}

.funding-list ul {
    margin-top: 12px;
    padding-left: 25px;
}

.funding-list ul li {
    font-size: 1.02rem;
    color: #333;
}

.documents-section {
    padding-bottom: 4vh;
}

/* TEXT */
.benefits-text,
.documents-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 25px;
}

/* BENEFITS LIST */
.benefits-list {
    border: 1px solid #1f2f46;
    border-radius: 6px;
    overflow: hidden;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid #1f2f46;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item i {
    color: #1f2f46;
    font-size: 1.2rem;
    margin-top: 2px;
}

.benefit-item p {
    font-size: 1rem;
    color: #222;
}

/* DOCUMENTS */
.documents-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-top: 20px;
}

/* IMAGE */
.documents-image {
    width: 35%;
}

.documents-image img {
    width: 100%;
    max-width: 320px;
    display: block;
}

/* CONTENT */
.documents-content {
    flex: 1;
}

/* DOCUMENT LIST */
.documents-list {
    border: 1px solid #1f2f46;
    border-radius: 6px;
    overflow: hidden;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid #1f2f46;
}

.document-item:last-child {
    border-bottom: none;
}

.document-item i {
    color: #1f2f46;
    font-size: 1.2rem;
}

.document-item p {
    font-size: 1rem;
    color: #222;
}

/* FAQ SECTION */
.faq-section {
    padding-bottom: 4vh;
    background: #f2d85d;
}

/* FAQ BOX */
.faq-box {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

/* FAQ ITEM */
.faq-item {
    border-bottom: 1px solid #e4c64f;
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #0c1b35;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
    transition: 0.4s;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question i {
    font-size: 28px;
    transition: 0.4s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #fff;
}

.faq-answer p {
    padding: 0 20px 25px;
    font-size: 1rem;
    line-height: 32px;
    color: #444;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}


/* ====================Anout Us page ================= */
.first-section {
    width: 100%;
    height: 220px;
    background: linear-gradient(
      rgba(255, 140, 0, 0.9),
      rgba(255, 200, 0, 0.9)
    ),
        url("../images/thirdbannerimage.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.first-section h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    font-family: Arial, sans-serif;
}


.about-wrapper{
  width:100%;
  padding:70px 8%;
}

/* Top Section */
.about-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;
  flex-wrap:wrap;
}

/* Images */
.about-images{
  position:relative;
  flex:1;
  min-width:300px;
  max-width:450px;
}

.main-img{
  width:100%;
  border-radius:4px;
  display:block;
}

/* Content */
.about-content{
  flex:1;
  min-width:300px;
}

/* .about-content h2,
.why-section h2{
  font-size:48px;
  color:#b52b2b;
  margin-bottom:25px;
  font-weight:700;
} */

.about-content p,
.why-section p{
  font-size:1rem;
  color:#222;
  margin-bottom:18px;
}

/* Why Section */
.why-section{
  text-align:center;
  margin-top:120px;
}

/* Main Layout */
.vision-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;
  flex-wrap:wrap;
}

/* Left Content */
.vision-content{
  flex:1;
  min-width:320px;
}

.vision-content p{
  font-size:1rem;
  color:#222;
  margin-bottom:28px;
}

.vision-content strong{
  font-weight:700;
}

/* Right Gallery */
.vision-gallery{
  flex:1;
  display:flex;
  justify-content:center;
  min-width:320px;
}

.gallery-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:4px;
  display:block;
}

/* Make first image wider */
.gallery-grid img:nth-child(1){
  grid-column:span 1;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f5f5f5;
}

/* Section */
.status-section{
  display:flex;
  justify-content:center;
  margin:5vh 0;
}

/* Box */
.status-box{
  width:100%;
  max-width:700px;
}

/* Heading */
.status-box h2{
    font-size: 1.5rem;
}

/* Label */
.input-group label{
  display:block;
  font-size:20px;
  font-weight:600;
  color:#000;
  margin-bottom:12px;
}

.input-group label i{
  margin-right:6px;
}

/* Input */
.input-group input{
  width:100%;
  height:50px;
  border:1px solid #d1d5db;
  border-radius:8px;
  padding:0 18px;
  font-size:18px;
  outline:none;
  transition:0.3s ease;
  background:#fff;
}

.input-group input:focus{
  border-color:#b52b2b;
  box-shadow:0 0 0 3px rgba(181,43,43,0.1);
}

/* Button */
.status-box button{
  margin-top:35px;
  background:#b52b2b;
  color:#fff;
  border:none;
  padding:16px 40px;
  border-radius:40px;
  font-size:22px;
  font-weight:500;
  cursor:pointer;
  transition:0.3s ease;
  display:block;
  margin-left:auto;
  margin-right:auto;
  margin-bottom: 4vh;
}

.status-box button:hover{
  background:#982222;
}

/* Layout */
.contact-container{
  display:flex;
  gap:40px;
  align-items:stretch;
  flex-wrap:wrap;
  margin-bottom: 4vh;
}

/* Left Side */
.contact-info{
  flex:1;
  background:#b92d28;
  color:#fff;
  border-radius:25px;
  padding:50px 40px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-width:320px;
}

.info-box{
  text-align:center;
}

.info-box p{
  font-size:1rem;
}

/* Contact Details */
.contact-details{
  display:flex;
  justify-content:space-between;
  margin:50px 0;
  gap:20px;
  flex-wrap:wrap;
}

.detail-box{
  flex:1;
  min-width:180px;
  text-align:center;
}

.detail-box h3{
  font-size:1.25rem;
  margin-bottom:15px;
  font-weight:500;
}

.detail-box a{
  color:#fff;
  text-decoration:none;
  font-size:18px;
}

/* Social Icons */
.social-icons{
  display:flex;
  justify-content:center;
  gap:18px;
}

.social-icons a{
  width:45px;
  height:45px;
  border:2px solid #fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  text-decoration:none;
  transition:0.3s ease;
}

.social-icons a:hover{
  background:#fff;
  color:#b92d28;
}

/* Right Form */
.contact-form{
  flex:1;
  min-width:320px;
  background:#fff;
  padding:25px;
  box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.contact-form form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* Inputs */
.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #d1d5db;
  padding:16px 18px;
  font-size:17px;
  outline:none;
  border-radius:4px;
  font-family:inherit;
}

.contact-form textarea{
  height:120px;
  resize:none;
}

/* Button */
.contact-form button{
  background:#b92d28;
  color:#fff;
  border:none;
  padding:15px;
  font-size:20px;
  cursor:pointer;
  transition:0.3s ease;
}

.contact-form button:hover{
  background:#992420;
}

/* =========================
   COMMON
========================= */

.section-title{
    text-align:center;
}

/* =========================
   ABOUT SECTION
========================= */

.mudra-about-section{
    background:#f5f5f5;
}

.mudra-about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.mudra-about-content{
    flex:1;
}

/* .mudra-about-content h2{
    font-size:3rem;
    color:#b52a24;
    margin-bottom:25px;
    font-weight:700;
} */

.mudra-about-content p{
    font-size:1.05rem;
    color:#222;
    margin-bottom:20px;
}

.mudra-about-image{
    flex:1;
}

.mudra-about-image img{
    width:100%;
    border-radius:10px;
    display:block;
}

/* =========================
   FEATURES
========================= */

.mudra-features-section{
    background:#fff;
}

.mudra-features-section h2{
    font-size:2rem;
}

.mudra-features-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.features-column{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.feature-box{
    border:1px solid #1f2f46;
    padding:22px;
    border-radius:6px;
    font-size:1rem;
    line-height:1.8;
    background:#fff;
    transition:0.3s ease;
}

.feature-box:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* =========================
   ELIGIBILITY
========================= */

.eligibility-section{
    background:#f5f5f5;
}


.eligibility-container{
    display:flex;
    align-items:center;
    gap:60px;
}

.eligibility-image{
    flex:1;
}

.eligibility-image img{
    width:100%;
    max-width:450px;
}

.eligibility-content{
    flex:1;
}

.eligibility-note{
    font-size:1rem;
    line-height:1.8;
    margin-bottom:25px;
}

.eligibility-list{
    border:1px solid #1f2f46;
    border-radius:6px;
    overflow:hidden;
}

.eligibility-item{
    padding:18px 20px;
    border-bottom:1px solid #1f2f46;
    font-size:1rem;
    background:#fff;
}

.eligibility-item:last-child{
    border-bottom:none;
}

/* =========================
   BUSINESS LOAN SECTION
========================= */
.business-loan-section{
    background: #fff;
}

.business-loan-container h3{
    font-size:2rem;
    color:#111;
    margin:35px 0 25px;
    font-weight:500;
}

.business-loan-container p{
    font-size:1.05rem;
    line-height:1.9;
    color:#222;
    margin-bottom:20px;
}
.business-steps-section h2{
    font-size: 2.5rem;
}

/* FEATURE ITEMS */
.business-features{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.business-item{
    font-size:1.05rem;
    line-height:1.9;
    color:#222;
}

.business-item strong{
    color:#111;
}

.bottom-text{
    margin-top:35px;
}

/* =========================
   STEPS SECTION
========================= */

.section-title{
    text-align:center;
    font-size:3rem;
    color:#b52a24;
    margin-bottom:45px;
    font-weight:700;
}

/* STEPS CONTAINER */
.steps-container{
    border:1px solid #1f2f46;
    border-radius:6px;
    overflow:hidden;
}

/* STEP BOX */
.step-box{
    padding:20px 22px;
    border-bottom:1px solid #1f2f46;
    font-size:1rem;
    line-height:1.8;
    background:#fff;
    transition:0.3s ease;
}

.step-box:last-child{
    border-bottom:none;
}

.step-box:hover{
    background:#fafafa;
}

.step-box strong{
    color:#111;
}
/* =======================*/

.loan-status-section{
    width:100%;
    
}

/* TOP HEADER */
.top-header{
    background:#fff;
    padding:30px 10%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

/* LOGOS */
.logo-area{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.logo-area img{
    width:100%;
    height:100px;
    object-fit:contain;
}

/* APPLICATION INFO */
.application-info{
    width:320px;
}

.info-box{
    margin-bottom:18px;
}

.info-box label{
    display:block;
    font-size:14px;
    margin-bottom:6px;
    font-weight:600;
    color:#222;
}

/* STATUS */
.status-text{
    text-align:center;
    min-width:220px;
}

.status-text p{
    font-size:14px;
    color:#444;
    margin-bottom:10px;
}

.status-text h2{
    color:#d4b000;
    font-size:42px;
    font-weight:800;
}

/* COMMON FIELD */
.field{
    background:#dfe3e6;
    border:1px solid #ccc;
    padding:8px 14px;
    border-radius:4px;
    font-weight:600;
    color:#222;
}

/* SECOND ROW */
.status-container{
    display:flex;
    gap:20px;
    padding:35px 10%;
    background:#b01255;
}

/* LEFT FORM */
.status-left{
    flex:1;
    background:#fff;
    padding:20px;
    border-radius:6px;
}

.details-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.detail-item label{
    display:block;
    margin-bottom:6px;
    font-size:14px;
    font-weight:600;
    color:#222;
}

/* RIGHT CARD */
.status-card{
    width:330px;
    background:#630000;
    border-radius:6px;
    overflow:hidden;
    text-align:center;
    padding-bottom:20px;
}

.status-card img{
    width:100%;
    height:220px;
    object-fit:contain;
    background:#fff;
}

.status-btn{
    margin:12px 15px;
    padding:12px;
    border-radius:6px;
    font-size:15px;
    font-weight:600;
}

.green{
    background:#79e6c6;
}

.yellow{
    background:#f6ff00;
}

.status-card h3{
    color:#fff;
    font-size:30px;
    margin-top:18px;
}

.status-card p{
    color:#fff;
    margin-top:8px;
}

/* PAYMENT BAR */
.payment-bar{
    background:#ffef00;
    text-align:center;
    padding:22px;
    font-size:34px;
    font-weight:700;
    color:#111;
}

/* RESPONSIVE */
@media(max-width:1100px){

    .top-header{
        flex-direction:column;
        align-items:flex-center;
    }

    .application-info{
        width:100%;
    }

    .status-text{
        text-align:left;
    }

}

@media(max-width:991px){

    .status-container{
        flex-direction:column;
    }

    .status-card{
        width:100%;
    }

}

@media(max-width:768px){

    .details-grid{
        grid-template-columns:1fr;
    }

    .status-text h2{
        font-size:32px;
    }

    .payment-bar{
        font-size:24px;
    }

}

@media(max-width:500px){

    .top-header{
        padding:20px 15px;
    }

    .status-container{
        padding:20px 15px;
    }

    .status-left{
        padding:15px;
    }

    .logo-area{
        gap:10px;
    }

    .logo-area img{
        height:40px;
    }

    .field{
        padding:10px;
        font-size:14px;
    }

    .status-card h3{
        font-size:22px;
    }

}
