/* ==============================
Google Font
================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;

}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:90%;
    max-width:1320px;
    margin:auto;

}


/*=========================
NAVBAR
==========================*/

header{

    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,.05);

}

.navbar{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    width:190px;

}

.nav-links{

    display:flex;

    gap:40px;

}

.nav-links a{

    color:#222;

    font-size:17px;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#34E0A1;

}

.nav-btns{

    display:flex;

    gap:15px;

}

.login-btn{

    width:120px;

    height:48px;

    border-radius:50px;

    border:2px solid #222;

    background:#fff;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.login-btn:hover{

    background:#34E0A1;

    border:none;

}

.partner-btn{

    width:190px;

    height:48px;

    border:none;

    background:#222;

    color:#fff;

    border-radius:50px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.partner-btn:hover{

    background:#34E0A1;

    color:#222;

}



/*=========================
HERO
==========================*/

.hero{

    padding:90px 0;

    background:#fff;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.hero-content h1{

    font-size:64px;

    line-height:1.2;

    font-weight:600;

    color:#222;

}

.hero-content span{

    color:#34E0A1;

    font-weight:700;

}

.hero-content p{

    margin-top:30px;

    font-size:20px;

    color:#666;

    max-width:600px;

    line-height:1.8;

}

.hero-image img{

    width:95%;

    margin-left:auto;

}



/*=========================
STATS
==========================*/

.stats{

    margin-top:40px;

    margin-bottom:90px;

}

.stats-grid{

    background:#34E0A1;

    border-radius:18px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    text-align:center;

    padding:50px 20px;

}

.stat-box h4{

    color:#444;

    font-size:20px;

    font-weight:500;

}

.stat-box h2{

    margin-top:15px;

    font-size:52px;

    font-weight:700;

    color:#111;

}
/*==================================
ABOUT LOAN
===================================*/

.about-loan{

    background:#343434;
    padding:90px 0;

}

.section-heading{

    text-align:center;
    max-width:1100px;
    margin:auto;

}

.section-heading h2{

    color:#fff;
    font-size:58px;
    margin-bottom:30px;
    font-weight:600;

}

.section-heading span{

    color:#34E0A1;

}

.section-heading p{

    color:#ddd;
    line-height:2;
    font-size:18px;

}


.loan-details{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}


.detail-card{

    display:flex;
    gap:18px;
    color:#fff;

}


.number{

    min-width:45px;
    height:45px;

    background:#34E0A1;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#111;

    font-weight:700;

}


.detail-card h4{

    margin-bottom:10px;
    font-size:22px;

}

.detail-card p{

    color:#ddd;
    line-height:1.7;

}




/*==================================
TOP REASONS
===================================*/

.reasons{

    padding:100px 0;
    background:#fff;

}


.reasons-grid{

    display:grid;

    grid-template-columns:40% 60%;

    gap:70px;

    align-items:center;

}


.reason-left h2{

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

}


.reason-left span{

    color:#34E0A1;

}


.reason-left p{

    font-size:20px;

    color:#666;

    line-height:1.8;

}


.reason-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}


.reason-card{

    background:#fafafa;

    border-radius:18px;

    padding:35px;

    transition:.35s;

    border:1px solid #eee;

}


.reason-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}


.reason-card i{

    font-size:38px;

    color:#34E0A1;

    margin-bottom:20px;

}


.reason-card h3{

    font-size:28px;

    margin-bottom:18px;

    color:#222;

}


.reason-card p{

    color:#666;

    line-height:1.8;

    font-size:17px;

}
/*==========================
SECTION TITLE
==========================*/

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:48px;
    color:#222;
    margin-bottom:15px;

}

.section-title p{

    color:#666;
    font-size:18px;

}


/*==========================
EMI
==========================*/

.emi-section{

    padding:100px 0;
    background:#f8f9fb;

}

.emi-wrapper{

    display:grid;
    grid-template-columns:45% 55%;
    gap:40px;

}

