:root{
    --primary:#4f46e5;
    --secondary:#7c3aed;
    --accent:#06b6d4;
    --dark:#111827;
    --light:#f8fafc;
}

body{
    font-family:'Poppins',sans-serif;
    line-height:1.7;
    color:#374151;
    overflow-x:hidden;
}

.navbar{
    background:#fff !important;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
}

.navbar-brand{
    font-size:1.8rem;
    font-weight:700;
    color:var(--primary)!important;
}

.hero{
    padding:120px 0;
    background:
    linear-gradient(
        135deg,
        #eef2ff 0%,
        #ffffff 100%
    );
}

.hero h1{
    font-size:3.5rem;
    font-weight:800;
    color:var(--dark);
    line-height:1.2;
}

.hero p{
    font-size:1.2rem;
    margin:25px 0;
}

.btn-primary{
    background:var(--primary);
    border:none;
    padding:14px 30px;
    border-radius:10px;
}

.btn-outline-primary{
    border-radius:10px;
    padding:14px 30px;
}

.hero img{
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.counter-section{
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));
    color:white;
    padding:70px 0;
}

.counter-box{
    text-align:center;
}

.counter-box i{
    font-size:2rem;
    margin-bottom:15px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
    font-weight:700;
    color:var(--dark);
}

.feature-card{
    padding:35px;
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
    height:100%;
    border:1px solid #eef2f7;
    text-align:center;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(13,110,253,.15);
}

.feature-card i{
    font-size:2.8rem;
    color:var(--primary);
    margin-bottom:20px;
    display:block;
}

.feature-card h4{
    font-size:1.3rem;
    font-weight:700;
    margin-bottom:15px;
	margin:20px 0 15px;
}

.feature-card p{
    color:#6c757d;
    line-height:1.7;
    margin-bottom:0;
}
.showcase{
    padding:100px 0;
}

.showcase img{
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.showcase-content{
    padding:40px;
}

.showcase-content h3{
    font-size:2rem;
    font-weight:700;
}

.faq-section{
    padding:100px 0;
    background:#f8fafc;
}

.faq-accordion{
    max-width:900px;
    margin:auto;
}

.faq-accordion .accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.faq-accordion .accordion-button{
    font-size:1.1rem;
    font-weight:600;
    padding:20px 25px;
    background:white;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:#eef2ff;
    color:#4f46e5;
}

.faq-accordion .accordion-body{
    padding:25px;
    font-size:1rem;
    line-height:1.8;
}

.nav-pills .nav-link{
    border-radius:30px;
    padding:10px 25px;
    margin:5px;
    font-weight:600;
}

.nav-pills .nav-link.active{
    background:#4f46e5;
}

.cta-section{
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));
    color:white;
    padding:100px 0;
    text-align:center;
}

.footer{
    background:#111827;
    color:white;
    padding:40px 0;
}

.pricing-section{
background:#f8fafc;
}

.pricing-card{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
height:100%;
position:relative;
transition:.3s;
}

.pricing-card:hover{
transform:translateY(-8px);
}

.pricing-card h4{
font-weight:700;
margin-bottom:15px;
}

.price{
font-size:2.3rem;
font-weight:700;
color:#4f46e5;
}

.pricing-card ul{
list-style:none;
padding-left:0;
margin:25px 0;
}

.pricing-card ul li{
margin-bottom:10px;
}

.featured{
border:3px solid #4f46e5;
}

.popular-badge{
position:absolute;
top:-12px;
right:20px;
background:#4f46e5;
color:#fff;
font-size:.75rem;
padding:5px 10px;
border-radius:20px;
font-weight:600;
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,.25);
    z-index: 9999;
    transition: all .3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-float i {
    line-height: 60px;
}

.page-hero{
    padding:100px 0;
    background:linear-gradient(
        135deg,
        #eef2ff 0%,
        #ffffff 100%
    );
}

.hero-screenshot{
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
    transition:.3s;
}

.hero-screenshot:hover{
    transform:translateY(-5px);
}

.download-form-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}
.download-form-card .form-control {
    margin-bottom: 14px;
}
.feature-box{
    text-align:center;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
}

.screenshot-card{
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    transition:.3s;
}

.screenshot-card:hover{
    transform:translateY(-8px);
}

.trust-bar{
    background:#f8fafc;
    border-top:1px solid #e5e7eb;
    border-bottom:1px solid #e5e7eb;
}

.trust-item{
    padding:20px;
}

.trust-item h4{
    font-size:2rem;
    font-weight:700;
    color:#4f46e5;
    margin-bottom:5px;
}

.trust-item p{
    margin:0;
    color:#6b7280;
    font-weight:500;
}

.download-cta{
    padding:80px 0;
    background:linear-gradient(
        135deg,
        #4f46e5 0%,
        #2563eb 100%
    );
    color:#fff;
}

.download-cta h2{
    font-weight:700;
    margin-bottom:20px;
}

.download-cta p{
    opacity:.95;
}

.download-cta .btn-light{
    font-weight:600;
}

.success-section{
    padding:80px 0;
    background:#f8fafc;
}

