.loan-hero{
padding:90px 0;
min-height:540px;
display:flex;
align-items:center;
background-size:cover;
background-position:center right;
background-repeat:no-repeat;
position:relative;
animation:fadeHero .8s ease;
}

.loan-hero::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(
90deg,
rgba(255,255,255,0.92) 0%,
rgba(255,255,255,0.82) 28%,
rgba(255,255,255,0.60) 48%,
rgba(255,255,255,0.20) 65%,
rgba(0,0,0,0.15) 100%
);
}

/* Content stays above overlay */
.loan-hero-inner{
position:relative;
z-index:2;
display:flex;
justify-content:space-between;
align-items:center;
gap:40px;
}

/* Left text zone width control */
.loan-left{
width:520px;
max-width:100%;
}


/* Heading premium fintech look */
.loan-left h1{
font-size:48px;
font-weight:800;
margin-bottom:16px;
color:#0b3c6f;
line-height:1.2;
}

/* Paragraph readability */
.loan-left p{
font-size:17px;
color:#2b2b2b;
margin-bottom:26px;
max-width:460px;
}

.loan-buttons{
display:flex;
gap:15px;
}

.loan-calculator{
width:380px;
padding:24px;
border-radius:24px;
box-shadow:0 20px 40px rgba(0,0,0,.10);
background:rgba(255,255,255,.82);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,.6);
}

.loan-calculator h3{
margin:0 0 18px;
font-size:22px;
color:#122d57;
}

.loan-calculator label{
display:block;
font-size:14px;
margin-top:16px;
margin-bottom:8px;
color:#0b2244;
font-weight:600;
}

.loan-calculator label span{
float:right;
font-weight:700;
color:#ff7a00;
margin-left:10px;
}

.emi-box{
background:white;
padding:18px;
border-radius:18px;
text-align:center;
margin-top:18px;
font-size:18px;
box-shadow:0 14px 30px rgba(11,34,68,.08);
}

.emi-box strong{
display:block;
font-size:30px;
color:#ff7a00;
margin-top:5px;
}

.loan-calculator .btn-orange{
display:inline-flex;
align-items:center;
justify-content:center;
width:90%;
min-height:42px;
margin-top:16px;
border-radius:16px;
padding:10px 16px;
}

.loan-highlights{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:40px;
}

.highlight{
padding:20px;
text-align:center;
font-weight:600;
transition:.3s;
}

.highlight:hover{
transform:translateY(-6px);
}

.loan-section{
margin-top:60px;
}

.loan-section h2{
margin-bottom:15px;
}

.loan-section ul{
line-height:28px;
color:#444;
}

.apply-strip{
margin-top:70px;
background:#0a2c5e;
color:white;
padding:40px 0;
}

.apply-inner{
display:flex;
justify-content:space-between;
align-items:center;
}

.related{
margin-top:60px;
}

.loan-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:20px;
}

.loan-card{
padding:25px;
text-align:center;
font-weight:600;
transition:.3s;
}

.loan-card:hover{
transform:translateY(-6px);
}

