.section-card {

    padding: 70px 0;

    margin: 80px auto;

}

/* Hero Section */

.hero-section {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 40px 6%;

    background: linear-gradient(135deg, #f8fbff, #eef5ff);

    min-height: auto;

    margin-bottom: 0;

}

.hero-content {

    flex: 0.9;

}

.hero-badge {

    display: inline-block;

    padding: 8px 18px;

    background: #dff4ff;

    color: #1b5e9e;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;

}

.hero-content h1 {

    font-size: 3.4rem;

    color: #28328c;

    margin-bottom: 20px;

    line-height: 1.2;

}

.hero-content p {

    font-size: 18px;

    color: #666;

    line-height: 1.8;

    max-width: 620px;

    margin-bottom: 35px;

}

.hero-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

}

.primary-btn {

    background: #28328c;

    color: #fff;

    padding: 14px 30px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.primary-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 20px rgba(40, 50, 140, .25);

}

.secondary-btn {

    border: 2px solid #28328c;

    color: #28328c;

    padding: 14px 30px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.secondary-btn:hover {

    background: #28328c;

    color: #fff;

}

.hero-image {

      flex:1.4;
    text-align:center;
}

.hero-image img {

     width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: auto;

  /*  animation: float 4s ease-in-out infinite;*/
    
}

.coming-soon-note{

    margin-top:15px;

    font-size:15px;

    color:#64748b;

    font-style:italic;
}

@keyframes float {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-12px);

    }

    100% {

        transform: translateY(0px);

    }

}

@media(max-width:992px) {

     .hero-section{
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 5%;
        gap: 25px;
    }

    .hero-content p {

        max-width: 100%;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-content h1 {

        font-size: 2.6rem;

    }

}














/* About Loan Section */


.about-loan-section {
  
/*
       background:linear-gradient(
        180deg,
        #f8fbff 0%,
        #eef6ff 100%
    );
    */
    background: #ffffff;


    margin: 0;


    padding: 40px 5%;
}

.about-loan-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;



}

.about-loan-image {

    flex: 1;

}

.about-loan-image img {

    width: 100%;

      max-width:700px;

    height:650px;

    object-fit: cover;

    border-radius: 24px;

}

.about-loan-content {

    flex: 1;

}

.section-tag {

    display: inline-block;

    padding: 8px 18px;

    background: #e8f3ff;

    color: #28328c;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;

}

.about-loan-content h2 {

    font-size: 2.4rem;

    color: #28328c;

    margin-bottom: 20px;

}

.about-loan-content p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 18px;

}

.loan-highlights {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 30px;

}

.highlight-box {

    background: #f8fbff;

    padding: 25px;

    border-radius: 15px;

    transition: .3s;

    border: 1px solid #eef2f7;

}

.highlight-box:hover {

    transform: translateY(-6px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.highlight-box i {

    font-size: 30px;

    color: #1cb6f1;

    margin-bottom: 15px;

}

.highlight-box h4 {

    color: #28328c;

    margin-bottom: 10px;

}

.highlight-box p {

    margin: 0;

    font-size: 15px;

}


@media(max-width:768px){

    .about-loan-container{
        flex-direction:column;
    }

    .about-loan-image{
        width:100%;
        margin-bottom:25px;
    }

    .about-loan-image img{

        width:100%;

        max-width:350px;

        height:auto;      /* Important */

        object-fit:contain;

        display:block;

        margin:0 auto;
    }
    .loan-highlights{

    grid-template-columns:1fr;

    gap:15px;
}

}

@media(max-width:992px){

    .about-loan-container{

        flex-direction:column;

        gap:35px;
    }

    .about-loan-content{

        text-align:center;
    }

    .loan-highlights{

        max-width:600px;

        margin:30px auto 0;
    }
    
}














/* Why Choose Us */

.why-choose-section {
  /*  background: #f8fbff; */

   background:linear-gradient(
        180deg,
        #f8fbff 0%,
        #eef6ff 100%
    );
    padding: 40px 8%;
    padding:30px 40px 40px;

    margin-top:20px;
}


.section-heading {

    text-align: center;

  /*  margin-bottom: 20px; */

    margin:0 0 30px 0;

    padding:0;

}

.section-heading h2 {

    font-size: 2.5rem;

    color: #28328c;

    margin: 10px 0;

}

.section-heading p {

    max-width: 700px;

    margin: auto;

    color: #666;

    line-height: 1.8;
    margin-bottom: 0;

}

/* Features */

.features-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.feature-card {

    background: #ffffff;

    border: 1px solid #eef2f7;

    border-radius: 18px;

    padding: 35px 25px;

    text-align: center;

    transition: all .35s ease;

}

.feature-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);

    border-color: #1cb6f1;

}

