@charset "utf-8";
/* CSS Document */

:root {
 --brand-red:#E01E26;
 --brand-red-dark:#C51920;
 --panel:#f5f6f7;
}
body {
    font-family: Inter, sans-serif;
    background: #eef2f5;
}
/* WRAPPER */
.wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
/* HERO */
.hero {
    position: relative;
    min-height: 740px;
  
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
}
/* LOGO */
.logo {
    position: absolute;
    top: 18px;
    left: 22px;
    z-index: 2;
}
.logo img {
    height: 36px;
}
/* HINDI BADGE */
.hindi-pill {
    position: absolute;
    top: 90px;
    left: 40px;
    z-index: 2;
    background: #e01e26;
    border-radius: 60px;
    color: #fff;
    font-weight: 600;
    font-size: 29px;
	line-height: 31px;
}
/* RIGHT FORM */
.form-panel {
    background: var(--panel);
    padding: 42px 36px;
    height: 100%;
}
.form-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #197187;
    text-transform: uppercase;
    text-align: left;
}
.form-control {
    height: 48px;
    border-radius: 9px;
    border: 1px solid #cfd7df;
    margin-bottom: 14px;
}
/* RADIO BOXES */
.radio-box {
    border: 1px solid #cfd7df;
    border-radius: 9px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 8px;
    margin-bottom: 10px;
    background: #fff;
    cursor: pointer;
}
.radio-box input {
    accent-color: var(--brand-red);
}
/* CTA BUTTON */
.btn-main {
    width: 100%;
    background: var(--brand-red);
    border: none;
    padding: 15px;
    border-radius: 40px;
    color: #fff;
    font-weight: 700;
    margin-top: 12px;
}
.btn-main:hover {
    background: var(--brand-red-dark);
}
/* CONSENT */
.consent {
    font-size: 13px;
    color: #6c7b88;
    margin-top: 14px;
}

/* MOBILE */
@media(max-width:991px) {
.hero {
    min-height: 350px;
}
.hindi-pill {
    font-size: 22px;
    left: 20px;
    top: 70px;
}
.form-panel {
    padding: 28px 22px;
}
}

.float-btn{
    position:fixed;
    right:18px;
    z-index:9999;
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
}

.float-btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.call-btn{
    bottom:143px;
    background:#E01E26;
}

.whatsapp-btn{
    bottom: 68px;
    background: #25D366;
}

/* MOBILE BOTTOM BAR */
.mobile-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    z-index:9999;
    box-shadow:0 -6px 20px rgba(0,0,0,.12);
}

.mobile-bar a{
    flex:1;
    padding:14px;
    text-align:center;
    font-weight:700;
    text-decoration:none;
    color:#fff;
}

.mobile-call{ background:#E01E26; }
.mobile-wa {
    background: #E01E26;
    width: 250px;
    padding: 37px;
    padding: 50px;
    border: 1px solid #90070d;
    text-transform: uppercase;
    font-weight: 400;

}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: #dc3545 !important;
}
.call-btn{
    animation:glow 1.5s infinite alternate;
}

@keyframes glow{
    from{box-shadow:0 0 0 rgba(224,30,38,.4);}
    to{box-shadow:0 0 25px rgba(224,30,38,.9);}
}

/* SHOW BAR ONLY ON MOBILE */
@media(max-width:768px){
.mobile-bar{ display:flex; }
body{ padding-bottom:70px; }
}

/* POPUP FORM */
.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.popup-box{
    width:95%;
    max-width:420px;
    background:#fff;
    border-radius:14px;
    padding:25px;
    animation:pop .3s ease;
}

@keyframes pop{
    from{transform:scale(.9);opacity:0;}
    to{transform:scale(1);opacity:1;}
}

.popup-box h5{
    font-weight:700;
    margin-bottom:15px;
}

.popup-box input,
.popup-box select{
    height:45px;
    border-radius:8px;
    margin-bottom:10px;
}

.popup-box button{
    background:#E01E26;
    border:none;
    padding:12px;
    border-radius:30px;
    color:#fff;
    font-weight:700;
    width:100%;
}

.close-popup{
    position:absolute;
    right:15px;
    top:10px;
    font-size:20px;
    cursor:pointer;
}



/* POPUP CARD */
.loan-popup{
    border-radius:20px;
    padding:28px;
    background:#ffffff;
    box-shadow:0 20px 60px rgba(0,0,0,0.18);
    animation:popupFade .35s ease;
}

/* Heading */
.loan-popup h3{
    font-weight:700;
    font-size:26px;
    margin-bottom:18px;
}

/* Inputs */
.loan-popup .form-control,
.loan-popup select{
    border-radius:12px;
    padding:14px 16px;
    font-size:15px;
    border:1px solid #e4e7ec;
    transition:.25s;
}

