/*==============================
Google Font
===============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

/*==============================
Navbar
===============================*/

.navbar{
    background:#1A1A1A;
    padding:15px 0;
    transition:.4s;
    border-bottom:1px solid rgba(255,193,7,.15);
}

.navbar-brand h3{
    color:#f28510;
    font-size:30px;
    font-weight:700;
    margin:0;
}

.navbar-brand span{
    color:#fff;
    font-size:12px;
    letter-spacing:1px;
}

.navbar-nav .nav-link{
    color:#fff;
    margin:0 12px;
    font-weight:500;
    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#f28510;
}

.navbar-toggler{
    border:none;
    color:#fff;
    font-size:26px;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.apply-btn{
    margin-left:25px;
    background:#f28510;
    color:#000;
    padding:12px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.apply-btn:hover{
    background:#fff;
    color:#C89B3C;
}

/*==============================
Hero Section
===============================*/

.hero{
    background:linear-gradient(135deg,#1A1A1A,#2D2D2D);
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:180px;
    padding-bottom:80px;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:#f28510;
    filter:blur(220px);
    opacity:.15;
    top:0;
    right:0;
}

.hero h5{
    color:#f28510;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.hero h1{
    color:#fff;
    font-size:65px;
    font-weight:800;
    line-height:1.2;
    margin:20px 0;
}

.hero h1 span{
    color:#f28510;
    display:block;
}

.hero p{
    color:#ddd;
    font-size:18px;
    line-height:30px;
    max-width:550px;
}

.hero img{
    max-width:100%;
    animation:float 3s infinite ease-in-out;
}

/*==============================
Buttons
===============================*/

.btn1{
    display:inline-block;
    text-decoration:none;
    background:#f28510;
    color:#000;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    margin-right:15px;
    transition:.4s;
}

.btn1:hover{
    background:#fff;
    color:#C89B3C;
}

.btn2{
    display:inline-block;
    text-decoration:none;
    border:2px solid #f28510;
    color:#f28510;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.btn2:hover{
    background:#f28510;
    color:#000;
}

/*==============================
Animation
===============================*/

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0px);
}

}

/*==============================
Responsive
===============================*/

@media(max-width:991px){

.hero{
padding:140px 0 80px;
text-align:center;
}

.hero h1{
font-size:42px;
}

.hero p{
margin:auto;
}

.apply-btn{
display:none;
}

.navbar-brand h3{
font-size:22px;
}

}

@media(max-width:576px){

.hero h1{
font-size:34px;
}

.hero p{
font-size:15px;
line-height:26px;
}

.btn1,
.btn2{
display:block;
margin:12px auto;
width:220px;
text-align:center;
}

}
/*==============================
Section Title
===============================*/

.section-title{
    color:#f28510;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-heading{
    font-size:42px;
    font-weight:700;
    color:#111;
}

.services{
    background:#f8f9fa;
}

.services p{
    color:#666;
}

.service-card{

    background:#fff;

    padding:35px 25px;

    border-radius:18px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;
}

.service-card:hover{

    transform:translateY(-10px);

    background:#000;

}

.service-card .icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#f28510;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#000;

    margin-bottom:25px;

}

.service-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.service-card p{

    line-height:28px;

    margin-bottom:20px;

}

.service-card a{

    color:#f28510;

    text-decoration:none;

    font-weight:600;

}

.service-card:hover h4,
.service-card:hover p{

    color:#fff;

}

.service-card:hover a{

    color:#f28510;

}
/*==============================
About Section
===============================*/

.about{

    background:#fff;

}

