@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root{
    --primary:#BA273A;
    --secondary:#1C1752;
    --white:#fff;
    --black:#000000;
    --text:#4b5563;
    --border:#e5e7eb;
    --bg:var(--white)fff;
    --section-space:100px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    font-family:'Manrope',sans-serif;
}

body{
    font-family:'Manrope',sans-serif;
    background:var(--bg);
    color:var(--black);
    line-height:1.6;
    font-size:16px;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul,
ol{
    list-style:none;
}

button,
input,
textarea,
select{
    font-family:'Manrope',sans-serif;
    outline:none;
    border:none;
}

h1,h2,h3,h4,h5,h6{
    line-height:1.2;
    font-weight:700;
    font-family:'Manrope',sans-serif;
}

h1{
    font-size:42px;
}

h2{
    font-size:38px;
}

h3{
    font-size:20px;
}

p{
    color:var(--text);
    font-family:'Manrope',sans-serif;
}
.container{
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
}
.primary-btn{
    display:inline-block;
    background:var(--primary);
    color:var(--white);
    padding:14px 32px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.primary-btn:hover{
    background:var(--secondary);
}

::selection{
    background:var(--primary);
    color:var(--white);
}

.topbar{
    background: var(--primary);
    padding: 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.topbar p{
    font-size: 14px;
    margin: 0;
    color: #fff;
}

header{
  background:var(--white);
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.main-menu{
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:1200px;
    margin:auto;
    padding:0 15px;
}


.main-menu__logo a{
    font-size:34px;
    font-weight:800;
    text-decoration:none;
    line-height:1;
}
.main-menu__logo img{
    width: 100px;
    height: 100%;
}

.main-menu__nav{
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-menu__list{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.main-menu__list li{
    position:relative;
}

.main-menu__list a{
    position:relative;
    color:var(--black);
    font-size:15px;
    font-weight:700;
    transition:.3s;
    display:flex;
    align-items:center;
    gap:6px;
}

.main-menu__list a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:width .3s ease;
}

.main-menu__list a:hover,
.main-menu__list .current > a{
    color:var(--primary);
}

.main-menu__list a:hover::after,
.main-menu__list .current > a::after{
    width:100%;
}

/* Dropdown */

.menu-item-has-children .sub-menu{
    position:absolute;
    top:141%;
    left:0;
    min-width:200px;
    background:#f4d0cb;
    padding:0;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    list-style:none;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.35s ease;
    z-index:999;
}

.menu-item-has-children .sub-menu li{
    width:100%;
}

.menu-item-has-children .sub-menu a{
    padding:12px 20px;
    font-size:14px;
    font-weight:600;
    color:#1C1752;
    display:block;
}

.menu-item-has-children .sub-menu a::after{
    display:none;
}

.menu-item-has-children .sub-menu a:hover{
    background:#BA273A;
    color:#fff;
    padding-left:28px;
}

.menu-item-has-children:hover .sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.menu-item-has-children > a i{
    font-size:11px;
    transition:.3s;
}

.menu-item-has-children:hover > a i{
    transform:rotate(180deg);
}
.main-menu__toggler{
    display:none;
    color:var(--primary) !important;
    font-size:24px;
}
.header-action{
    display:flex;
    align-items:center;
    gap:15px;
}

.header-action .call-btn{
    display:flex;
    align-items:center;
    gap:8px;
    color:#1C1752;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.header-action .call-btn i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f3f3f3;
    color:var(--primary);
}

.header-action .call-btn:hover{
    color: var(--primary);
}

.header-action .loan-btn{
    background: white;
    color: var(--primary);
    font-weight: 900;
    text-decoration:none;
    padding: 5px 20px;
    border-radius:6px;
    transition:.3s;
    border: 2px solid;
    transition: 0.4s ease;
}

.header-action .loan-btn:hover{
    background:var(--primary);
    color:var(--white);
}

.header-action .loan-btn i{
    margin-right:8px;
}

/* banner slider */
.finx-hero-banner{
    position:relative;
}

.finx-slide-item{
    position:relative;
    height:450px;
}

.finx-slide-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(28,23,82,.65);
}

.finx-slide-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.finx-banner-content{
    position:absolute;
    top:50%;
    left:7%;
    transform:translateY(-50%);
    max-width:650px;
    z-index:2;
}

.finx-banner-content span{
    display:inline-block;
    color:var(--white);
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.finx-banner-content h1{
    color:var(--white);
    font-size:42px;
    line-height:1.3;
    margin-bottom:15px;
}

.finx-banner-content p{
    color:var(--white);
    font-size:18px;
    margin-bottom:30px;
}

.finx-banner-btn{
    display:inline-block;
    padding:14px 32px;
    background:var(--primary);
    color:var(--white);
    font-weight:700;
    border-radius:6px;
    transition:.3s;
}

.finx-banner-btn:hover{
    background:var(--white);
    color:#1C1752;
}

.finx-banner-slider .owl-nav{
    margin:0;
}
.finx-banner-slider .owl-prev,
.finx-banner-slider .owl-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border-radius:50% !important;
    background:var(--white) !important;
    color:#1C1752 !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
}

.finx-banner-slider .owl-prev i,
.finx-banner-slider .owl-next i{
    font-size:22px;
    line-height:1;
}

.finx-banner-slider .owl-prev{
    left:10px;
}

.finx-banner-slider .owl-next{
    right:10px;
}

.finx-banner-slider .owl-prev:hover,
.finx-banner-slider .owl-next:hover{
    background:var(--primary) !important;
    color:var(--white) !important;
}

.finx-about-section{
  padding: 40px 0;
}

.finx-about-tagline{
    color:var(--primary);
    font-size:16px;
    font-weight:700;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.finx-about-image{
    position:relative;
    padding:10px;
    border-radius:6px;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
    transition:.5s;
}

.finx-about-image img{
    position:relative;
    z-index:2;
    width:100%;
    height:490px;
    border-radius:6px;
    object-fit:cover;
    
}

.finx-about-image:hover{
    transform:translateY(-8px);
}

.finx-about-content{
    padding-right:60px;
}

.finx-about-tagline{
    color:var(--primary);
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.finx-about-title{
    font-size:25px;
    line-height:1.2;
    margin-bottom:15px;
    color:var(--black);
}

.finx-about-text{
    font-size:15px;
    font-weight: 600;
    line-height:1.9;
    margin-bottom:20px;
}

.finx-about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 35px;
    background:var(--primary);
    color:var(--white);
    border-radius:10px;
    font-weight:700;
    font-size: 15px;
    transition:.3s;
}

.finx-about-btn:hover{
    background:var(--secondary);
    color:var(--white);
}

.finx-services{
    background:var(--white);
    padding: 40px 0;
}

.section-title{
    max-width:700px;
    margin:0 auto 50px;
    text-align:center;
}

.section-title span{
    display:inline-block;
    color:var(--primary);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-title h2{
    font-size:32px;
    font-weight: 700;
    color:#1C1752;
    margin-bottom:20px;
}

.finx-service-card{
    background:var(--white);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    margin:15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.finx-service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.finx-service-image{
    height:auto;
    overflow:hidden;
}

.finx-service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.finx-service-card:hover img{
    transform:scale(1.08);
}

.finx-service-content{
    padding:20px;
}

.finx-service-content h3{
    color:#1C1752;
    margin-bottom:10px;
    font-size:20px;
}

.finx-service-content p{
    margin-bottom:10px;
    overflow: hidden;
}
.servexa-points{
    list-style:none;
    padding:0;
    margin:25px 0 30px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.servexa-points li{
    display:flex;
    align-items:center;
    gap:10px;
    color:#1C1752;
    font-weight:600;
}

.servexa-points li::before{
    content:"✓";
    width:24px;
    height:24px;
    border-radius:50%;
    background:rgba(186,39,58,.12);
    color:#BA273A;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:700;
}

.servexa-actions{
    display:flex;
    gap:15px;
    align-items:center;
}

.servexa-apply-btn{
    background: linear-gradient(135deg,var(--primary),#ff5a6e);
    color:#fff;
    padding:12px 32px;
    border-radius:4px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.servexa-apply-btn:hover{
    background:#1C1752;
    color:#fff;
}

.servexa-more-btn{
    border:2px solid ;
    color:var(--primary);
    padding:9px 28px;
    border-radius:4px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.servexa-more-btn:hover{
    background:#1C1752;
    color:#fff;
}

.finx-services-slider .owl-dots,  .finx-testimonial-slider .owl-dots{
    margin-top: 20px;
    text-align:center;
}

.finx-services-slider .owl-dot , .finx-testimonial-slider .owl-dot {
    margin:0 6px;
}



.finx-services-slider .owl-dot span , .finx-testimonial-slider .owl-dot span{
    width:12px;
    height:12px;
    background:#d1d5db !important;
    display:block;
    border-radius:50%;
    transition:.3s;
}

.finx-services-slider .owl-dot.active span,
.finx-services-slider .owl-dot:hover span ,  .finx-testimonial-slider .owl-dot.active span,  .finx-testimonial-slider .owl-dot:hover span{
    width:35px;
    border-radius:30px;
    background:var(--primary) !important;
}
.finx-advantage-section{
    padding: 40px 0;
}
.finx-advantage-wrap{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    position:relative;
}

.finx-prem-item{
    background:#fff;
    border-radius:24px;
    padding:20px 30px;
    text-align:center;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.07);
    z-index:2;
}

.finx-prem-item::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    opacity:.08;
}

.finx-red::before{
    background:#BA273A;
}

.finx-blue::before{
    background:#1C1752;
}

.finx-badge-no{
    position:absolute;
    top:0;
    left:0;
    width:65px;
    height:70px;
    color:#fff;
    font-size:24px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px 0 25px 0;
}

.finx-red .finx-badge-no{
    background:#BA273A;
}

.finx-blue .finx-badge-no{
    background:#1C1752;
}

.finx-prem-icon{
    width:95px;
    height:95px;
    margin:20px auto 15px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
}

.finx-red .finx-prem-icon{
    background:rgba(186,39,58,.08);
}

.finx-blue .finx-prem-icon{
    background:rgba(28,23,82,.08);
}

.finx-prem-icon i{
    font-size:42px;
}

.finx-red .finx-prem-icon i{
    color:#BA273A;
}

.finx-blue .finx-prem-icon i{
    color:#1C1752;
}

.finx-prem-item h3{
    font-size:22px;
    color:#1C1752;
    margin-bottom:10px;
}

.finx-prem-item p{
    font-size:16px;
    line-height:1.6;
    margin:0;
}

/* bottom corner illustrator style */

.finx-prem-item::after{
    content:"";
    position:absolute;
    left:-35px;
    bottom:-35px;
    width:75px;
    height:110px;
    border-radius:50%;
}

.finx-red::after{
    background:#BA273A;
}

.finx-blue::after{
    background:#1C1752;
}

/* outside decorative elements */

.finx-advantage-wrap:before{
    content:"";
    position:absolute;
    left:-30px;
    top:-80px;
    width:70px;
    height:70px;
    background-image:
    radial-gradient(#BA273A 2px, transparent 2px);
    background-size:14px 14px;
    opacity:.25;
}


.finx-testimonial-section{
    padding:40px 0;
    background:#f7f8fc;
}
.finx-testimonial-slider .owl-stage-outer{
    padding:10px 0;
}

.finx-testimonial-card{
    position:relative;
    background:var(--white);
    border-radius:18px;
    padding:22px;
    margin:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
    overflow:hidden;
}

.finx-testimonial-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(0,0,0,.12);
}

.finx-quote-icon{
    position:absolute;
    top:12px;
    right:12px;
    width:38px;
    height:38px;
    background:linear-gradient(135deg,var(--primary),#ff5a6e);
    color:var(--white);
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.finx-client-head{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
}

.finx-client-head img{
    width:45px !important;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}

.finx-client-head h4{
    margin:0;
    font-size:14px;
    color:#1C1752;
}

.finx-client-head span{
    font-size:12px;
    color:#6b7280;
}

.finx-review-text{
    font-size:14px;
    line-height:1.6;
    color:#374151;
    max-height:70px;    
    overflow:hidden;
    transition:0.3s ease;
}

.finx-review-text.active{
    max-height:500px;   
}
.finx-read-more{
    margin-top:10px;
    background:none;
    border:none;
    color:var(--primary);
    font-size:13px;
    font-weight:600;
    cursor:pointer;
}

.main-footer{
    background:#0f172a;
    color:var(--white);
    padding:40px 20px;
}
.main-footer img{
    max-width: 100%;
    width: 180px;
    height: 150px;
}
.footer-grid{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap:40px;
    flex-wrap:wrap;
}

.footer-col{
    flex:1;
    min-width:230px;
}

.footer-col h3{
    font-size:16px;
    margin-bottom:15px;
    color:var(--white);
}

.footer-col p{
    font-size:14px;
    line-height:1.6;
    color:#cbd5e6;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    color:#cbd5e6;
    text-decoration:none;
    font-size:14px;
}

.footer-col ul li a:hover{
    color:var(--white);
}

.footer-social{
    margin-top:15px;
    display:flex;
    gap:10px;
}

.footer-social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #334155;
    color:var(--white);
    transition:.3s;
}

.footer-social a:hover{
    background:var(--primary);
    border-color:var(--primary);
}

.footer-col p i{
    margin-right:8px;
    color:var(--white);
}

.footer-bottom{
    border-top:1px solid #1f2937;
    text-align:center;
    padding:15px;
    font-size:13px;
    background: var(--primary);
    color:var(--white);
}
.footer-bottom p{
  color: var(--white);
  margin-bottom: 0;
}
.main-footer a:hover{
  color: var(--white);
}


/* bradcrumb */

.page-header{
    position:relative;
    padding:40px 0;
    text-align:center;
    color:var(--white);
    background-color: var(--secondary);
    overflow:hidden;
}

/* Title */
.page-header h2{
    font-size:36px;
    margin:0;
    text-transform: uppercase;
}

/* about us page */
.finabout{
    background:var(--white);
    padding:40px 0;
}

.finabout-hero,
.finabout-row{
    display:flex;
    align-items:flex-start;
    gap:50px;
    margin-bottom:60px;
    padding-bottom: 60px;
    position: relative;
}
.finabout-hero::after,
.finabout-row::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    width:220px;
    height:3px;
    border-radius:10px;
    background: var(--primary)
}
.finabout-row:last-child{
    margin-bottom: 10px;
    padding-bottom: 0;
}
.finabout-row:last-child::after{
    display:none;
}

.finabout-row.reverse{
    flex-direction:row-reverse;
}

.finabout-text{
    flex:1;
}

.finabout-text h1{
    font-size:30px;
    color:#1C1752;
    margin-bottom:15px;
}

.finabout-text h2{
    font-size:28px;
    color:#1C1752;
    margin-bottom:15px;
}

.finabout-text p{
    font-size:16px;
    color:#444;
    line-height:1.8;
    margin-bottom:10px;
}
.finabout-img{
    flex:1;
    position:relative;
}

.finabout-img img{
    width:100%;
    height:400px;
    object-fit:cover;
    object-position:top;
    border-radius:18px;
    display:block;
    box-shadow:
        0 10px 30px rgba(0,0,0,.08),
        0 30px 80px rgba(28,23,82,.15);
}

.finabout-img::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:var(--primary);
    border-radius:25px;
    right:-20px;
    bottom:-20px;
    z-index:-1;
}

.aurix-contact-wrap{
    padding:50px 0;
    background:#f8f9fc;
}

.aurix-contact-grid{
    margin:auto;
    display:grid;
    grid-template-columns:45% 55%;
    gap:0;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 25px 80px rgba(0,0,0,.08);
}

.aurix-contact-card{
    background: linear-gradient(135deg, var(--primary), #e27380);
    color:#fff;
    position:relative;
    overflow:hidden;
    padding: 40px 45px;
}

.aurix-contact-card:before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    right:-80px;
    bottom:-80px;
}

.aurix-contact-card:after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    right:50px;
    bottom:60px;
}

.aurix-mini-title{
    display:inline-block;
    background:var(--secondary);
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.aurix-contact-card h2{
    font-size:28px;
    line-height:1.2;
    margin-bottom:18px;
    color:#fff;
}

.aurix-contact-card p{
    color:rgba(255,255,255,.85);
    line-height:1.8;
}

.aurix-contact-list{
    margin-top:40px;
}

.aurix-contact-item{
    display:flex;
    gap:18px;
    margin-bottom:15px;
}

.aurix-contact-item i{
    font-size:18px;
}

.aurix-contact-item a,
.aurix-contact-item p{
    color:#fff;
    margin:0;
}

.aurix-socials{
    display:flex;
    gap:12px;
    margin-top:45px;
}

.aurix-socials a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,.3);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.aurix-socials a:hover{
    background:var(--secondary);
    transform:translateY(-4px);
}

.aurix-form-area{
    padding:40px 50px;
}

.aurix-form-head span{
    color:#BA273A;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.aurix-form-head h3{
    color:#1C1752;
    font-size:32px;
    margin-top:8px;
    margin-bottom:35px;
}

.aurix-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.aurix-field{
    margin-bottom:20px;
}

.aurix-field input,
.aurix-field textarea{
    width:100%;
    border:none;
    border-bottom:2px solid #e4e4e4;
    padding:16px 0;
    font-size:15px;
    background:transparent;
    transition:.3s;
}

.aurix-field input:focus,
.aurix-field textarea:focus{
    border-color:#BA273A;
    outline:none;
}

.aurix-field textarea{
    height:120px;
    resize:none;
}

.aurix-submit-btn{
    border:none;
    background:#BA273A;
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.aurix-submit-btn:hover{
    background:#1C1752;
}

.aurix-submit-btn i{
    margin-left:8px;
}

.loan-banner-area{
    padding:40px 0;
    background:#fff;
}

.loan-banner-grid{
    display:flex;
    align-items:flex-start;
    gap:70px;
}

.loan-banner-content{
    flex:1;
}

.loan-banner-tag{
    display:inline-block;
    background:rgba(186,39,58,.1);
    color:#BA273A;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.loan-banner-title{
    font-size:36px;
    line-height:1.1;
    color:#1C1752;
    margin-bottom:10px;
}

.loan-banner-desc{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:5px;
}

.loan-banner-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:35px 0;
}

.loan-banner-point{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:#1C1752;
}

.loan-banner-point i{
    color:#BA273A;
}

.loan-banner-btns{
    display:flex;
    gap:15px;
    margin-top:10px;
}

.loan-main-btn{
    background:#BA273A;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.loan-main-btn:hover{
    background:#1C1752;
    color:#fff;
}

.loan-outline-btn{
    border:2px solid #1C1752;
    color:#1C1752;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.loan-outline-btn:hover{
    background:#1C1752;
    color:#fff;
}

.loan-banner-media{
    flex:1;
    position:relative;
}

.loan-banner-media img{
    width:100%;
    height:auto;
    object-fit:cover;
    border-radius:30px;
    display:block;
    box-shadow:0 25px 70px rgba(28,23,82,.15);
}
.loan-read-box{
    overflow:hidden;
    line-height:1.9;
    max-height:70px; 
    margin: 0;
    transition:max-height .6s ease;
}

.loan-read-box.active{
    max-height:500px;
}

.loan-read-toggle{
    border:none;
    background:none;
    color:#BA273A;
    font-weight:700;
    cursor:pointer;
    padding:0;
    margin-top:5px;
}

/* eligbility critarea */
.mortexa-eligibility-zone{
    padding:40px 0;
    background:#f8f9fc;
}


.mortexa-grid-wrap{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.mortexa-card-box{
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s;
}

.mortexa-card-box:hover{
    transform:translateY(-8px);
}

.mortexa-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#BA273A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.mortexa-card-box h3{
    color:#1C1752;
    margin-bottom:15px;
    font: size 20px;
}

.mortexa-card-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.mortexa-card-box ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:6px;
    color:#555;
    line-height:1.7;
}

.mortexa-card-box ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#BA273A;
    font-weight:700;
}

.docvault-section{
    padding:70px 0;
    background:#f8f9fc;
}

.docvault-wrapper{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    display:grid;
    grid-template-columns:320px 1fr;
    box-shadow:0 15px 50px rgba(0,0,0,.07);
    position: relative;
}

.docvault-intro{
    background:linear-gradient(135deg, var(--primary), #e27380);
    padding:40px 30px;
    color:#fff;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2;
}

.docvault-icon{
    width:85px;
    height:85px;
    border-radius:20px;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.docvault-icon i{
    font-size:38px;
}

.docvault-intro h3{
    color:#fff;
    margin-bottom:15px;
}

.docvault-intro p{
    color:rgba(255,255,255,.85);
    line-height:1.8;
}
.docvault-grid{
    padding:35px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    height:400px;
    overflow:auto;
    scrollbar-width:thin;
    scrollbar-color:#BA273A #f1f1f1;
}

/* Chrome, Edge, Safari */

.docvault-grid::-webkit-scrollbar{
    width:8px;
}

.docvault-grid::-webkit-scrollbar-track{
    background:#f3f4f8;
    border-radius:20px;
}

.docvault-grid::-webkit-scrollbar-thumb{
    background:linear-gradient(
        180deg,
        #BA273A 0%,
        #1C1752 100%
    );
    border-radius:20px;
}

.docvault-grid::-webkit-scrollbar-thumb:hover{
    background:linear-gradient(
        180deg,
        #a32133 0%,
        #15113f 100%
    );
}
.docvault-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:18px;
    border:1px solid #ececec;
    border-radius:16px;
    transition:.3s;
}

.docvault-item:hover{
    border-color:#BA273A;
    transform:translateY(-4px);
}

.docvault-item i{
    width:48px;
    height:48px;
    border-radius:12px;
    background:rgba(186,39,58,.1);
    color:#BA273A;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.docvault-item span{
    font-weight:600;
    color:#1C1752;
}

.docvault-item-content h4{
    color:#1C1752;
    font-size:18px;
    margin-bottom:6px;
}

.docvault-item-content p{
    margin:0;
    line-height:1.7;
    font-size:14px;
}

.purposex-section{
    padding:40px 0;
    background:#f8f9fc;
}

.purposex-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.purposex-item{
    background:#fff;
    border-radius:20px;
    padding:30px 25px;
    position:relative;
    overflow:hidden;
    transition:.35s;
    border:1px solid #ececec;
}

.purposex-item::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#BA273A,#1C1752);
}

.purposex-item::after{
    content:"";
    position:absolute;
    right:-40px;
    bottom:-40px;
    width:110px;
    height:110px;
    border-radius:50%;
    background:rgba(186,39,58,.05);
    transition:.35s;
}

.purposex-item:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.purposex-item:hover::after{
    transform:scale(1.2);
}

.purposex-item i{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(186,39,58,.08);
    color:#BA273A;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
    transition:.35s;
}

.purposex-item:hover i{
    background:#BA273A;
    color:#fff;
}

.purposex-item h3{
    font-size:22px;
    color:#1C1752;
    margin-bottom:12px;
    font-weight:700;
}

.purposex-item p{
    margin:0;
    line-height:1.8;
    font-size:15px;
    color:#666;
}

.fundora-cta-zone{
    padding:0px 0;
}

.fundora-cta-wrap{
    background:linear-gradient(
    135deg,
    #BA273A 0%,
    #c9495c 45%,
    #e27380 100%
);
    border-radius:30px;
    padding:45px;
    display:grid;
    grid-template-columns:1fr 520px;
    gap:40px;
    overflow:hidden;
    position:relative;
}

.fundora-cta-wrap::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-140px;
    right:-100px;
}

.fundora-cta-content{
    color:#fff;
    align-self:center;
}

.fundora-cta-content span{
    display:inline-block;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}


.fundora-cta-content h2{
    font-size:30px;
    line-height:1.25;
    color:#fff;
    margin-bottom:15px;
}
.fundora-cta-content h2 .dark{
    font-weight: 900;
}

.fundora-cta-content p{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,.85);
    margin-bottom:25px;
}

.fundora-cta-action{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}
.fundora-cta-btn,
.fundora-cta-call{
    padding:14px 26px;
    border-radius:50px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:.35s ease;
}

.fundora-cta-btn:hover{
    background:#1C1752;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

.fundora-cta-call:hover{
    background:#fff;
    color:var(--primary);
    border-color:#fff;
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

.fundora-cta-btn:hover i,
.fundora-cta-call:hover i{
    transform:translateX(3px);
}

.fundora-cta-btn i,
.fundora-cta-call i{
    transition:.35s ease;
}
.fundora-cta-btn{
    background:#fff;
    color:#1C1752;
}

.fundora-cta-call{
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
}

.fundora-cta-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.fundora-feature-card{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.18);
    border-radius:18px;
    padding:18px;
}

.fundora-feature-card i{
    font-size:24px;
    color:#fff;
    margin-bottom:12px;
}

.fundora-feature-card h4{
    color:#fff;
    font-size:16px;
    margin-bottom:8px;
}

.fundora-feature-card p{
    color:rgba(255,255,255,.9);
    font-size:13px;
    line-height:1.7;
    margin:0;
}

/* unsecured page */

.unsecure-loan-types-section{
    padding:40px 0;
    background:linear-gradient(180deg,#f8f9ff 0%,#ffffff 100%);
    position:relative;
}

.unsecure-loan-types-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.unsecure-loan-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    padding:35px 30px;
    overflow:hidden;
    border:1px solid rgba(28,23,82,.08);
    box-shadow:0 15px 40px rgba(28,23,82,.08);
    transition:.4s ease;
}

.unsecure-loan-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#BA273A,#1C1752);
}

.unsecure-loan-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(28,23,82,.15);
}

.unsecure-loan-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    background:linear-gradient(135deg,#BA273A,#1C1752);
    color:#fff;
    font-size:32px;
    box-shadow:0 15px 30px rgba(186,39,58,.25);
}

.unsecure-loan-card h3{
    color:#1C1752;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.unsecure-loan-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

.unsecure-loan-card:hover h3{
    color:#BA273A;
}

.unsecure-loan-card::after{
    content:"";
    position:absolute;
    right:-40px;
    top:-40px;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(186,39,58,.05);
    transition:.4s;
}

.unsecure-loan-card:hover::after{
    transform:scale(1.4);
}
.unsecure-stats-strip{
    padding:80px 0;
    background:#BA273A;
    position:relative;
    overflow:hidden;
}

.unsecure-stats-strip::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
}

.unsecure-stats-strip::after{
    content:"";
    position:absolute;
    bottom:-100px;
    left:-100px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
}

.unsecure-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    position:relative;
    z-index:2;
}

.unsecure-stat-box{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    transition:all .4s ease;
}

.unsecure-stat-box:hover{
    background:#1C1752;
    transform:translateY(-10px);
    border-color:rgba(255,255,255,0.25);
}

.unsecure-stat-icon{
    width:80px;
    height:80px;
    margin:0 auto 22px;
    background:#1C1752;
    color:#fff;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 15px 35px rgba(28,23,82,0.35);
    transition:.4s;
}

.unsecure-stat-box:hover .unsecure-stat-icon{
    background:#fff;
    color:#1C1752;
}

.unsecure-stat-box h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    line-height:1.3;
}