.loan-popup .form-control:focus,
.loan-popup select:focus{
    border-color:#e31e24;
    box-shadow:0 0 0 3px rgba(227,30,36,0.12);
}

/* BUTTON */
.loan-btn{
    width:100%;
    border:none;
    padding:16px;
    font-size:18px;
    border-radius:40px;
    background:linear-gradient(90deg,#e31e24,#ff3a3f);
    color:#fff;
    font-weight:600;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

/* Hover Lift */
.loan-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(227,30,36,.35);
}

/* Pulse animation */
.loan-btn::after{
    content:'';
    position:absolute;
    width:120%;
    height:120%;
    top:-10%;
    left:-10%;
    background:rgba(255,255,255,.25);
    border-radius:50%;
    opacity:0;
    transition:.6s;
}

.loan-btn:hover::after{
    opacity:1;
    transform:scale(1.4);
}

/* POPUP ANIMATION */
@keyframes popupFade{
    from{
        opacity:0;
        transform:translateY(25px) scale(.96);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}



.partners-section{
    background:#f7f9fc;
}

.partners-title{
    font-weight:400;
    font-size:30px;
    color:#1a5962;
	
}

/* LOGO STYLE */
.partnerSwiper img{
    max-height:110px;
    width:260px;
    object-fit:contain;
    opacity:.8;
    transition:.3s;
}

.partnerSwiper img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.05);
}

/* spacing */
.partnerSwiper .swiper-slide{
    display:flex;
    justify-content:center;
    align-items:center;
}

/* MOBILE */
@media(max-width:768px){
    .partners-title{
        font-size:28px;
    }
}



.loan-steps-section{
    background:#1a5962;
    padding:80px 0;
    color:#fff;
}

/* HEADING */
.loan-heading{
    font-size:48px;
    font-weight:600;
    line-height:1.2;
}

.loan-heading span{
    color:#59c5f2;
}

/* STEPS WRAPPER */
.steps-wrapper{
    position:relative;
}

/* DOTTED LINE */
.steps-line{
    position:absolute;
    top:30px;
    left:6%;
    right:6%;
    border-top:2px dashed rgba(255,255,255,.35);
    z-index:0;
}

/* STEP BOX */
.step-box{
    position:relative;
    z-index:2;
    padding-top:50px;
}

/* CIRCLE */
.step-circle{
   width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #59c5f2;
    margin: 0 auto 20px;
}

.fw-bold {
    font-weight: 700 !important;
    color: #1a5962;
}

/* TITLES */
.step-box h5{
    font-size:22px;
    font-weight:600;
    margin-bottom:12px;
}

/* TEXT */
.step-box p{
    font-size:15px;
    line-height:1.6;
    opacity:.9;
}

/* MOBILE */
@media(max-width:991px){

    .loan-heading{
        font-size:36px;
        text-align:center;
    }

    .steps-line{
        display:none;
    }

    .step-box{
        margin-bottom:35px;
    }
}

@media(max-width:576px){

    .loan-heading{
        font-size:30px;
    }

    .step-circle{
        width:52px;
        height:52px;
    }
}



.why-dark{
    background:#cac2c2;
    color:#fff;
}

.why-title {
    font-size: 42px;
    font-weight: 500;
    color: #202e5e;
}
.why-sub{
    max-width:750px;
    margin:auto;
    color:#202e5e;
    font-size:16px;
}

/* CARD */
.why-card{
    background:#e01e26;
    padding:28px 26px;
    border-radius:14px;
    height:100%;
    transition:.35s;
    border:1px solid rgba(255,255,255,.05);
    position:relative;
}

/* LEFT ACCENT LINE */
.why-card::before{
    content:"";
    position:absolute;
    left:0;
    top:25px;
    width:3px;
    height:35px;
    background:#fff;
    border-radius:5px;
}

/* ICON */
.icon-box{
    width:54px;
    height:54px;
    border-radius:12px;
    background:#820712;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.icon-box i{
    font-size:22px;
    color:#ffffff;
}

/* TEXT */
.why-card h5{
    font-size:18px;
    margin-bottom:10px;
    font-weight:600;
}

.why-card p{
    font-size:14px;
    color:#b5d0e6;
}

/* HOVER EFFECT */
.why-card:hover{
    transform:translateY(-6px);
    background:#a80e0e;
    box-shadow:0 20px 40px rgba(0,0,0,.3);
}

/* CTA BUTTON */
.btn-why {
    background: #e01e26;
    color: #fff;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    display: inline-block;
    text-transform: uppercase;
}

.btn-why:hover{
    background:#990e0e;
    transform:translateY(-2px);
}

