:root{
    --primary:#FF8A00;
    --secondary:#FFB347;
    --dark:#1F1A17;
    --light:#FFF6EC;
    --white:#ffffff;
    --text:#333333;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Outfit',sans-serif;
}

body{
background:#f6f8fb;
color:#1f2937;
}

.container{
width:90%;
max-width:1250px;
margin:auto;
}

nav ul{
display:flex;
list-style:none;
gap:35px;
}


.hero{
    background:#FFF4E8;
    padding:90px 0 130px;
    position:relative;
    overflow:hidden;
}

.hero::before{

content:"";

position:absolute;

width:180%;

height:500px;

left:-25%;

bottom:-320px;

background:#fff;

border-radius:50%;

transform:rotate(-8deg);

}

.hero-area{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:90px;
    position:relative;
    z-index:2;
}

.hero-left{

width:55%;

}

.hero h1{

font-size:68px;

font-weight:800;

line-height:1.05;

margin-bottom:25px;

color:#111;

}

.hero p{

font-size:22px;

line-height:38px;

color:#555;

margin-bottom:35px;

}


.tag{

background:#FFE8C7;

color:#E56B00;

padding:10px 20px;

border-radius:40px;

font-size:15px;

font-weight:700;

display:inline-block;

margin-bottom:25px;

}
.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

.hero-buttons .btn,
.hero-buttons .btn2{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    height:58px;
    padding:0 30px;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
    white-space:nowrap;
}

.hero-buttons .btn{
    background:#F59E0B;
    color:#fff;
    border:none;
}

.hero-buttons .btn:hover{
    background:#E68A00;
}

.hero-buttons .btn2{
    background:#fff;
    color:#F59E0B;
    border:2px solid #F59E0B;
}

.hero-buttons .btn2:hover{
    background:#F59E0B;
    color:#fff;
}

/*==============================
        PREMIUM FORM
===============================*/

.form-box{
    background:#fff;
    padding:35px;
    margin-top: -400px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #ECECEC;
}

.form-box h2{
    font-size:30px;
    color:#222;
    margin-bottom:30px;
    font-weight:700;
}

.form-box input,
.form-box select,
.form-box textarea{

    width:100%;
    height:58px;
    padding:0 18px;
    margin-bottom:18px;

    background:#fff;
    border:1px solid #D8DCE2;

    border-radius:10px;

    font-size:16px;
    color:#333;

    transition:.3s;
}

.form-box textarea{

    height:130px;
    padding-top:16px;
    resize:none;

}

.form-box input::placeholder,
.form-box textarea::placeholder{

    color:#8A8A8A;

}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus{

    outline:none;

    border-color:#F59E0B;

    box-shadow:0 0 0 4px rgba(245,158,11,.12);

}

/* Submit Button */

