:root{

    --primary:#0D6EFD;
    --secondary:#19C37D;
    --dark:#0F172A;
    --light:#F8FAFC;
    --text:#64748B;
    --white:#FFFFFF;
    --border:#E2E8F0;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--dark);
    overflow-x:hidden;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}

img{

    max-width:100%;

}

/*****************************
Navbar
*****************************/

.custom-navbar{

    background:rgba(255,255,255,.90);
    backdrop-filter:blur(18px);
    padding:18px 0;
    transition:.35s;
    border-bottom:1px solid rgba(0,0,0,.05);

}

.logo{

    height:58px;

}

.nav-link{

    color:var(--dark);
    font-weight:500;
    margin-left:18px;
    transition:.3s;

}

.nav-link:hover{

    color:var(--primary);

}

.btn-demo{

    background:var(--secondary);
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;

}

.btn-demo:hover{

    background:#10b76b;
    color:#fff;

}

/*****************************
Hero
*****************************/

.hero-section{

    padding-top:110px;
    background:
    radial-gradient(circle at top right,#dff7ff 0%,transparent 35%),
    radial-gradient(circle at bottom left,#edf6ff 0%,transparent 30%),
    #fff;

}

.hero-badge{

    display:inline-block;
    padding:10px 18px;
    background:#EEF7FF;
    color:var(--primary);
    border-radius:40px;
    font-weight:600;

}

.hero-title{

    font-size:58px;
    font-weight:800;
    line-height:1.2;

}

.hero-title span{

    color:var(--primary);

}

.hero-text{

    font-size:18px;
    color:var(--text);
    line-height:1.9;

}

.hero-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;

}

.hero-features div{

    font-weight:600;

}

.hero-features i{

    color:var(--secondary);
    margin-right:8px;

}

.hero-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}

.btn-primary-custom{

    background:var(--primary);
    color:#fff;
    padding:15px 34px;
    border-radius:10px;
    font-weight:600;

}

.btn-primary-custom:hover{

    color:#fff;
    background:#0057d8;

}

.btn-outline-custom{

    border:2px solid var(--primary);
    color:var(--primary);
    padding:15px 34px;
    border-radius:10px;
    font-weight:600;

}

.btn-outline-custom:hover{

    background:var(--primary);
    color:#fff;

}

.hero-image{

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}

}

/*****************************
Footer
*****************************/

.footer{

    background:var(--dark);
    color:#CBD5E1;
    padding:80px 0 25px;

}

.footer-logo{

    height:65px;

}

.footer h5{

    color:#fff;
    margin-bottom:20px;
    font-size:18px;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#CBD5E1;
    transition:.3s;

}

.footer ul li a:hover{

    color:#fff;

}

.footer hr{

    border-color:#334155;
    margin:40px 0 25px;

}






/*****************************
SECTION
*****************************/

.section-title{

    font-size:42px;
    font-weight:700;
    color:var(--dark);

}

.section-text{

    color:var(--text);
    font-size:18px;
    line-height:1.8;
    margin-top:20px;

}

/*****************************
FEATURES
*****************************/

.feature-card{

    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,.04);

}

.feature-card:hover{

    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:0 20px 45px rgba(13,110,253,.12);

}