.unsecure-stat-box p{
    color:rgba(255,255,255,0.85);
    font-size:15px;
    line-height:1.7;
    margin:0;
}



/* faq section */

.faqnova-section{
    padding:40px 0;
}

.faqnova-wrapper{
    max-width:100%;
    margin:auto;
}

.faqnova-item{
    background:#fff;
    border:1px solid #e9e9e9;
    border-radius:18px;
    margin-bottom:15px;
    overflow:hidden;
    transition:.3s;
}

.faqnova-question{
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faqnova-question h3{
    font-size:18px;
    margin:0;
    font-weight:600;
}
.faqnova-question i{
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:transform .35s ease;
}
.faqnova-answer{
    display:none;
    padding:0 25px 22px;
}

.faqnova-question i{
    transition:.3s ease;
}

.faqnova-item.active .faqnova-question i{
    transform:rotate(45deg);
}

.faqnova-item{
    background:#fff;
    border:1px solid #e9e9e9;
    border-radius:18px;
    margin-bottom:15px;
    overflow:hidden;
    transition:.35s ease;
}

.faqnova-item.active{
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-color:rgba(0,0,0,.08);
}




.back-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:18px;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.back-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:90px;
    width:55px;
    height:55px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(37,211,102,.35);
    animation:whatsappPulse 1.8s infinite;
}

