body{
    font-family: Arial, sans-serif;
    background:#f8f9fc;
}

/* Hero Section */
.hero{
    background: linear-gradient(135deg,#0b49d1,#3d8cff);
    color:#fff;
    overflow:hidden;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-180px;
    right:-120px;
}

.hero h1{
    font-size:42px;
    font-weight:700;
}

.hero p{
    color:#dce8ff;
    font-size:18px;
}

.btn-custom{
    background:#fff;
    color:#0b49d1;
    font-weight:600;
    border-radius:10px;
    padding:12px 30px;
}

.hero img{
    max-width:100%;
}




/* Section */
.section-title{
    color:#0d2d8f;
    font-weight:700;
}

.section-subtitle{
    color:#666;
    max-width:650px;
    margin:auto;
}

/* Feature Card */
.feature-card{
    background:#fff;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    padding:25px 18px;
    transition:.3s;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-5px);
}

.feature-icon{
    width:115px;
    margin-bottom:15px;
}

.feature-card h5{
    color:#0d2d8f;
    font-size:18px;
    font-weight:700;
}

.feature-card p{
    color:#777;
    font-size:14px;
}



@media(max-width:768px){

.hero{
    text-align:center;
}

.hero h1{
    font-size:32px;
}

.hero img{
    margin-top:40px;
}
}


.benefit-section{
    background:linear-gradient(180deg,#f5f8ff,#eef4ff);
}

.benefit-card{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(12px);
    padding:28px 22px;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.benefit-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0px;
    height:100%;
    background:linear-gradient(#0d6efd,#5ca9ff);
}

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(13,110,253,.18);
}

.benefit-icon{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#5aa8ff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    box-shadow:0 10px 20px rgba(13,110,253,.25);
}

.benefit-card h5{
    font-size:20px;
    font-weight:700;
    color:#0c2b82;
    margin-bottom:8px;
}

.benefit-card p{
    margin:0;
    color:#666;
    line-height:1.7;
}


.app-showcase{
    padding:80px 0;
    overflow:hidden;
    background:#f8fbff;
}

.mobile-carousel .item{
    text-align:center;
    transition:all .4s ease;
    transform:scale(.75);
    opacity:.5;
}

.mobile-carousel .owl-item.active.center .item{
    transform:scale(1);
    opacity:1;
    z-index:9;
}

.phone-img{
    width:290px;
    max-width:100%;
    margin:auto;
    display:block;
    transition:.4s;
    filter:drop-shadow(0 25px 25px rgba(0,0,0,.35));
}

.mobile-carousel .owl-stage{
    display:flex;
    align-items:center;
}

.mobile-carousel .owl-stage-outer{
    overflow:visible;
    padding:0px 0;
}

/* Navigation */

.mobile-carousel .owl-nav{
    margin-top:30px;
    text-align:center;
}

.mobile-carousel .owl-nav button{
    width:45px;
    height:45px;
    border-radius:50%!important;
    background:#0d6efd!important;
    color:#fff!important;
    font-size:22px!important;
    margin:0 8px;
}

.mobile-carousel .owl-nav button:hover{
    background:#003cb3!important;
}

/* Dots */

.mobile-carousel .owl-dots{
    margin-top:25px;
}

.mobile-carousel .owl-dot span{
    width:10px;
    height:10px;
    background:#bfcfff!important;
}

.mobile-carousel .owl-dot.active span{
    width:28px;
    border-radius:20px;
    background:#0d6efd!important;
}

.carousel-btn{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    font-size:20px;
    margin:0 8px;
    transition:.3s;
    box-shadow:0 10px 20px rgba(13,110,253,.25);
}

.carousel-btn:hover{
    background:#003fbf;
    transform:translateY(-3px);
}

.carousel-btn:focus{
    outline:none;
}

/* ===============================
   FAQ SECTION
================================== */

.faq-section{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:linear-gradient(135deg,#eef5ff 0%,#ffffff 50%,#edf7ff 100%);
}

/* Blur Circles */

.bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    z-index:0;
}

.circle-1{
    width:320px;
    height:320px;
    background:#4f8cff;
    opacity:.18;
    top:-120px;
    left:-120px;
}

.circle-2{
    width:280px;
    height:280px;
    background:#00d4ff;
    opacity:.15;
    bottom:-80px;
    right:-80px;
}

.circle-3{
    width:180px;
    height:180px;
    background:#7b61ff;
    opacity:.18;
    top:40%;
    left:50%;
}

/* Outline Rings */

.shape{
    position:absolute;
    border:2px solid rgba(55,120,255,.12);
    border-radius:50%;
}

.shape-1{
    width:260px;
    height:260px;
    right:5%;
    top:10%;
}

.shape-2{
    width:180px;
    height:180px;
    left:8%;
    bottom:8%;
}

/* Dot Pattern */

.dot-grid{
    position:absolute;
    width:140px;
    height:140px;
    background-image:radial-gradient(#8ab6ff 1.5px,transparent 1.5px);
    background-size:18px 18px;
    opacity:.4;
}

.left-grid{
    top:90px;
    left:30px;
}

.right-grid{
    bottom:80px;
    right:40px;
}

/* Floating Icons */

.floating-icon{
    position:absolute;
    width:60px;
    height:60px;
    border-radius:18px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    animation:float 5s infinite ease-in-out;
    z-index:1;
}

.floating-icon i{
    font-size:24px;
    color:#0d6efd;
}

.icon-1{
    top:120px;
    right:8%;
}

.icon-2{
    bottom:120px;
    left:0%;
    animation-delay:1s;
}

.icon-3{
    top:45%;
    right:2%;
    animation-delay:2s;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-18px);}
    100%{transform:translateY(0);}
}

