/*==================================================
                GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================================
                ROOT VARIABLES
==================================================*/

:root{

    --primary:#0B4DA2;
    --secondary:#F5B400;
    --success:#2DBE60;
    --dark:#12233D;
    --light:#F7F9FC;
    --white:#ffffff;
    --text:#5C677D;

    --shadow:0 15px 40px rgba(0,0,0,.12);
    --radius:18px;
    --transition:.35s ease;

}

/*==================================================
                RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

section{
    position:relative;
}

/*==================================================
                HEADER
==================================================*/

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.navbar{
    height:78px;
    padding:0;
}
.navbar>.container{
    height:100%;
    display:flex;
    align-items:center;
}

.navbar-brand{
    display:flex;
    align-items:center;
    height:100%;
    margin:0;
}

.navbar-brand img{
    height:120px;
    width:auto;
    max-width:120px;
    object-fit:contain;
}

.navbar-nav .nav-link{

    color:var(--dark);
    font-weight:500;
    margin-left:28px;
    transition:.3s;

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

/*==================================================
                HERO
==================================================*/

.hero-section{

    padding-top:110px;
    padding-bottom:60px;
    display:flex;
align-items:center;

    background:
    linear-gradient(90deg,rgba(11,77,162,.92),rgba(18,35,61,.90)),
    url("../images/hero/hero-banner.jpg");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:25px;

    font-weight:500;
    color: #fff;

}

.hero-content h1{

    font-size:64px;
    font-weight:800;
    line-height:1.08;
    margin-bottom:25px;

}

.hero-content h1 span{

    color:var(--secondary);

}

.hero-text{

    font-size:18px;

    line-height:32px;

    margin-bottom:35px;

    color:#EAEAEA;

}

/*==================================================
                BUTTONS
==================================================*/

.btn{

    border-radius:50px;
    padding:14px 32px;
    font-weight:600;
    transition:.35s;

}

.btn-primary{

    background:var(--secondary);
    border:none;
    color:#000;

}

.btn-primary:hover{

    background:#ffcb30;
    transform:translateY(-3px);

}

.btn-outline-light:hover{

    color:#000;

}

.hero-btns{

    margin-bottom:35px;

}

/*==================================================
                HIGHLIGHTS
==================================================*/

.hero-highlights{

    display:flex;
    flex-wrap:wrap;
    gap:18px;
    color: #fff;

}

.highlight-item{

    background:rgba(255,255,255,.12);

    padding:12px 18px;

    border-radius:40px;

    backdrop-filter:blur(8px);

}

.highlight-item i{

    color:#44D26E;

    margin-right:8px;

}

/*==================================================
                FORM
==================================================*/

.loan-form-card{

    background:#fff;
    border-radius:25px;
    padding:20px;
    box-shadow:0 30px 60px rgba(0,0,0,.18);

}

.loan-form-card h3{

    color:var(--dark);

    font-weight:700;

    margin-bottom:8px;

}

.loan-form-card p{

    color:#666;

    margin-bottom:10px;

}

.loan-form-card .form-control,
.loan-form-card .form-select{

    height:45px;

    border-radius:12px;

    border:1px solid #ddd;

    box-shadow:none;

}

.loan-form-card .form-control:focus,
.loan-form-card .form-select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 3px rgba(11,77,162,.12);

}

.loan-form-card button{

    height:75px;

    border:none;

    border-radius:12px;

    background:var(--secondary);

    font-size:18px;

    font-weight:700;

}

.loan-form-card button:hover{

    background:#ffcb30;

}

/*==================================
        ABOUT SECTION
==================================*/

.about-section{
    padding:100px 0;
    background:#fff;
}

.section-title span{
    color:var(--secondary);
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin:15px 0 25px;
    color:var(--dark);
}

.about-section p{
    color:var(--text);
    line-height:32px;
    font-size:17px;
}

.about-image{
    position:relative;
    min-height:550px;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.experience-box{
    position:absolute;
    right:-25px;
    bottom:30px;
    width:190px;
    background:var(--secondary);
    color:#000;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.experience-box h2{
    font-size:42px;
    margin:0;
    font-weight:800;
}

.experience-box span{
    font-size:15px;
    font-weight:600;
}

.about-card{
    background:#fff;
    border-radius:18px;
    padding:28px 20px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.about-card:hover{
    transform:translateY(-10px);
}

.about-card i{
    width:70px;
    height:70px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    font-size:28px;
}

.about-card h4{
    font-size:30px;
    font-weight:700;
    margin-bottom:8px;
}

.about-card p{
    margin:0;
    line-height:26px;
    font-size:15px;
}


/*==================================
        LOAN SECTION
==================================*/

.loan-section{
    background:#f7f9fc;
    padding:100px 0;
}

.loan-section .section-title p{
    max-width:700px;
    margin:auto;
    color:var(--text);
}

.loan-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.loan-card:hover{
    transform:translateY(-12px);
}

.loan-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.loan-content{
    padding:30px;
}

.loan-content i{
    width:65px;
    height:65px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:20px;
}

.loan-content h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
}

.loan-content p{
    color:var(--text);
    line-height:30px;
    margin-bottom:20px;
}

.loan-content a{
    color:var(--primary);
    font-weight:600;
}

.loan-content a i{
    display:inline;
    width:auto;
    height:auto;
    background:none;
    color:var(--primary);
    margin-left:8px;
    font-size:14px;
}
/*==================================
        WHY CHOOSE US
==================================*/

.why-section{
    padding:100px 0;
    background:#ffffff;
}

.why-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    border-bottom:4px solid transparent;
}