.whatsapp-float:hover{
    color:#fff;
    transform:scale(1.08);
}

@keyframes whatsappPulse{.main-menu__logo img
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}


/*privacy page */
/* Privacy Section */
.privacy-section{
    padding: 60px 0;
    background: #f5f6fa;
    font-family: Arial, sans-serif;
}


/* Title */
.privacy-section .section-title{
    text-align: center;
    margin-bottom: 40px;
}

.privacy-section .section-title span{
    color: #BA273A;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.privacy-section .section-title h2{
    color: #1C1752;
    font-size: 32px;
    margin: 10px 0;
}

.privacy-section .section-title p{
    color: #444;
    max-width: 750px;
    margin: auto;
    line-height: 1.6;
}

/* Content Box */
.privacy-box{
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #BA273A;
}

/* Headings */
.privacy-box h3{
    color: #1C1752;
    margin-top: 20px;
    font-size: 18px;
    position: relative;
    padding-left: 18px;
}

/* small accent line */
.privacy-box h3::before{
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: #BA273A;
    border-radius: 50%;
}

/* Paragraph */
.privacy-box p{
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 8px;
}

/* terms & condition page */
.kfl-terms-section{
    padding:30px 0;
    background:#f8f9fc;
}

.kfl-terms-heading{
    text-align:center;
    margin-bottom:40px;
}