/* MOBILE */
@media(max-width:768px){
    .why-title{font-size:30px;}
}



.doc-section{
    background:#f4f6f9;
}

/* CARD */
.doc-card{
   background: #054373;
    border-radius: 18px;
    padding: 50px 3px 0px 42px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* TAG */
.doc-tag{
    display:inline-block;
    border:1px solid rgba(255,255,255,.4);
    padding:6px 12px;
    border-radius:4px;
    font-size:14px;
    margin-bottom:18px;
}

/* TITLE */
.doc-title{
    font-size:44px;
    font-weight:600;
    margin-bottom:25px;
}

/* LIST */
.doc-list{
    list-style:none;
    padding:0;
}

.doc-list li{
    font-size:20px;
    margin-bottom:16px;
    display:flex;
    align-items:center;
}

.doc-list i{
    color:#3ec6f2;
    margin-right:12px;
    font-size:22px;
}

/* IMAGE */
.doc-img{
    max-height:320px;
    width:auto;
}

/* MOBILE */
@media(max-width:991px){

    .doc-card{
        padding:40px 30px;
        text-align:center;
    }

    .doc-title{
        font-size:34px;
    }

    .doc-list li{
        justify-content:center;
        font-size:18px;
    }

    .doc-img{
        max-height:260px;
    }
}

@media(max-width:576px){

    .doc-title{
        font-size:28px;
    }

    .doc-list li{
        font-size:16px;
    }
}


.section-title{
    font-size:40px;
    font-weight:600;
    color:#123456;
}

.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.stars{
    color:#f4b400;
    font-size:18px;
    margin-bottom:15px;
}

.profile{
    display:flex;
    align-items:center;
    margin-top:20px;
}

.profile img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
    margin-right:12px;
}

.profile h6{
    margin:0;
    font-weight:600;
}

.profile span{
    font-size:14px;
    color:#6c757d;
}

.carousel-indicators [data-bs-target]{
    width:10px;
    height:10px;
    border-radius:50%;
    background-color:#0d6efd;
}



.bg-dark {
    --bs-bg-opacity: 1;
    background-color: #1a5962 !important;
}



.why-choose h2{
    font-size: 36px;
    color:#2c3e50;
}

.title-line{
    width:90px;
    height:2px;
    background:#2c3e50;
}

.icon-circle{
    width:110px;
    height:110px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
}

.icon-circle i{
    font-size:42px;
    color:#fff;
}

.bg-teal{ background:#5aa6a6; }
.bg-blue{ background:#5a78a6; }
.bg-orange{ background:#f4742a; }
.bg-green{ background:#9ac23c; }

.why-box h5{
    font-weight:500;
    color:#2c3e50;
}

.why-box p{
    color:#6c757d;
    line-height:1.8;
    max-width:260px;
    margin:auto;
}

.small-line{
    width:30px;
    height:2px;
    background:#2c3e50;
    margin:12px auto 18px;
}

/* Mobile spacing */
@media(max-width:768px){
    .icon-circle{
        width:90px;
        height:90px;
    }
    .icon-circle i{
        font-size:34px;
    }
}


.btn-apply-icon{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:13px 28px;
    font-size:16px;
    font-weight:600;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    background:#00b894;
    transition:0.3s;
}
.btn-apply-icon:hover{
    background:#00997a;
    letter-spacing:0.5px;
    color:#fff;
}

.hero-left{ position:relative; }
.hero-img{
  height:620px;
  object-fit:cover;
}

.hero-text{
  position:absolute;
  top:30%;
  left:8%;
  background:#1c6b7a;
  color:#fff;
  padding:30px 40px;
  border-radius:60px;
  max-width:520px;
}

.hero-text h2{ font-size:34px; font-weight:700; }
.hero-text p{ margin:0; font-size:18px; }

.hero-form{
  background:#f3f5f7;
  padding:60px 40px;
}

.form-box{
  background:#fff;
  padding:30px;
  border-radius:12px;
}

.hindi-pill {
  font-family: Arial, sans-serif; /* Choose a clean font */
  font-size: 22px;               /* Default font size for desktops */
  line-height: 1.4;
 
  margin: 20px auto;
  padding: 10px 15px;
  text-align: center;
}

/* Style for the <h5> inside .hindi-pill */
.hindi-pill h5 {
  font-size: 18px;
  margin-top: 10px;
  font-weight: normal;
 
}

/* Mobile styles: for screens 480px wide or less */
@media screen and (max-width: 480px) {
  .hindi-pill {
    font-size: 16px;       /* Smaller font for small screens */
    padding: 8px 10px;
    max-width: 90%;
  }

  .hindi-pill h5 {
    font-size: 14px;
  }
}