.feature-icon{

    width:75px;
    height:75px;
    margin:auto;
    border-radius:18px;
    background:linear-gradient(135deg,#0D6EFD,#19C37D);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;

}

.feature-card h4{

    font-size:22px;
    font-weight:600;
    margin-bottom:15px;

}

.feature-card p{

    color:var(--text);
    line-height:1.8;
    margin:0;

}






/*****************************
INTEGRATION
*****************************/

.integration-card{

    background:#fff;
    border-radius:18px;
    border:1px solid #E5E7EB;
    padding:35px 20px;
    text-align:center;
    transition:.35s;
    height:100%;

}

.integration-card:hover{

    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:0 15px 40px rgba(13,110,253,.10);

}

.integration-card i{

    font-size:42px;
    color:var(--primary);
    margin-bottom:20px;

}

.integration-card h5{

    margin:0;
    font-weight:600;
    color:var(--dark);

}







/*****************************
MODULES
*****************************/

.module-card{

    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    transition:.35s;
    height:100%;
    cursor:pointer;

}

.module-card:hover{

    background:linear-gradient(135deg,#0D6EFD,#19C37D);
    color:#fff;
    transform:translateY(-8px);

}

.module-card i{

    font-size:36px;
    color:var(--primary);
    margin-bottom:18px;
    transition:.35s;

}

.module-card:hover i{

    color:#fff;

}

.module-card h5{

    margin:0;
    font-weight:600;
    transition:.35s;

}






/*****************************
HOW IT WORKS
*****************************/

.process-section{

    background:#F8FAFC;

}

.step-card{

    position:relative;
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    border:1px solid #E5E7EB;
    transition:.35s;
    height:100%;

}

.step-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(13,110,253,.10);

}

.step-number{

    position:absolute;
    top:18px;
    right:20px;
    font-size:42px;
    font-weight:800;
    color:#E2E8F0;

}

.step-card i{

    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:linear-gradient(135deg,#0D6EFD,#19C37D);
    color:#fff;
    font-size:30px;
    margin-bottom:25px;

}

.step-card h4{

    font-size:22px;
    font-weight:600;
    margin-bottom:15px;

}

.step-card p{

    margin:0;
    color:var(--text);
    line-height:1.8;

}






/*****************************
API SECTION
*****************************/

.api-section{

    background:#fff;

}

.api-list{

    margin-top:30px;

}

.api-list li{

    margin-bottom:18px;
    font-weight:500;

}

.api-list i{

    color:var(--secondary);
    margin-right:10px;

}

.api-code{

    background:#0F172A;
    color:#E2E8F0;
    padding:35px;
    border-radius:18px;
    font-size:14px;
    line-height:1.8;
    overflow:auto;
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.api-code code{

    color:#E2E8F0;

}






/*****************************
WHY
*****************************/

.why-section{

    background:#F8FAFC;

}

.why-card{

    background:#fff;
    border-radius:18px;
    border:1px solid #E5E7EB;
    padding:35px 30px;
    text-align:center;
    transition:.35s;
    height:100%;

}

.why-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(13,110,253,.10);

}

.why-card i{

    font-size:42px;
    color:var(--primary);
    margin-bottom:20px;

}

.why-card h4{

    font-size:22px;
    margin-bottom:15px;
    font-weight:600;

}

.why-card p{

    color:var(--text);
    line-height:1.8;
    margin:0;

}

/*****************************
COUNTER
*****************************/

.counter-section{

    background:linear-gradient(135deg,#0D6EFD,#19C37D);
    padding:80px 0;

}

.counter-box{

    color:#fff;

}

.counter-box h2{

    font-size:52px;
    font-weight:700;
    margin-bottom:10px;

}

.counter-box span{

    font-size:18px;
    opacity:.95;

}






/*****************************
CTA
*****************************/

.cta-section{

    background:#fff;

}

.cta-box{

    background:linear-gradient(135deg,#0D6EFD,#19C37D);
    border-radius:24px;
    padding:70px 60px;
    color:#fff;
    box-shadow:0 25px 60px rgba(13,110,253,.18);

}

.cta-box h2{

    font-size:42px;
    font-weight:700;
    margin-bottom:15px;

}

.cta-box p{

    font-size:18px;
    opacity:.95;
    line-height:1.8;
    margin:0;

}

.btn-light-custom{

    background:#fff;
    color:#0D6EFD;
    padding:15px 35px;
    border-radius:12px;
    font-weight:600;
    margin-right:12px;

}

.btn-light-custom:hover{

    background:#F8FAFC;
    color:#0D6EFD;

}

.btn-outline-light-custom{

    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:12px;
    font-weight:600;

}

.btn-outline-light-custom:hover{

    background:#fff;
    color:#0D6EFD;

}

@media(max-width:991px){

    .cta-box{

        text-align:center;
        padding:50px 30px;

    }

    .cta-box h2{

        font-size:32px;

    }

    .btn-light-custom,
    .btn-outline-light-custom{

        width:100%;
        margin-top:15px;
        margin-right:0;

    }

}












/*****************************
FAQ
*****************************/

.faq-section{

    background:#F8FAFC;

}

.accordion-item{

    border:none;
    border-radius:18px !important;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.accordion-button{

    font-weight:600;
    font-size:18px;
    padding:22px 28px;
    background:#fff;

}

.accordion-button:not(.collapsed){

    background:#0D6EFD;
    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:25px 28px;
    color:var(--text);
    line-height:1.9;

}









/*****************************
CONTACT
*****************************/
/*****************************
CONTACT SECTION
*****************************/

.contact-section{

    background:#F8FAFC;

}

.contact-form,
.contact-company{

    background:#fff;
    border-radius:22px;
    padding:40px;
    height:100%;
    border:1px solid #E5E7EB;
    box-shadow:0 20px 60px rgba(15,23,42,.06);

}

.contact-form h3,
.contact-company h3{

    font-weight:700;
    color:var(--dark);

}

.contact-form label{

    font-weight:600;
    margin-bottom:8px;
    color:#334155;

}

.contact-form .form-control{

    height:56px;
    border-radius:12px;
    border:1px solid #CBD5E1;
    padding:12px 18px;
    font-size:15px;
    transition:.30s;

}

.contact-form textarea.form-control{

    height:auto;
    resize:none;

}

.contact-form .form-control:focus{

    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(13,110,253,.08);

}

/*****************************
COMPANY INFO
*****************************/

.company-item{

    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;

}

.company-item:last-child{

    margin-bottom:0;

}

.company-item i{

    width:58px;
    height:58px;
    min-width:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:15px;

    background:linear-gradient(135deg,#0D6EFD,#19C37D);

    color:#fff;

    font-size:22px;

}

.company-item strong{

    display:block;
    font-size:16px;
    margin-bottom:6px;
    color:#0F172A;

}

.company-item p{

    margin:0;
    color:#64748B;
    line-height:1.8;

}

/*****************************
LOADER
*****************************/

#loader{

    display:none;

    background:#FFF7E6;

    color:#B45309;

    border:1px solid #FCD34D;

    padding:15px 18px;

    border-radius:12px;

    margin-bottom:20px;

    font-weight:500;

}

#successBox{

    display:none;

    background:#ECFDF5;

    color:#065F46;

    border:1px solid #34D399;

    padding:16px 18px;

    border-radius:12px;

    margin-bottom:20px;

    font-weight:600;

}

.glow{

    animation:glowBox .8s ease;

}

@keyframes glowBox{

0%{

transform:scale(.96);

opacity:.3;

}

100%{

transform:scale(1);

opacity:1;

}

}

/*****************************
BUTTON
*****************************/

#btnSubmit{

    width:100%;
    height:58px;
    font-size:17px;
    font-weight:600;

}

/*****************************
RESPONSIVE
*****************************/

@media(max-width:991px){

.contact-form,
.contact-company{

padding:30px;

}

.company-item{

margin-bottom:22px;

}

}

@media(max-width:576px){

.contact-form,
.contact-company{

padding:22px;

}

.company-item{

gap:14px;

}

.company-item i{

width:50px;
height:50px;
min-width:50px;
font-size:18px;

}

}

 








.cta-buttons{

    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:85px;
    height:100%;
    justify-content:center;

}

.cta-buttons .btn{

    width:220px;
    text-align:center;

}