.about-img{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.about p{

    color:#666;

    line-height:30px;

}

.about-box{

    background:#f8f9fa;

    padding:15px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.about-box i{

    color:#f28510;

    margin-right:8px;

}

.about-box:hover{

    background:#000;

    color:#fff;

}
/*==============================
Why Choose Us
===============================*/

.why-us{
    background:#111;
}

.why-us .section-heading,
.why-us p{
    color:#fff;
}

.why-card{
    background:#1c1c1c;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    transition:.4s;
    height:100%;
    border:1px solid rgba(255,193,7,.15);
}

.why-card:hover{
    transform:translateY(-10px);
    background:#fff;
}

.why-card i{
    font-size:45px;
    color:#f28510;
    margin-bottom:20px;
}

.why-card h4{
    color:#fff;
    margin-bottom:15px;
    font-weight:700;
}

.why-card p{
    color:#dcdcdc;
}

.why-card:hover i,
.why-card:hover h4,
.why-card:hover p{
    color:#C89B3C;
}

/*==============================
Counter
===============================*/

.counter-section{
    background:#f28510;
    padding:70px 0;
}

.counter-box h2{
    font-size:50px;
    font-weight:800;
    color:#000;
}

.counter-box p{
    font-size:18px;
    font-weight:600;
    color:#222;
}

@media(max-width:768px){

.counter-box{
    margin-bottom:30px;
}

.counter-box h2{
    font-size:35px;
}

}
/* Loan Process */

.loan-process{
background:#f8f9fa;
}

.process-card{
background:#fff;
padding:35px;
text-align:center;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
height:100%;
}

.process-card:hover{
background:#C89B3C;
transform:translateY(-8px);
}

.process-card i{
font-size:45px;
color:#f28510;
margin-bottom:20px;
}

.process-card h4{
font-weight:700;
margin-bottom:15px;
}

.process-card:hover h4,
.process-card:hover p{
color:#fff;
}

/* CTA */

.cta{
background:#000;
padding:80px 0;
}

.cta h2{
color:#f28510;
font-size:42px;
font-weight:700;
}

.cta p{
color:#fff;
}

/* Testimonials */

.testimonial{
background:#fff;
}

.testimonial-card{
padding:30px;
background:#f8f9fa;
border-radius:15px;
text-align:center;
transition:.3s;
height:100%;
}

.testimonial-card:hover{
background:#C89B3C;
}

.testimonial-card:hover p,
.testimonial-card:hover h4{
color:#fff;
}

.testimonial-card h5{
color:#f28510;
margin:15px 0;
}

/* Footer */

.footer{
background:#111;
padding:70px 0 20px;
color:#fff;
}

.footer h3{
color:#f28510;
font-weight:700;
}

.footer h4{
color:#f28510;
margin-bottom:20px;
}

.footer ul{
padding:0;
list-style:none;
}

.footer ul li{
margin-bottom:10px;
}

.footer ul li a{
color:#ddd;
text-decoration:none;
}

.footer ul li a:hover{
color:#f28510;
}

.footer hr{
border-color:#444;
margin:30px 0;
}
.page-banner{
background:linear-gradient(rgba(15,23,42,.85),rgba(15,23,42,.85)),
url("../images/about-banner.jpg") center/cover;
padding:50px 0;
color:#fff;
}

.page-banner h1{
font-size:50px;
font-weight:700;
margin-bottom:10px;
}

.page-banner a{
color:#D4AF37;
text-decoration:none;
}

.page-banner span{
margin:0 8px;
}
/* Services */

.service-box{
background:#fff;
padding:40px 30px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
height:100%;
}

.service-box:hover{
transform:translateY(-10px);
}

.service-box .icon{
width:90px;
height:90px;
background:#D4AF37;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 25px;
font-size:35px;
color:#fff;
}

.service-box h3{
font-weight:700;
margin-bottom:15px;
}

.service-box p{
color:#666;
line-height:28px;
}

/* Loan Process */

.process-box{
padding:30px;
background:#fff;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.process-box span{
display:inline-block;
width:60px;
height:60px;
line-height:60px;
border-radius:50%;
background:#D4AF37;
color:#fff;
font-size:24px;
font-weight:700;
margin-bottom:20px;
}
.loan-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.loan-card:hover{
    transform:translateY(-10px);
}

.loan-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.loan-card h3{
    font-weight:700;
    margin-bottom:15px;
}

.loan-card ul{
    list-style:none;
    padding:0;
}

.loan-card ul li{
    padding:8px 0;
    color:#555;
}

.loan-card ul li i{
    color:#D4AF37;
    margin-right:8px;
}
/* Contact Section */

.contact-section{
background:#F8F6F1;
}

.contact-info{

background:#1A1A1A;

padding:40px;

border-radius:20px;

color:#fff;

height:100%;

}

.contact-info h2{

color:#C89B3C;

margin-bottom:20px;

}

.info-box{

display:flex;

margin-top:30px;

}

.info-box i{

width:60px;

height:60px;

background:#C89B3C;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

color:#fff;

margin-right:20px;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-form .form-control,
.contact-form .form-select{

height:55px;

border-radius:10px;

}

.contact-form textarea{

height:auto !important;

}

.contact-form button{

background:#C89B3C;

border:none;

padding:14px 35px;

font-weight:600;

border-radius:10px;

}

.contact-form button:hover{

background:#A67C2E;

color:#fff;

}