.emi-form,
.emi-result{

    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.input-group{

    margin-bottom:40px;

}

.input-group label{

    display:block;
    font-size:18px;
    font-weight:600;

}

.value{

    margin:15px 0;
    color:#34E0A1;
    font-size:28px;
    font-weight:700;

}

input[type=range]{

    width:100%;
    cursor:pointer;

}

.chart-box{

    width:260px;
    margin:auto;

}

.result-list{

    margin-top:30px;

}

.result-item{

    display:flex;
    justify-content:space-between;
    padding:18px 0;
    border-bottom:1px solid #eee;

}

.result-item span{

    color:#666;

}

.result-item h3{

    color:#222;

}

.schedule{

    margin-top:70px;

}

.schedule h3{

    margin-bottom:25px;
    font-size:32px;

}

.schedule table{

    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:15px;
    overflow:hidden;

}

.schedule th{

    background:#34E0A1;
    color:#111;
    padding:18px;

}

.schedule td{

    padding:18px;
    border-bottom:1px solid #eee;

}


/*==========================
FEATURES
==========================*/

.features{

    padding:100px 0;

}

.feature-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.feature-card{

    background:#fff;
    text-align:center;
    padding:40px 30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card i{

    font-size:45px;
    color:#34E0A1;
    margin-bottom:25px;

}

.feature-card h3{

    margin-bottom:15px;

}

.feature-card p{

    color:#666;
    line-height:1.7;

}


/*==========================
FOOTER
==========================*/

footer{

    background:#222;
    color:#fff;
    padding-top:80px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;

}

.footer-grid h2{

    color:#34E0A1;
    margin-bottom:20px;

}

.footer-grid h4{

    margin-bottom:20px;

}

.footer-grid p{

    color:#ccc;
    line-height:1.8;

}

.footer-grid ul li{

    margin-bottom:15px;

}

.footer-grid a{

    color:#ccc;
    transition:.3s;

}

.footer-grid a:hover{

    color:#34E0A1;

}

.copyright{

    text-align:center;
    padding:25px;
    margin-top:60px;
    border-top:1px solid rgba(255,255,255,.1);
    color:#aaa;

}
/*==========================
EMI Schedule
==========================*/

.schedule{

    margin-top:60px;

}

.schedule-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#fff;

    padding:22px 30px;

    border-radius:12px;

    cursor:pointer;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.schedule-header:hover{

    background:#f8f8f8;

}

.schedule-header h3{

    font-size:32px;

    margin:0;

}

.schedule-header i{

    font-size:24px;

    transition:.3s;

    color:#34E0A1;

}

/* Hidden by default */

.schedule-content{

    display:none;

    margin-top:20px;

}

.schedule-content.active{

    display:block;

}

.schedule-header.active i{

    transform:rotate(180deg);

}

.schedule table{

    width:100%;

    border-collapse:collapse;

    overflow:hidden;

    border-radius:15px;

    background:#fff;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.schedule th{

    background:#34E0A1;

    color:#111;

    padding:18px;

}

.schedule td{

    padding:18px;

    border-bottom:1px solid #eee;

}

.schedule tr:hover{

    background:#f8fffc;

}
.hero-content p{
    margin:20px 0 12px;
    line-height:1.7;
}

.hero-features{
    margin-top:0;
    gap:12px;
}

.hero-features div{
    margin:0;
}
#scheduleArrow{

    transition:.35s;

}

#scheduleArrow.rotate{

    transform:rotate(180deg);

}

.schedule-content{

    display:none;

}

.schedule-content.active{

    display:block;

}
.hero{
    padding-bottom: 20px !important;
}

.stats{
    margin-top: 30px;
}

.stats-grid{
    padding: 28px 35px;
}
.site-header{

    width:100%;
    background:#fff;

    position:sticky;
    top:0;
    z-index:1000;

    box-shadow:0 2px 15px rgba(0,0,0,.05);

}

.header-inner{

    max-width:1350px;
    margin:auto;

    height:82px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 20px;

}

.logo img{

    width:120px;

}

.desktop-nav{

    display:flex;
    align-items:center;

    gap:35px;

    margin-left:45px;

    margin-right:auto;

}

.desktop-nav a,
.nav-btn{

    color:#222;

    font-size:16px;

    font-weight:500;

    text-decoration:none;

    background:none;

    border:none;

    cursor:pointer;

}

.nav-item{

    position:relative;

}

.nav-btn{

    display:flex;
    align-items:center;
    gap:6px;

}

.mega-menu{

    position:absolute;

    top:60px;
    left:0;

    width:260px;

    background:#fff;

    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

    display:none;

    flex-direction:column;

    overflow:hidden;

}

.mega-menu a{

    padding:15px 20px;

    transition:.3s;

}

.mega-menu a:hover{

    background:#34E0A1;

    color:#fff;

}



.header-actions{

    display:flex;
    align-items:center;

    gap:15px;

}

.login-btn{

    padding:10px 28px;

    border:1px solid #222;

    border-radius:40px;

    background:#fff;

    cursor:pointer;

}

.partner-btn{

    padding:11px 28px;

    background:#222;

    color:#fff;

    text-decoration:none;

    border-radius:40px;

}

.hamburger{

    display:none;

    font-size:28px;

    background:none;

    border:none;

}

.mobile-panel{

    display:none;

}
@media(max-width:992px){

.desktop-nav,
.header-actions{

    display:none;

}

.hamburger{

    display:block;

}

.mobile-panel{

    display:none;

    flex-direction:column;

    background:#fff;

}

.mobile-panel.active{

    display:flex;

}

.mobile-panel a{

    padding:16px 20px;

    border-bottom:1px solid #eee;

    text-decoration:none;

    color:#222;

}

}
.mega-menu{
    display:none;
}

.nav-item.active .mega-menu{
    display:flex;
}
.mega-menu{
    display: none;
}

.nav-item.active .mega-menu{
    display: flex;
    flex-direction: column;
}
.partner-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    height:52px;
    padding:0 30px;

    white-space:nowrap;

    border-radius:50px;

}
.featured-cards{
    padding: 70px 0;
    /* ya */
    margin-top: 30px;
}
.eligibility{
    padding-top: 100px;
    padding-bottom: 80px;
}
.nav-item:hover .mega-menu{
    display:flex;
    flex-direction:column;
}
/* Contact Column */

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:24px;
}

.contact-item i{
    color:#20e3a2;
    font-size:22px;
    width:26px;
    text-align:center;
    margin-top:3px;
    flex-shrink:0;
}

.contact-item span{
    color:#d9d9d9;
    font-size:1.15rem;
    line-height:1.8;
}

.contact-item:hover span{
    color:#fff;
}

.contact-item:hover i{
    transform:scale(1.1);
    transition:.3s;
}
/* All Footer Headings */

.footer-col h3{
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 30px;
    line-height: 1.2;
}
.nav-item{
    position: relative;
}

.mega-menu{
    position: absolute;
    top: 100%;     /* 105%, 110% ya calc(...) mat use karo */
    left: 0;
    margin-top: 0;
}
.floating-chat-btn{
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #20e3a2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99999;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

.floating-chat-btn i{
    font-size: 24px;
}