.success-card{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.success-icon{
    width:100px;
    height:100px;
    line-height:100px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#22c55e;
    color:#fff;
    font-size:3rem;
    font-weight:700;
}

.success-card h1{
    font-weight:700;
    margin-bottom:20px;
}

.navbar-brand{
    font-size:1.5rem;
    font-weight:700;
}

.nav-link{
    font-weight:500;
    margin:0 6px;
}

.nav-link:hover{
    color:#0d6efd !important;
}

.navbar .nav-link{
    color:#444;
    font-weight:500;
    padding:10px 15px;
    transition:all .3s;
}

.navbar .nav-link:hover{
    color:#0d6efd;
}

.navbar .nav-link.active{
    color:#0d6efd !important;
    font-weight:600;
    position:relative;
}

.navbar .nav-link.active::after{
    content:'';
    position:absolute;
    left:15px;
    right:15px;
    bottom:0;
    height:3px;
    background:#0d6efd;
    border-radius:5px;
}

/*============================
FEATURES HERO
============================*/

.hero-image{
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
    transition:.4s;
}

.hero-image:hover{
    transform:translateY(-8px);
}

.hero-section .badge{
    font-size:.9rem;
    letter-spacing:.5px;
}

.hero-section .display-5{
    line-height:1.2;
}

.hero-section .lead{
    font-size:1.15rem;
}

.hero-section ul li{
    font-weight:500;
}

/*====================================
Feature Categories
=====================================*/

.feature-category{
    margin-bottom:60px;
}

.category-title{
    font-size:2rem;
    font-weight:700;
    margin-bottom:20px;
    padding-bottom:12px;
    border-bottom:3px solid #e9ecef;
}

.category-title i{
    color:var(--primary);
}

/*====================================
Screenshot Gallery
=====================================*/

.screenshot-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.screenshot-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.screenshot-card img{

    width:100%;

    transition:.4s;

}

.screenshot-card:hover img{

    transform:scale(1.04);

}

.screenshot-card h5{

    font-weight:700;

    margin-bottom:10px;

}

/*====================================
System Requirements
=====================================*/

.requirements-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    border:1px solid #eef2f7;

}

.requirements-card table tr{

    transition:.3s;

}

.requirements-card table tr:hover{

    background:#f8fbff;

}

.requirements-card td{

    padding:18px 25px;

    vertical-align:middle;

}

.requirements-card i{

    font-size:1.2rem;

}

/*====================================
Trust Note
=====================================*/

.trust-note{

    background:#f8fbff;

    border-left:5px solid var(--primary);

    border-radius:15px;

    padding:25px;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.trust-icon{

    width:55px;

    height:55px;

    min-width:55px;

    border-radius:50%;

    background:rgba(13,110,253,.12);

    display:flex;

    align-items:center;

    justify-content:center;

}

.trust-icon i{

    font-size:1.5rem;

    color:var(--primary);

}

.trust-note h5{

    font-weight:700;

}

.trust-note p{

    color:#6c757d;

    line-height:1.8;

    margin-bottom:0;

}

/*====================================
How It Works
=====================================*/

.step-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    position:relative;

    transition:.35s;

    height:100%;

}

.step-card:hover{

    transform:translateY(-8px);

}

.step-number{

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);

    width:42px;

    height:42px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

}

.step-card i{

    font-size:3rem;

    color:var(--primary);

    margin:20px 0;

}

.step-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.step-card p{

    color:#6c757d;

    line-height:1.8;

    margin-bottom:0;

}

/*====================================
Supported Banks
=====================================*/

.bank-card{

    background:#fff;

    border-radius:18px;

    padding:25px 15px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.bank-card:hover{

    transform:translateY(-8px);

}

.bank-card img{

    height:60px;

    width:auto;

    max-width:100%;

    object-fit:contain;

    margin-bottom:15px;

}

/*====================================
FAQ
=====================================*/

.accordion-item{

    border:none;

    border-bottom:1px solid #e9ecef;

}

.accordion-button{

    font-weight:600;

    padding:22px 25px;

}

.accordion-button:not(.collapsed){

    background:#eef5ff;

    color:var(--primary);

    box-shadow:none;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    line-height:1.8;

    color:#555;

}

.accordion-body ul{

    margin-bottom:20px;

}

.bank-card h6{

    font-weight:600;

    margin-bottom:0;

    font-size:.95rem;

}

.supported-note{

    display:inline-block;

    background:#f8fbff;

    padding:18px 28px;

    border-radius:40px;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}


.cta-section{

background:linear-gradient(135deg,#0d6efd,#084298);

}

.cta-box{

padding:60px 30px;

color:white;

}

.cta-feature{

padding:20px;

}

.cta-feature i{

font-size:2rem;

margin-bottom:15px;

}

.cta-feature h5{

font-weight:600;

}

.section-subtitle{
    display:flex;
    align-items:center;
    gap:15px;

    color:var(--primary);

    font-size:.9rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1.5px;

    margin-bottom:18px;
}

.section-subtitle::before{

    content:"";

    width:45px;

    height:3px;

    background:var(--primary);

    border-radius:10px;

}
@media(max-width:768px){

.hero{
padding:80px 0;
}

.hero h1{
font-size:2.3rem;
}

.showcase-content{
padding:20px 0;
}

}