/* Heading */

.faq-tag{
    display:inline-flex;
    align-items:center;
    background:#fff;
    color:#0d6efd;
    padding:8px 22px;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.faq-title{
    font-size:46px;
    font-weight:700;
    color:#172b4d;
}

.faq-subtitle{
    color:#6c757d;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

.title-line{
    display:block;
    width:90px;
    height:5px;
    background:linear-gradient(90deg,#0d6efd,#6ea8fe);
    margin:25px auto 0;
    border-radius:20px;
}

/* Accordion */

.custom-accordion .accordion-item{
    margin-bottom:25px;
    border:none;
    border-radius:18px;
    overflow:hidden;
    background:rgba(255,255,255,.65);
    backdrop-filter:blur(18px);
    box-shadow:0 20px 40px rgba(30,70,180,.08);
    transition:.35s;
}

.custom-accordion .accordion-item:hover{
    transform:translateY(-6px);
}

.custom-accordion .accordion-button{
    padding:25px;
    font-size:18px;
    font-weight:600;
    background:transparent;
    box-shadow:none;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:transparent;
    color:#0d6efd;
}

.custom-accordion .accordion-button::after{
    width:42px;
    height:42px;
    background:#f2f6ff;
    border-radius:50%;
    background-position:center;
}

.faq-number{
    width:56px;
    height:56px;
    border-radius:16px;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-right:18px;
    flex-shrink:0;
}

.blue-bg{background:#0d6efd;}
.purple-bg{background:#7b61ff;}
.cyan-bg{background:#00bcd4;}
.orange-bg{background:#ff9800;}
.green-bg{background:#28a745;}

.answer-box{
    background:#f7fbff;
    border-radius:15px;
    padding:20px;
    line-height:1.8;
    color:#6b7280;
}

/* CTA */

.faq-contact{
    margin-top:70px;
    background:linear-gradient(135deg,#0d6efd,#4f8cff);
    color:#fff;
    border-radius:25px;
    padding:40px;
    position:relative;
    overflow:hidden;
    box-shadow:0 30px 60px rgba(13,110,253,.25);
}

.support-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.contact-btn{
    display:inline-block;
    background:#fff;
    color:#0d6efd;
    padding:14px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    transform:translateY(-4px);
    color:#0d6efd;
}

@media(max-width:991px){

.faq-title{
    font-size:34px;
}

.floating-icon,
.dot-grid,
.shape{
    display:none;
}

.faq-contact{
    text-align:center;
}

}

.btn-custom{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 32px;
    background:linear-gradient(135deg,#0d6efd,#3b82f6);
    color:#fff;
    font-size:16px;
    font-weight:600;
    border-radius:50px;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(13,110,253,.35);
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.btn-custom i{
    font-size:18px;
    transition:transform .35s ease;
}

.btn-custom:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(13,110,253,.45);
}

.btn-custom:hover i{
    transform:translateX(6px);
}

.btn-custom::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.18);
    transform:skewX(-25deg);
    transition:.6s;
}

.btn-custom:hover::before{
    left:120%;
}

.contact-section{
    background:linear-gradient(135deg,#eef5ff,#ffffff,#edf7ff);
    position:relative;
}

.contact-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.circle-1{
    width:250px;
    height:250px;
    background:#0d6efd;
    opacity:.15;
    top:-80px;
    left:-80px;
}

.circle-2{
    width:300px;
    height:300px;
    background:#5de0ff;
    opacity:.15;
    bottom:-100px;
    right:-100px;
}

.contact-tag{
    display:inline-block;
    background:#fff;
    padding:8px 20px;
    border-radius:40px;
    color:#0d6efd;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-title{
    font-size:35px;
    font-weight:700;
    color:#14213d;
}

.contact-text{
    color:#6c757d;
    line-height:1.8;
    margin:25px 0;
}

.contact-card{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(20px);
    padding:40px;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.form-control{
    height:55px;
    border-radius:12px;
    border:none;
    background:#f7f9fc;
    padding-left:20px;
}

textarea.form-control{
    height:auto;
}

.form-control:focus{
    box-shadow:none;
    border:1px solid #0d6efd;
    background:#fff;
}

.info-box{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.icon-box{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#0d6efd,#3d8bfd);
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:22px;
    margin-right:18px;
}

.info-box h6{
    margin-bottom:5px;
    font-weight:700;
}

.info-box p{
    margin:0;
    color:#6c757d;
}

.contact-btn{
    background:linear-gradient(135deg,#0d6efd,#3d8bfd);
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.contact-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 15px 30px rgba(13,110,253,.35);
}

@media(max-width:991px){

.contact-title{
    font-size:36px;
}

.contact-card{
    padding:30px;
}

}

.benefit-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#fff;
    padding:28px;
    border-radius:20px;
    border-left:6px solid #0d6efd;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(13,110,253,.18);
}

.benefit-icon{
    min-width:72px;
    width:72px;
    height:72px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#5aa8ff);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    flex-shrink:0;
}

.benefit-content{
    flex:1;
}

.benefit-content h4{
    font-size:25px;
    font-weight:700;
    margin-bottom:12px;
}

.benefit-content p{
    margin:0;
    color:#666;
    line-height:1.8;
}