.why-card:hover{
    transform:translateY(-12px);
    border-bottom:4px solid var(--secondary);
}

.why-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),#1d72d8);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.why-card h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
}

.why-card p{
    color:var(--text);
    line-height:30px;
    margin:0;
}
/*==================================
        EMI CALCULATOR
==================================*/

.emi-section{
    padding:100px 0;
    background:#f8fafc;
}

.emi-card{
    background:#fff;
    border-radius:20px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.emi-card label{
    font-weight:600;
    margin-bottom:12px;
}

.emi-card input[type=text]{
    height:50px;
    border-radius:10px;
}

.form-range{
    margin-bottom:15px;
}

.result-box{
    background:linear-gradient(135deg,#0B4DA2,#143E7E);
    color:#fff;
    padding:40px;
    border-radius:20px;
    height:100%;
}

.result-box h5{
    opacity:.8;
}

.result-box h2{
    font-size:42px;
    font-weight:700;
    margin:20px 0;
    color:#F5B400;
}

.result-item{
    display:flex;
    justify-content:space-between;
    margin:18px 0;
    font-size:18px;
}

.result-item strong{
    font-weight:700;
}
/*==================================
            FAQ
==================================*/

.faq-section{
    padding:100px 0;
    background:#fff;
}

.accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.accordion-button{
    padding:22px 25px;
    font-size:18px;
    font-weight:600;
    color:var(--dark);
    background:#fff;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:var(--primary);
    color:#fff;
}

.accordion-body{
    padding:25px;
    color:var(--text);
    line-height:30px;
}
/*==================================
        CONTACT
==================================*/

.contact-section{
    padding:100px 0;
    background:#f7f9fc;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
}

.contact-item h5{
    margin-bottom:5px;
    font-weight:700;
}

.contact-item p{
    margin:0;
    color:var(--text);
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.contact-form .form-control,
.contact-form .form-select{
    height:55px;
    border-radius:12px;
    box-shadow:none;
}

.contact-form textarea{
    height:auto !important;
    resize:none;
    padding-top:15px;
}

.footer{
    background:#0f1f36;
    color:#fff;
    padding:25px 0;
}

.footer p{
    margin:0;
}

.footer a{
    color:#fff;
    margin-left:20px;
    transition:.3s;
}

.footer a:hover{
    color:var(--secondary);
}
/*==================================
        FLOATING BUTTONS
==================================*/

.floating-buttons{

    position:fixed;

    right:25px;

    bottom:30px;

    z-index:9999;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.float-btn{

    display:flex;

    align-items:center;

    justify-content:space-between;

    /*width:175px;*/

    height:56px;

    /*padding:0 0 0 18px;*/

    background:#fff;

    border-radius:40px;

    text-decoration:none;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

    transition:.35s;

}

.float-btn:hover{

    transform:translateX(-8px);

}

.float-text{

    font-size:15px;

    font-weight:600;

    color:#222;

}

.float-btn i{

    width:56px;

    height:56px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:22px;

}

.whatsapp i{

    background:#25D366;

}

.call i{

    background:#1976D2;

}

.top i{

    background:#F5B400;

    color:#000;

}

@media(max-width:768px){

    .floating-buttons{

        right:15px;

        bottom:20px;

    }

    .float-btn{

        width:60px;

        overflow:hidden;

        padding:0;

        justify-content:center;

    }

    .float-text{

        display:none;

    }

}
/*==================================
        WIZARD FORM
==================================*/

.wizard-progress{

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:15px;

}

.wizard-step{

    display:flex;

    flex-direction:column;

    align-items:center;

}

.circle{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#ddd;

    color:#666;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

}

.wizard-step.active .circle{

    background:var(--primary);

    color:#fff;

}

.wizard-step span{

    margin-top:8px;

    font-size:13px;

    font-weight:600;

}

.wizard-line{

    flex:1;

    height:3px;

    background:#ddd;

    margin:0 15px;

    margin-bottom:22px;

}

.form-step{

    display:none;

}

.form-step.active{

    display:block;

}
.loan-form-card textarea{

    border-radius:10px;

    resize:none;

    box-shadow:none;

}

.loan-form-card .btn-secondary{

    background:#6c757d;
    border:none;
    border-radius:10px;
    padding:10px 22px;

}

.loan-form-card .btn-warning{

    border-radius:10px;
    padding:10px 22px;

}
.unique-validation {
    font-size: 13px;
    margin-top: 5px;
    min-height: 18px;
}

.unique-validation.success {
    color: #198754;
}

.unique-validation.error {
    color: #dc3545;
}

.unique-validation.checking {
    color: #6c757d;
}

.field-error {
    border-color: #dc3545 !important;
}

.field-success {
    border-color: #198754 !important;
}