.form-box button{

    width:100%;
    height:58px;

    border:none;

    background:#F59E0B;

    color:#fff;

    border-radius:10px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.form-box button:hover{

    background:#E88700;

    transform:translateY(-2px);

}

/* Select Arrow */

.form-box select{

    appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 15px center;

    padding-right:45px;

}/*======================*/

.features{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin:35px 0 40px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:20px;
    color:#333;
}

.feature-item i{
    width:32px;
    height:32px;
    background:#FFE7C2;
    color:#F59E0B;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:14px;
}

.experience-box{

    position:absolute;
    left:25px;
    bottom:25px;

    width:250px;

    background:#fff;

    border-radius:18px;

    padding:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    border-top:5px solid #F59E0B;

}

.experience-box h2{

    font-size:48px;

    color:#F59E0B;

    margin-bottom:5px;

}

.experience-box p{

    color:#555;

    font-size:16px;

    margin-bottom:20px;

}

.experience-box hr{

    border:none;

    border-top:1px solid #eee;

    margin:20px 0;

}

.exp-item{

    margin-bottom:18px;

}

.exp-item:last-child{

    margin-bottom:0;

}

.exp-item h3{

    font-size:28px;

    color:#222;

    margin-bottom:5px;

}

.exp-item span{

    color:#666;

    font-size:15px;

}

.section-tag{

color:#00A651;

font-weight:700;

text-transform:uppercase;

letter-spacing:2px;

margin-bottom:15px;

}

.trusted{

padding:90px 0;

background:#fff;

}

.trusted h2{

font-size:42px;

margin-bottom:50px;

}

.logo-slider{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:25px;

}

.logo-item{

height:120px;

background:#fff;

border-radius:18px;

display:flex;

justify-content:center;

align-items:center;

box-shadow:0 15px 40px rgba(0,0,0,.05);

transition:.35s;

}

.logo-item:hover{

transform:translateY(-8px);

}

.logo-item img{

max-width:120px;

opacity:.8;

}

/*======================*/

.why{

padding:110px 0;

background:#F7FAFD;

}

.why h2{

font-size:45px;

max-width:700px;

margin-bottom:60px;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.why-card{

background:#fff;

padding:45px 35px;

border-radius:20px;

transition:.35s;

box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.why-card:hover{

transform:translateY(-12px);

}

.icon{

width:70px;

height:70px;

background:#EAF8EF;

display:flex;

justify-content:center;

align-items:center;

font-size:32px;

border-radius:18px;

margin-bottom:30px;

}

.why-card h3{

margin-bottom:15px;

font-size:24px;

}

.why-card p{

color:#666;

line-height:28px;

}

.loan-section{
padding:100px 0;
background:#fff;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
color:#00A651;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;
}

.section-title h2{
font-size:44px;
margin:15px 0;
}

.section-title p{
max-width:650px;
margin:auto;
color:#666;
line-height:28px;
}

.loan-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.loan-card{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
transition:.35s;
}

.loan-card:hover{
transform:translateY(-10px);
}

.loan-card img{
width:70px;
margin-bottom:25px;
}

.loan-card h3{
margin-bottom:15px;
font-size:26px;
}

.loan-card p{
line-height:28px;
color:#666;
margin-bottom:25px;
}

.loan-card a{
color:#00A651;
font-weight:600;
text-decoration:none;
}

.process{
padding:110px 0;
background:#F7FAFD;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:60px;
}

.step{
background:#fff;
padding:40px 30px;
border-radius:20px;
text-align:center;
box-shadow:0 12px 35px rgba(0,0,0,.05);
transition:.35s;
}

.step:hover{
transform:translateY(-10px);
}

.step-number{
width:70px;
height:70px;
background:#00A651;
color:#fff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
margin:auto;
font-size:24px;
font-weight:700;
margin-bottom:25px;
}

.step h3{
margin-bottom:15px;
}

.step p{
line-height:28px;
color:#666;
}

/*================ ABOUT ================*/

.about-section{

padding:110px 0;

background:#fff;

}

.about-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.about-image{

position:relative;

}

.about-image img{

width:100%;

border-radius:25px;

display:block;

}

.experience-box{

position:absolute;

left:30px;

bottom:30px;

background:#00A651;

padding:30px;

border-radius:20px;

color:#fff;

}

.experience-box h2{

font-size:50px;

}

.about-content h2{

font-size:46px;

margin:20px 0;

}

.about-content p{

line-height:30px;

color:#666;

margin-bottom:35px;

}

.list-item{

display:flex;

gap:20px;

margin-bottom:25px;

}

.check{

width:55px;

height:55px;

background:#EAF8EF;

color:#00A651;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:24px;

font-weight:bold;

flex-shrink:0;

}

.list-item h4{

margin-bottom:8px;

font-size:20px;

}

/*================ COUNTER ================*/

.counter{

background:#00A651;

padding:80px 0;

}

.counter-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

text-align:center;

}

.counter h2{

font-size:52px;

color:#fff;

margin-bottom:10px;

}

.counter p{

color:#fff;

font-size:18px;

}

/*================ VIDEO ================*/

.video-section{

padding:120px 0;

background:#F8FBFD;

}

.video-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.video-content h2{

font-size:46px;

margin:20px 0;

}

.video-content p{

line-height:30px;

margin-bottom:30px;

color:#666;

}

.video-list{

list-style:none;

margin-bottom:40px;

}

.video-list li{

margin-bottom:15px;

font-size:18px;

}

.video-box iframe{

width:100%;

height:420px;

border:none;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

/*================ CTA ================*/

.cta{

padding:90px 0;

background:#00A651;

}

.cta-box{

display:flex;

justify-content:space-between;

align-items:center;

}

.cta h2{

font-size:42px;

color:#fff;

margin-bottom:10px;

}

.cta p{

color:#fff;

font-size:18px;

}

.cta .btn{

background:#fff;

color:#00A651;

}

/*================ TESTIMONIAL ================*/

.testimonial{

padding:120px 0;

background:#fff;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:60px;

}

.testimonial-card{

background:#F8FBFD;

padding:40px;

border-radius:20px;

box-shadow:0 12px 35px rgba(0,0,0,.05);

transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.testimonial-card p{

line-height:30px;

margin-bottom:30px;

color:#666;

}

.testimonial-card h4{

font-size:22px;

margin-bottom:5px;

}

/* FAQ */

.faq{
padding:110px 0;
background:#F7FAFD;
}

.faq-item{
background:#fff;
border-radius:15px;
margin-bottom:20px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.faq-btn{
width:100%;
padding:22px 30px;
border:none;
background:#fff;
display:flex;
justify-content:space-between;
font-size:18px;
cursor:pointer;
font-weight:600;
}

.faq-content{
display:none;
padding:0 30px 25px;
line-height:28px;
color:#666;
}

.faq-item.active .faq-content{
display:block;
}

/* Contact */

.contact{
padding:120px 0;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
}

.contact h2{
font-size:44px;
margin:20px 0;
}

.contact p{
line-height:30px;
color:#666;
margin-bottom:30px;
}

.contact-info{
list-style:none;
}

.contact-info li{
margin-bottom:18px;
font-size:18px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:18px;
margin-bottom:20px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
}

.contact-form textarea{
height:160px;
resize:none;
}

.contact-form button{
width:100%;
height:55px;
border:none;
background:#00A651;
color:#fff;
font-size:17px;
border-radius:10px;
cursor:pointer;
}

/* Footer */

footer{
background:#101820;
color:#fff;
padding:90px 0 30px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:50px;
}

.footer-grid h4{
margin-bottom:20px;
}

.footer-grid ul{
list-style:none;
}

.footer-grid li{
margin-bottom:12px;
}

.footer-grid a{
color:#ddd;
text-decoration:none;
}

.copyright{
margin-top:60px;
padding-top:30px;
border-top:1px solid rgba(255,255,255,.1);
text-align:center;
color:#bbb;
}

/* Responsive */

@media(max-width:992px){

.hero-area,
.about-wrapper,
.video-wrapper,
.contact-grid{
grid-template-columns:1fr;
display:grid;
}

.loan-grid,
.why-grid,
.process-grid,
.testimonial-grid,
.counter-grid,
.footer-grid,
.logo-slider{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.loan-grid,
.why-grid,
.process-grid,
.testimonial-grid,
.counter-grid,
.footer-grid,
.logo-slider{
grid-template-columns:1fr;
}

nav ul{
display:none;
}

.hero h1{
font-size:38px;
}

.section-title h2,
.about-content h2,
.contact h2,
.video-content h2{
font-size:34px;
}

}

.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo-icon{
width:50px;
height:50px;
background:#00A651;
border-radius:12px;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
font-weight:700;
color:#fff;
}

.logo-text{
display:flex;
flex-direction:column;
line-height:1.1;
}

.logo-text span{
font-size:26px;
font-weight:700;
color:  #000812;
}

.logo-text small{
font-size:14px;
letter-spacing:2px;
color:#5bc08c;
font-weight:600;
}
.partners{
    padding:70px 0;
    overflow:hidden;
    background:#fff;
}

.slider{
    width:100%;
    overflow:hidden;
}

.slide-track{
    display:flex;
    width:max-content;
}

.slide{
    width:180px;
    height:100px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 25px;
    flex-shrink:0;
}

.slide img{
    max-width:140px;
    max-height:70px;
    object-fit:contain;
}
:root{
    --primary:#0B5ED7;
    --secondary:#2563EB;
    --dark:#0F172A;
    --light:#F8FAFC;
    --white:#FFFFFF;
}
body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--text);
    overflow-x:hidden;
}
header{
    background:#fff;
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 15px rgba(0,0,0,.05);
}
.logo-icon{
    background: rgb(150, 130, 93);
}

.btn{
    background: rgb(139, 95, 12);
    text-decoration: none;
    color: #fff;
    padding: 9px;
    border-radius: 5px;
}

.btn:hover{  background:#F59E0B;
    color:#fff;
}

.logo-text{
    color: #222;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}

nav ul a{
    color:#222;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav ul a:hover{
    color:var(--primary);
}
/*=========================
      FEEDBACK SECTION
==========================*/

.feedback-section{

    padding:110px 0;

    background:#FFF8EF;

}

.feedback-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.feedback-left h2{

    font-size:46px;

    margin:18px 0;

    color:#222;

}

.feedback-left p{

    color:#666;

    line-height:30px;

    margin-bottom:30px;

}

.feedback-points{

    list-style:none;

}

.feedback-points li{

    margin-bottom:18px;

    font-size:18px;

}

.feedback-points i{

    color:#F59E0B;

    margin-right:12px;

}

.feedback-form{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.feedback-form input,
.feedback-form select,
.feedback-form textarea{

    width:100%;

    padding:18px;

    margin-bottom:18px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    transition:.3s;

}

.feedback-form textarea{

    resize:none;

}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus{

    outline:none;

    border-color:#F59E0B;

    box-shadow:0 0 0 4px rgba(245,158,11,.12);

}

.feedback-form button{

    width:100%;

    height:58px;

    border:none;

    background:#F59E0B;

    color:#fff;

    font-size:18px;

    font-weight:600;

    border-radius:10px;

    cursor:pointer;

    transition:.35s;

}

.feedback-form button:hover{

    background:#E88700;

    transform:translateY(-3px);

}

@media(max-width:992px){

.feedback-wrapper{

grid-template-columns:1fr;

}

.feedback-left{

text-align:center;

}

}

/*====================================
        PREMIUM CONTACT SECTION
====================================*/

.contact{
    padding:120px 0;
    background:#FFF8EF;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* Left Side */

.contact h2{
    font-size:48px;
    color:#1F2937;
    margin:18px 0;
    font-weight:700;
}

.contact p{
    color:#666;
    line-height:30px;
    margin-bottom:35px;
}

.contact-info{
    list-style:none;
}

.contact-info li{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:22px;
    font-size:18px;
    color:#444;
}

.contact-info li i{
    width:48px;
    height:48px;
    background:#FFE8C7;
    color:#F59E0B;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
}

/* Right Side Form */

.contact-form{

    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:18px 20px;

    border:1px solid #E5E7EB;

    border-radius:10px;

    margin-bottom:20px;

    font-size:16px;

    transition:.35s;

}

.contact-form textarea{

    height:170px;

    resize:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:#F59E0B;

    box-shadow:0 0 0 4px rgba(245,158,11,.12);

}

.contact-form button{

    width:100%;
    height:58px;

    border:none;

    border-radius:10px;

    background:#F59E0B;

    color:#fff;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.contact-form button:hover{

    background:#E88700;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(245,158,11,.25);

}

/* Responsive */

@media(max-width:992px){

.contact-grid{

grid-template-columns:1fr;

}

.contact{

text-align:center;

}

.contact-info li{

justify-content:center;

}

}
/*==================================
        PREMIUM CTA SECTION
===================================*/

.cta{
    padding:100px 0;
    background:linear-gradient(135deg,#F59E0B,#FFB547);
    position:relative;
    overflow:hidden;
}

/* Decorative Circles */

.cta::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.10);
    border-radius:50%;
    top:-140px;
    right:-120px;
}

.cta::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-100px;
    left:-80px;
}

.cta-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    position:relative;
    z-index:2;
}

.cta-content{
    max-width:700px;
}

.cta h2{
    font-size:48px;
    color:#fff;
    margin-bottom:18px;
    line-height:1.2;
}

.cta p{
    color:rgba(255,255,255,.92);
    font-size:19px;
    line-height:32px;
}

/* CTA Button */

.cta .btn{

    background:#fff;
    color:#F59E0B;

    padding:16px 38px;

    border-radius:10px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.cta .btn:hover{

    background:#1F2937;

    color:#fff;

    transform:translateY(-4px);

}

/* Mobile */

@media(max-width:992px){

.cta-box{

flex-direction:column;
text-align:center;

}

.cta h2{

font-size:38px;

}

}

/*=========================
      PREMIUM COUNTER
==========================*/

.counter{

    padding:110px 0;

    background:linear-gradient(135deg,#F59E0B,#FFB547);

}

.counter-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.counter-box{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.2);

    border-radius:18px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

}

.counter-box:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.18);

}

.counter-box h2{

    font-size:58px;

    color:#fff;

    margin-bottom:10px;

    font-weight:800;

}

.counter-box p{

    font-size:18px;

    color:#fff;

    opacity:.95;

}

/* Mobile */

@media(max-width:992px){

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.counter-grid{

grid-template-columns:1fr;

}

}

/*==================================
        PREMIUM ABOUT SECTION
===================================*/

.about-section{
    padding:120px 0;
    background:#FFF8EF;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/* Image */

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:22px;
    box-shadow:0 25px 60px rgba(0,0,0,.10);
    transition:.4s;
}

.about-image img:hover{
    transform:scale(1.03);
}

/* Experience Card */

.experience-box{
    position:absolute;
    left:25px;
    bottom:25px;

    width:240px;

    background:#fff;
    border-radius:18px;
    padding:25px;

    border-left:5px solid #F59E0B;

    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.experience-box h2{
    font-size:48px;
    color:#F59E0B;
    margin-bottom:5px;
}

.experience-box span{
    display:block;
    color:#666;
    font-size:16px;
}

/* Right Content */

.about-content .section-tag{

    display:inline-block;

    background:#FFE8C7;

    color:#F59E0B;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.about-content h2{

    font-size:46px;

    color:#222;

    margin:25px 0;

    line-height:1.2;

}

.about-content p{

    color:#666;

    line-height:32px;

    margin-bottom:35px;

    font-size:17px;

}

/* Features */

.about-list{
    margin-bottom:35px;
}

.list-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

    padding:20px;

    background:#fff;

    border-radius:14px;

    margin-bottom:18px;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.list-item:hover{

    transform:translateX(8px);

    box-shadow:0 15px 35px rgba(245,158,11,.15);

}

.check{

    width:55px;

    height:55px;

    background:#FFE8C7;

    color:#F59E0B;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:bold;

    flex-shrink:0;

}

.list-item h4{

    font-size:22px;

    margin-bottom:8px;

    color:#222;

}

.list-item p{

    margin:0;

    line-height:28px;

    color:#666;

}

/* Button */

.about-content .btn{

    background:#F59E0B;

    color:#fff;

    padding:16px 34px;

    border-radius:10px;

    text-decoration:none;

    display:inline-block;

    transition:.35s;

}

.about-content .btn:hover{

    background:#E88700;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(245,158,11,.30);

}

/* Mobile */

@media(max-width:992px){

.about-wrapper{

grid-template-columns:1fr;

gap:50px;

}

.about-content{

text-align:center;

}

.experience-box{

position:relative;

left:auto;

bottom:auto;

margin:25px auto 0;

}

}

.trusted{
    background:#fff;
    padding:110px 0;
}

.logo-item{
    background:#fff;
    border:1px solid #F3F4F6;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s;
}

.logo-item:hover{
    transform:translateY(-8px);
    border-color:#F59E0B;
    box-shadow:0 20px 50px rgba(245,158,11,.15);
}

.why{
    background:#FFF8EF;
}

.why-card{

    background:#fff;

    border-radius:20px;

    padding:40px;

    border:1px solid #F5F5F5;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#F59E0B;

    box-shadow:0 20px 45px rgba(245,158,11,.18);

}

.icon{

    background:#FFE8C7;

    color:#F59E0B;

}

.loan-section{
    background:#fff;
}

.loan-card{

    border:1px solid #F2F2F2;

    border-radius:20px;

    transition:.35s;

}

.loan-card:hover{

    transform:translateY(-12px);

    border-color:#F59E0B;

    box-shadow:0 25px 45px rgba(245,158,11,.18);

}

.loan-card a{

    color:#F59E0B;
    font-weight:700;

}
.process{

background:#FFF8EF;

}

.step{

background:#fff;

border-radius:18px;

transition:.35s;

}

.step:hover{

transform:translateY(-8px);

}

.step-number{

background:#F59E0B;

box-shadow:0 10px 25px rgba(245,158,11,.25);

}

.video-section{

background:#fff;

}

.video-box iframe{

border-radius:20px;

box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.testimonial{

background:#FFF8EF;

}

.testimonial-card{

background:#fff;

border-radius:20px;

transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(245,158,11,.15);

}

.testimonial-card h4{

color:#F59E0B;

}

.faq{

background:#fff;

}

.faq-item{

border-radius:16px;

overflow:hidden;

border:1px solid #eee;

}

.faq-btn{

transition:.3s;

}

.faq-btn:hover{

background:#FFF4E8;

color:#F59E0B;

}
.l img{
    height: 50px;
    width: 100px;
}

.hero{

    padding:120px 0;

    background:#FFF8EF;

    position:relative;

}

.hero-area{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

}

.hero-left h1{

    font-size:64px;

    line-height:1.1;

    margin:20px 0;

    color:#1F2937;

    font-weight:800;

}

.hero-left h3{

    font-size:28px;

    color:#555;

    margin-bottom:20px;

}

.hero-left h3 span{

    color:#F59E0B;

}

.hero-left p{

    font-size:18px;

    color:#666;

    line-height:32px;

    margin-bottom:35px;

}

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.feature{

    display:flex;

    gap:12px;

    align-items:center;

    background:#fff;

    padding:15px 18px;

    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.feature i{

    color:#F59E0B;

    font-size:18px;

}

.feature span{

    font-weight:600;

}

@media(max-width:992px){

.hero-area{

grid-template-columns:1fr;

}

.hero-features{

grid-template-columns:1fr;

}

.hero-left h1{

font-size:46px;

}

}

/*==============================
      WHY CHOOSE SECTION
==============================*/

.why-section{

    padding:120px 0;

    background:#ffffff;

}

.section-title{

    text-align:center;

    max-width:750px;

    margin:0 auto 70px;

}

.section-title h2{

    font-size:48px;

    margin:20px 0;

    color:#222;

}

.section-title p{

    color:#666;

    line-height:30px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-bottom:90px;

}

.why-card{

    background:#FFF8EF;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(245,158,11,.18);

}

.why-icon{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:50%;

    background:#FFE5C1;

    color:#F59E0B;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;

}

.steps-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.step-box{

    background:#fff;

    border:1px solid #eee;

    padding:40px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

}

.step-box:hover{

    transform:translateY(-8px);

    border-color:#F59E0B;

}

.step-number{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:25px;

    background:#F59E0B;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:bold;

}

@media(max-width:992px){

.why-grid,
.steps-grid{

grid-template-columns:1fr;

}

}

/*==================================
        FUNDING SECTION
==================================*/

.funding-section{

    padding:120px 0;

    background:#FFF8EF;

}

.funding-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.funding-card{

    background:#fff;

    padding:40px;

    border-radius:22px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

    border:1px solid transparent;

}

.funding-card:hover{

    transform:translateY(-10px);

    border-color:#F59E0B;

    box-shadow:0 20px 45px rgba(245,158,11,.18);

}

.funding-icon{

    width:75px;

    height:75px;

    background:#FFE7C5;

    color:#F59E0B;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:25px;

}

.funding-card h3{

    font-size:28px;

    margin-bottom:15px;

    color:#222;

}

.funding-card p{

    color:#666;

    line-height:30px;

    margin-bottom:25px;

}

.funding-card ul{

    list-style:none;

    margin-bottom:30px;

}

.funding-card ul li{

    margin-bottom:14px;

    color:#444;

}

.funding-card ul li i{

    color:#F59E0B;

    margin-right:10px;

}

.loan-btn{

    display:inline-block;

    padding:14px 30px;

    background:#F59E0B;

    color:#fff;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.loan-btn:hover{

    background:#222;

    color:#fff;

}

@media(max-width:992px){

.funding-grid{

grid-template-columns:1fr;

}

}
/*==========================
      TESTIMONIAL
==========================*/

.testimonial-section{

padding:120px 0;

background:#fff;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.testimonial-card{

background:#FFF8EF;

padding:35px;

border-radius:22px;

transition:.35s;

border:1px solid transparent;

}

.testimonial-card:hover{

transform:translateY(-10px);

border-color:#F59E0B;

box-shadow:0 20px 45px rgba(245,158,11,.18);

}

.stars{

color:#F59E0B;

font-size:22px;

margin-bottom:20px;

}

.testimonial-card p{

line-height:30px;

color:#666;

margin-bottom:30px;

}

.client{

display:flex;

align-items:center;

gap:15px;

}

.client img{

width:60px;

height:60px;

border-radius:50%;

object-fit:cover;

}

.client h4{

margin:0;

}

.client span{

color:#777;

font-size:14px;

}

@media(max-width:992px){

.testimonial-grid{

grid-template-columns:1fr;

}

}

.faq{

padding:120px 0;

background:#FFF8EF;

}

.faq-item{

background:#fff;

margin-bottom:18px;

border-radius:15px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.faq-btn{

width:100%;

padding:22px;

background:none;

border:none;

font-size:20px;

font-weight:600;

text-align:left;

cursor:pointer;

}

.faq-content{

max-height:0;

overflow:hidden;

transition:.4s;

padding:0 22px;

}

.faq-item.active .faq-content{

max-height:200px;

padding:0 22px 22px;

}
/*==================================
            FOOTER
==================================*/

.footer{

    background:#111827;

    padding:90px 0 25px;

    color:#ddd;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:50px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer p{

    color:#BFC5D2;

    line-height:30px;

}

.footer-col h3{

    color:#fff;

    margin-bottom:25px;

    font-size:24px;

}

.footer ul{

    list-style:none;

}

.footer ul li{

    margin-bottom:16px;

}

.footer ul li a{

    color:#BFC5D2;

    text-decoration:none;

    transition:.35s;

}

.footer ul li a:hover{

    color:#F59E0B;

    padding-left:8px;

}

.contact-list li{

    display:flex;

    gap:12px;

    align-items:flex-start;

}

.contact-list i{

    color:#F59E0B;

    margin-top:5px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#1F2937;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:#F59E0B;

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:60px;

    padding-top:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

}

.footer-bottom p{

    margin:0;

}

.footer-bottom div{

    display:flex;

    gap:25px;

}

.footer-bottom a{

    color:#BFC5D2;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom a:hover{

    color:#F59E0B;

}

/* Mobile */

@media(max-width:992px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.contact-list li{

justify-content:center;

}

.footer-social{

justify-content:center;

}

.footer-bottom{

flex-direction:column;

gap:20px;

text-align:center;

}

}
.funding-icon{
    width:85px;
    height:85px;
    background:linear-gradient(135deg,#F59E0B,#FFB547);
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
    transition:.35s;
    box-shadow:0 15px 35px rgba(245,158,11,.25);
}

.funding-icon i{
    font-size:36px;
    color:#fff;
}

.funding-card:hover .funding-icon{
    transform:rotate(-8deg) scale(1.08);
    box-shadow:0 20px 45px rgba(245,158,11,.35);
}
/*==========================
      PARTNER SLIDER
==========================*/

.partners-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    padding:20px 0;
}

.slide-track{

    display:flex;

    align-items:center;

    gap:40px;

    width:max-content;

    overflow-x:auto;

    scroll-behavior:auto;

    scrollbar-width:none;

}

.slide-track::-webkit-scrollbar{
    display:none;
}

.partner-item{

    min-width:180px;

    height:100px;

    background:#fff;

    border-radius:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.partner-item:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(245,158,11,.20);

}

.partner-item img{

    max-width:120px;

    max-height:60px;

    object-fit:contain;

    transition:.3s;

}

.partner-item:hover img{

    transform:scale(1.08);

}
.partners-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.slide-track{
    display:flex;
    gap:30px;
    align-items:center;
    width:max-content;
}

.partner-item{
    flex:0 0 auto;
}