.feature-icon {

    width: 70px;

    height: 70px;

    margin: auto;

    border-radius: 50%;

    background: #eef8ff;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

}

.feature-icon i {

    font-size: 28px;

    color: #1cb6f1;

}

.feature-card h3 {

    color: #28328c;

    margin-bottom: 15px;

}

.feature-card p {

    color: #666;

    line-height: 1.7;

    font-size: 15px;

}





/* HOW IT WORKS SECTION */

.journey-section {
 /*   background: #ffffff; */

     background:linear-gradient(
        180deg,
        #f8fbff 0%,
        #eef6ff 100%
    );
     padding: 15px 8% 35px;
    
}

.journey-tag-wrapper{
    text-align:center;
    margin-bottom:20px;
}

.journey-flow {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
    margin-bottom: 0;
padding-bottom: 0;
}

.journey-step {

    flex: 1;

    min-width: 180px;

    text-align: center;

    padding: 25px 20px;

    border-radius: 18px;

    border: 1px solid #eef2f7;

    transition: .3s;
    position: relative;

   /*  background: linear-gradient(135deg, #f8fbff, #eef5ff); */
   background: #ffffff;

}

.journey-step:hover {

    transform: translateY(-8px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.journey-icon {

    width: 60px;

    height: 60px;

    background: #eef8ff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto auto 15px;

}

.journey-icon i {

    color: #1cb6f1;

    font-size: 28px;

}

.journey-step h3 {

    color: #28328c;

    margin-bottom: 10px;

}

.journey-step p {

    color: #666;

    font-size: 15px;

}

.journey-arrow {

    color: #1cb6f1;

    font-size: 24px;
    }

.journey-step:not(:last-child)::after{

    content:"";

    position:absolute;

    top:50%;

    right:-20px;

    width:20px;

    height:2px;

    background:#1cb6f1;

}


@media(max-width:991px){

    .journey-step::after{

        display:none;

    }

}

@media (min-width:992px) and (max-width:1199px){

    .journey-section{

        padding:50px 5%;

    }

    .journey-flow{

        gap:15px;

    }

    .journey-step{

        min-width:170px;

        padding:25px 15px;

    }

    .journey-step h3{

        font-size:22px;

    }

}


@media (min-width:768px) and (max-width:991px){

    .journey-section{

        padding:45px 5%;

    }

    .journey-flow{

        justify-content:center;

        gap:20px;

    }

    .journey-step{

        flex:0 0 45%;

        min-width:auto;

    }

    .journey-arrow{

        display:none;

    }

}

@media (min-width:576px) and (max-width:767px){

    .journey-section{

        padding:40px 5%;

    }

    .journey-flow{

        flex-direction:column;

        gap:18px;

    }

    .journey-step{

        width:100%;

        max-width:420px;

    }

    .journey-arrow{

        transform:rotate(90deg);

        font-size:28px;

    }

}

@media (max-width:575px){

    .journey-section{

        padding:35px 20px;

    }

    .journey-flow{

        flex-direction:column;

        gap:15px;

    }

    .journey-step{

        width:100%;

        min-width:100%;

        padding:25px 15px;

    }

    .journey-icon{

        width:60px;

        height:60px;

    }

    .journey-icon i{

        font-size:24px;

    }

    .journey-step h3{

        font-size:20px;

    }

    .journey-step p{

        font-size:14px;

    }

    .journey-arrow{

        transform:rotate(90deg);

        font-size:24px;

    }

}
















/* Where Can You Use It */

.loan-use-section {
  /*  background: #f8fbff; */

    background: #ffffff;
    padding-top:0px;
    padding-bottom: 10px;
    border-radius: 30px;
      margin:20px 0 0;
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.use-card {
  /*  background: #fff; */
     border-color:linear-gradient(
        180deg,
        #f8fbff 0%,
        #eef6ff 100%
    );
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: .3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
}

.use-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
}

.use-card i {
    font-size: 42px;
    color: #1cb6f1;
    margin-bottom: 20px;
}

.use-card h3 {
    color: #28328c;
    margin-bottom: 10px;
}

.use-card p {
    color: #666;
    font-size: 15px;
}

@media(max-width:992px) {
    .use-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .use-grid {
        grid-template-columns: 1fr;
    }
}


/* EMI Calculator 
.emi-section{

    background:linear-gradient(135deg,#28328c,#3556d6);

    padding:50px 8%;

    margin:80px 0;

    border-radius:30px;

}

.emi-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.emi-content{

    flex:1;

    color:#fff;

}

.emi-content h2{

    font-size:3rem;

    margin:20px 0;

}

.emi-content p{

    line-height:1.8;

    opacity:.9;

}

.emi-features{

    margin-top:30px;

    list-style:none;

}

.emi-features li{

    margin-bottom:15px;

    font-size:17px;

}

.emi-features i{

    color:#55e0ff;

    margin-right:10px;

}

.calculator-card{

    flex:1;

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.calculator-group{

    margin-bottom:25px;

}

.calculator-group label{

    display:block;

    margin-bottom:10px;

    color:#28328c;

    font-weight:600;

}

.calculator-group input,

.calculator-group select{

    width:100%;

}

.emi-result{

    text-align:center;

    background:#f5fbff;

    padding:25px;

    border-radius:15px;

    margin:30px 0;

}

.emi-result h4{

    color:#666;

}

.emi-result h2{

    color:#28328c;

    margin-top:10px;

    font-size:2.2rem;

}
*/

/*====================================
  ELIGIBILITY & DOCUMENTS
====================================*/

.eligibility-section{

    background:#ffffff;

   padding:20px 5% 15px;

    margin: 0;



}

.eligibility-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:25px;

}

.eligibility-card{

    background:#f8fbff;

    border:1px solid #e5eef9;

    border-radius:20px;

    padding:35px;

    transition:.3s;
    display:flex;

    flex-direction:column;

    justify-content:center;
}

.eligibility-card ul{

    list-style:none;

    padding:0;

    margin:0 auto;

    width:80%;

}

.eligibility-card ul li{

    text-align:center;

    padding:12px 0;

    border-bottom:1px solid #edf2f7;

}

.eligibility-card:hover{

    transform:translateY(-6px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.eligibility-card h3{

    color:#28328c;

    margin-bottom:25px;

    display:flex;

    align-items:center;

    gap:12px;
    justify-content:center;


}

.eligibility-card h3 i{

    color:#1cb6f1;

    font-size:26px;

}

.eligibility-card ul{

    list-style:none;

    padding:0;

}

.eligibility-card ul li{

    padding:12px 0;

    border-bottom:1px solid #edf2f7;

    color:#555;

    font-size:16px;

}

.eligibility-card ul li:last-child{

    border:none;

}

.eligibility-card ul li::before{

    content:"✓";

    color:#1cb6f1;

    font-weight:bold;

    margin-right:10px;

}

/*==================================
            FAQ
==================================*/

.faq-section{

    background:#f5f9ff;

   padding:35px 6% 25px;
   margin: 0;

}

.faq-section .section-heading{

    margin-bottom:20px;

}

.faq-section details{
     margin-bottom:12px;

    padding:16px 22px;


    background:#fff;

    border-radius:15px;


    border-left:4px solid #1cb6f1;

    box-shadow:0 4px 12px rgba(0,0,0,.05);

    transition:.3s;

    

}

.faq-section details:hover{

    transform:translateY(-3px);

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.faq-section summary{

    cursor:pointer;

    list-style:none;

    font-size:18px;

    font-weight:600;

    color:#28328c;

    display:flex;

    align-items:center;

}

.faq-section summary::-webkit-details-marker{

    display:none;

}

.faq-section summary::before{

    content:"+";

    font-size:24px;

    font-weight:bold;

    color:#1cb6f1;

    width:28px;

    margin-right:10px;

    transition:.3s;

}

.faq-section details[open] summary::before{

    content:"−";

}

.faq-section details p{

    margin-top:15px;

    padding-top:15px;

    border-top:1px solid #eef2f7;

    color:#666;

    line-height:1.8;

    font-size:15px;

}

.faq-section details:last-child{

    margin-bottom:0;

}

/*====================================
  CTA
====================================

.cta-section{

    background:linear-gradient(135deg,#28328c,#1cb6f1);

    padding:90px 6%;

    border-radius:30px;

    margin:80px 0;

}

.cta-content{

    text-align:center;

    max-width:800px;

    margin:auto;

}

.cta-content .section-tag{

    background:rgba(255,255,255,.18);

    color:#fff;

}

.cta-content h2{

    color:#fff;

    font-size:3rem;

    margin:20px 0;

}

.cta-content p{

    color:rgba(255,255,255,.9);

    font-size:18px;

    line-height:1.8;

    margin-bottom:40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons .primary-btn{

    background:#fff;

    color:#28328c;

}

.cta-buttons .primary-btn:hover{

    background:#f5f5f5;

}

.cta-buttons .secondary-btn{

    border:2px solid #fff;

    color:#fff;

}

.cta-buttons .secondary-btn:hover{

    background:#fff;

    color:#28328c;

}

*/


/*====================================
  RESPONSIVE
====================================*/

@media(max-width:992px){

.eligibility-grid{

    grid-template-columns:1fr;

}

.cta-content h2{

    font-size:2.4rem;

}

}

@media(max-width:480px){

.section-heading h2{

    font-size:1.8rem;

}

.eligibility-card{

    padding:25px;

}

.eligibility-card h3{

    font-size:20px;

}

.eligibility-card ul li{

    font-size:15px;

}

.cta-section{

    border-radius:20px;

}

.cta-content h2{

    font-size:1.7rem;

}
}


/*======================================
        LARGE DESKTOP (1400px+)
======================================*/

@media (min-width:1400px){

    .eligibility-section{

    padding:40px 8% 20px;

}

.faq-section{

    padding:45px 8% 30px;

}
.eligibility-grid{

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.eligibility-card{

    padding:40px;

}

.faq-container{

    max-width:950px;

    margin:50px auto 0;

}

.faq-item{

    padding:30px;

}

.cta-section{

    padding:110px 8%;

}

.cta-content{

    max-width:850px;

}

.cta-content h2{

    font-size:3.2rem;

}

}


/*======================================
            DESKTOP
======================================*/

@media (min-width:1200px) and (max-width:1399px){

    .eligibility-section{

    padding:35px 6% 20px;

}

.faq-section{

    padding:40px 6% 25px;

}

.eligibility-grid{

    grid-template-columns:repeat(2,1fr);

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.cta-section{

    padding:90px 6%;

}

.cta-content h2{

    font-size:2.8rem;

}

}


/*======================================
              LAPTOP
======================================*/

@media (min-width:992px) and (max-width:1199px){


.eligibility-section{

    padding:35px 5% 20px;

}

.faq-section{

    padding:40px 5% 25px;

}

.eligibility-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.eligibility-card{

    padding:30px;

}

.eligibility-card h3{

    font-size:22px;

}

.eligibility-card ul li{

    font-size:15px;

}

.faq-container{

    max-width:100%;

}

.faq-item{

    padding:24px;

}

.faq-item h3{

    font-size:19px;

}

.cta-section{

    padding:80px 5%;

}

.cta-content h2{

    font-size:2.5rem;

}

.cta-buttons{

    gap:15px;

}

}


/*======================================
              TABLET
======================================*/

@media (min-width:768px) and (max-width:991px){

.eligibility-section{

    padding:30px 5% 20px;

}

.faq-section{

    padding:35px 5% 25px;

}

.eligibility-grid{

    grid-template-columns:1fr;

    gap:25px;

}

.eligibility-card{

    padding:30px;

}

.eligibility-card h3{

    font-size:22px;

}

.faq-item{

    padding:22px;

}

.faq-item h3{

    font-size:18px;

}

.cta-section{

    padding:70px 5%;

}

.cta-content h2{

    font-size:2.2rem;

}

.cta-content p{

    font-size:17px;

}

.cta-buttons{

    justify-content:center;

    flex-wrap:wrap;

}

}


/*======================================
          LARGE MOBILE
======================================*/

@media (min-width:576px) and (max-width:767px){

.eligibility-section{

    padding:25px 5% 20px;

}

.faq-section{

    padding:30px 5% 25px;

}

.eligibility-grid{

    grid-template-columns:1fr;

}

.eligibility-card{

    padding:25px;

}

.eligibility-card h3{

    font-size:20px;

}

.eligibility-card ul li{

    font-size:15px;

}

.faq-item{

    padding:20px;

}

.faq-item h3{

    font-size:17px;

}

.faq-item p{

    font-size:15px;

}

.cta-section{

    padding:60px 5%;

    border-radius:20px;

}

.cta-content h2{

    font-size:2rem;

}

.cta-buttons{

    flex-direction:column;

    align-items:center;

}

.cta-buttons a{

    width:260px;

}

}


/*======================================
              MOBILE
======================================*/

@media (max-width:575px){

.eligibility-section{

    padding:20px 20px 15px;

}

.faq-section{

    padding:25px 20px 20px;

}

.eligibility-grid{

    grid-template-columns:1fr;

    gap:20px;

}

.eligibility-card{

    padding:20px;

    border-radius:15px;

}

.eligibility-card h3{

    font-size:18px;

}

.eligibility-card ul li{

    font-size:14px;

    padding:10px 0;

}

.faq-container{

    gap:15px;

}

.faq-item{

    padding:18px;

    border-radius:15px;

}

.faq-item h3{

    font-size:16px;

    line-height:1.5;

}

.faq-item p{

    font-size:14px;

    line-height:1.7;

}

.cta-section{

    padding:50px 20px;

    border-radius:18px;

    margin:50px 0;

}

.cta-content h2{

    font-size:1.8rem;

}

.cta-content p{

    font-size:15px;

}

.cta-buttons{

    flex-direction:column;

    gap:15px;

}

.cta-buttons a{

    width:100%;

    text-align:center;

}

}