.kfl-terms-heading span{
    display:inline-block;
    color:#BA273A;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.kfl-terms-heading h2{
    color:#1C1752;
    font-size:36px;
    margin-top:10px;
}

.kfl-terms-wrapper{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.kfl-terms-intro{
    margin-bottom:35px;
    padding:20px;
    background:#f7f7f7;
    border-left:4px solid #BA273A;
    border-radius:8px;
}

.kfl-terms-intro p{
    margin:0;
    line-height:1.8;
    color:#333;
}

.kfl-terms-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
    align-items:flex-start;
}

.kfl-terms-number{
    min-width:55px;
    width:55px;
    height:55px;
    background:#1C1752;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.kfl-terms-number span{
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.kfl-terms-content{
    flex:1;
}

.kfl-terms-content p{
    margin:0;
    color:#333;
    line-height:1.8;
}

.kfl-terms-sublist{
    margin:15px 0 0;
    padding-left:20px;
    list-style:square;
}

.kfl-terms-sublist li{
    margin-bottom:10px;
    color:#444;
    line-height:1.7;
}

@media(max-width:767px){

    .kfl-terms-section{
        padding:40px 0;
    }

    .kfl-terms-heading h2{
        font-size:26px;
    }

    .kfl-terms-wrapper{
        padding:20px;
    }

    .kfl-terms-item{
        gap:15px;
    }

    .kfl-terms-number{
        min-width:45px;
        width:45px;
        height:45px;
    }

    .kfl-terms-number span{
        font-size:15px;
    }
}