input[type=range]{
-webkit-appearance:none;
appearance:none;
width:100%;
height:8px;
border-radius:999px;
background:linear-gradient(to right,#0a66ff 0%,#e0e0e0 0%);
outline:none;
transition:background 0.3s ease;
cursor:pointer;
}

/* Webkit Track Fix */
input[type=range]::-webkit-slider-runnable-track{
height:8px;
border-radius:999px;
background:transparent;
}

/* Thumb */
input[type=range]::-webkit-slider-thumb{
-webkit-appearance:none;
appearance:none;
width:22px;
height:22px;
border-radius:50%;
background:linear-gradient(135deg,#ff7a00,#ff9a3d);
cursor:pointer;
box-shadow:0 10px 20px rgba(255,122,0,.28);
border:4px solid #fff;
margin-top:-7px;
transition:.2s;
}

input[type=range]::-webkit-slider-thumb:hover{
transform:scale(1.1);
}

/* Firefox Support */
input[type=range]::-moz-range-track{
height:8px;
border-radius:999px;
background:#e0e0e0;
}

input[type=range]::-moz-range-progress{
height:8px;
border-radius:999px;
background:#0a66ff;
}

input[type=range]::-moz-range-thumb{
width:22px;
height:22px;
border-radius:50%;
background:linear-gradient(135deg,#ff7a00,#ff9a3d);
cursor:pointer;
border:4px solid #fff;
}

/* Edge / IE */
input[type=range]::-ms-track{
height:6px;
background:transparent;
border-color:transparent;
color:transparent;
}

input[type=range]::-ms-fill-lower{
background:#0a66ff;
border-radius:999px;
}

input[type=range]::-ms-fill-upper{
background:#e0e0e0;
border-radius:999px;
}

@media(max-width:1000px){

.loan-hero-inner{
flex-direction:column;
}

.loan-left{
width:100%;
text-align:center;
}

.loan-calculator{
width:100%;
max-width:100%;
padding:20px;
}

.loan-highlights{
grid-template-columns:repeat(2,1fr);
}

.loan-grid{
grid-template-columns:repeat(2,1fr);
}

.apply-inner{
flex-direction:column;
gap:20px;
}

}

.sticky-apply{
position:fixed;
bottom:20px;
left:50%;
transform:translate(-50%,50px);
background:#ff7a00;
color:white;
padding:14px 40px;
border-radius:40px;
font-weight:600;
box-shadow:0 10px 25px rgba(0,0,0,.25);
cursor:pointer;
z-index:999;
transition:.35s;
opacity:0;
display:none;
}

.sticky-apply.show{
opacity:1;
transform:translate(-50%,0);
}

.sticky-apply:hover{
transform:translateX(-50%) scale(1.05);
}
.faq-item{
border-bottom:1px solid #eee;
padding:15px 0;
cursor:pointer;
}

.faq-q{
font-weight:600;
}

.faq-a{
max-height:0;
overflow:hidden;
transition:.4s;
color:#555;
margin-top:8px;
}

.faq-item.active .faq-a{
max-height:200px;
}

.highlight a{
color:#0a2c5e;
text-decoration:none;
display:block;
}

.highlight:hover{
background:#2a5bd7;
color:white;
}

.highlight:hover a{
color:white;
}
@media(min-width:1000px){
.loan-calculator{
position:sticky;
top:100px;
}
}

.mini-lead-wrap{
margin-top:80px;
margin-bottom:60px;
background:linear-gradient(120deg,#eef4ff,#ffffff);
padding:60px 0;
border-radius:30px;
}

.mini-lead-card{
background:rgba(255,255,255,0.65);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
border-radius:24px;
padding:40px;
display:flex;
gap:40px;
box-shadow:0 25px 60px rgba(0,0,0,.12);
border:1px solid rgba(255,255,255,.5);
}

.mini-lead-left{
width:40%;
}

.mini-lead-left h3{
font-size:28px;
margin-bottom:10px;
}

.mini-lead-left p{
color:#666;
margin-bottom:20px;
}

.mini-lead-left ul{
line-height:32px;
color:#0a2c5e;
}

.mini-lead-right{
width:60%;
}

.form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-bottom:15px;
}

.form-grid input,
.form-grid select{
padding:12px;
border-radius:10px;
border:1px solid #ddd;
font-size:14px;
}

.consent{
font-size:13px;
display:block;
margin-bottom:15px;
color:#666;
}

@media(max-width:900px){

.mini-lead-card{
flex-direction:column;
}

.mini-lead-left,
.mini-lead-right{
width:100%;
}

.form-grid{
grid-template-columns:1fr;
}

}
.consent a{
color:#2a5bd7;
font-weight:600;
text-decoration:none;
}

.consent a:hover{
text-decoration:underline;
}

.lead-success{
display:none;
text-align:center;
padding:35px;
animation:fadeIn .5s ease;
}

.success-icon{
font-size:50px;
margin-bottom:10px;
}

.lead-success h3{
color:#0a2c5e;
margin-bottom:10px;
}

.lead-success p{
color:#555;
line-height:26px;
margin-bottom:20px;
}

@keyframes fadeIn{
from{opacity:0;transform:translateY(20px)}
to{opacity:1;transform:translateY(0)}
}

@keyframes fadeHero{
from{opacity:0;transform:translateY(20px)}
to{opacity:1;transform:translateY(0)}
}

.lead-message{
display:none;
background:#e8f7ee;
border:1px solid #28a745;
color:#155724;
padding:14px 18px;
border-radius:10px;
margin-bottom:20px;
font-weight:500;
animation:fadeIn .4s ease;
}

.lead-message.show{
display:block;
}

.lead-message::before{
content:"✔ ";
font-weight:700;
margin-right:6px;
}

@media(max-width:768px){

.loan-calculator label span{
float:none;
display:block;
margin-left:0;
margin-top:4px;
}

.loan-calculator{
padding:18px 16px;
border-radius:20px;
}

.loan-calculator h3{
font-size:20px;
}

.loan-calculator .btn-orange{
min-height:40px;
}

}

.lrd-image-placeholder{
    min-height:260px;
    border:1.5px dashed #ff9a3d;
    border-radius:18px;
    background:linear-gradient(135deg,#fff7ef,#ffffff);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#0b2244;
    line-height:1.7;
    padding:20px;
    margin:14px 0 18px;
}

.lrd-hero{
    background-size:cover;
    background-position:center right;
}

.loan-badge{
    display:inline-flex;
    margin-bottom:12px;
    padding:8px 13px;
    border-radius:999px;
    background:#fff7ed;
    color:#c2410c;
    font-size:13px;
    font-weight:800;
    border:1px solid #fed7aa;
}

.lrd-hero::before{
    background:linear-gradient(
        90deg,
        rgba(255,255,255,.94) 0%,
        rgba(255,255,255,.86) 34%,
        rgba(255,255,255,.44) 58%,
        rgba(255,255,255,.06) 100%
    );
}

.lrd-hero-card{
    max-width:330px;
    align-self:flex-end;
}

.lrd-points{
    display:grid;
    gap:10px;
}

.lrd-points span{
    padding:12px 14px;
    border-radius:14px;
    background:#f8fbff;
    border:1px solid #e2eaf5;
    color:#0b2244;
    font-weight:700;
}

.lrd-info-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:26px;
}

.lrd-info-grid article,
.lrd-split,
.lrd-image-card{
    background:#fff;
    border:1px solid #e2eaf5;
    border-radius:22px;
    padding:26px;
    box-shadow:0 16px 38px rgba(15,23,42,.06);
}

.lrd-split{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(280px,.85fr);
    gap:24px;
    align-items:center;
}

.lrd-image-card{
    padding:0;
    overflow:hidden;
}

.lrd-image-card img{
    width:100%;
    height:100%;
    min-height:300px;
    object-fit:cover;
    display:block;
}

@media(max-width:900px){
    .lrd-info-grid,
    .lrd-split{
        grid-template-columns:1fr;
    }
}
