html,
body{
    overflow-x:hidden;
    width:100%; 
}
/*==========================
HEADER
==========================*/
p{font-size:17px;}
.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:82px;
}

/* Logo */

.logo img{
    max-height:60px;
}

/*==========================
Desktop Menu
==========================*/

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu li{
    position:relative;
}

.nav-menu a{

    text-decoration:none;

    color:#222;

    font-size:16px;

    font-weight:600;

    transition:.3s;

    padding:6px 0;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:3px;

    background:#f47c20;

    transition:.35s;

    border-radius:30px;

}

.nav-menu a:hover{

    color:#1d71b8;

}

.nav-menu a:hover::after{

    width:100%;

}

/*==========================
Call Button
==========================*/

.header-btn a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:13px 24px;

    background:#1d71b8;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.header-btn a:hover{

    background:#f47c20;

    color:#fff;

}

/*==========================
Hamburger
==========================*/

.menu-toggle{

    display:none;

    border:none;

    background:none;

    font-size:34px;

    color:#1d71b8;

}

/*==========================
Overlay
==========================*/

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

/*==========================
Mobile Menu
==========================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-340px;

    width:320px;

    height:100vh;

    background:#fff;

    z-index:9999;

    transition:.35s;

    box-shadow:-10px 0 30px rgba(0,0,0,.12);

    display:flex;

    flex-direction:column;

}

.mobile-menu.active{

    right:0;

}

/* Mobile Header */

.mobile-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px;

    border-bottom:1px solid #ececec;

}

.mobile-header img{

    height:48px;

}

.close-menu{

    background:none;

    border:none;

    font-size:28px;

    color:#222;

}

/* Mobile Nav */

.mobile-menu ul{

    list-style:none;

    padding:25px;

    margin:0;

}

.mobile-menu li{

    border-bottom:1px solid #eee;

}

.mobile-menu li:last-child{

    border:none;

}

.mobile-menu a{

    display:block;

    padding:16px 0;

    color:#222;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

.mobile-menu a:hover{

    color:#1d71b8;

    padding-left:10px;

}

/* Mobile CTA */

.mobile-btn{

    margin-top:auto;

    padding:25px;

}

.mobile-btn a{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    background:#f47c20;

    color:#fff;

    text-decoration:none;

    padding:15px;

    border-radius:10px;

    font-weight:700;

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.nav-menu,
.header-btn{

display:none;

}

.menu-toggle{

display:block;

}

.logo img{

max-height:52px;

}

.navbar{

height:75px;

}

}









.hero-section{
    position:relative;
    padding:90px 0;
    overflow:hidden;
    background:linear-gradient(135deg,#f8fbff 0%,#eef7ff 55%,#ffffff 100%);
}

/* Grid Pattern */

.hero-pattern{
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(13,110,253,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,110,253,.05) 1px, transparent 1px);
    background-size:45px 45px;
    pointer-events:none;
}

/* Floating Circles */

.hero-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(5px);
    animation:float 8s ease-in-out infinite;
}

.hero-circle-1{
    width:420px;
    height:420px;
    background:#0d6efd;
    opacity:.08;
    top:-180px;
    left:-160px;
}

.hero-circle-2{
    width:380px;
    height:380px;
    background:#1b6aa2;
    opacity:.10;
    right:-120px;
    bottom:-120px;
    animation-delay:2s;
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(20px);
}

100%{
transform:translateY(0px);
}

}

.hero-content,
.hero-form{
    position:relative;
    z-index:2;
}

/*==========================
 Badge
===========================*/

.hero-badge{

display:inline-flex;
align-items:center;
gap:8px;

padding:10px 22px;

background:#e8fff1;

color:#1b6aa2;

font-weight:700;

border-radius:50px;

border:1px solid #bde5cb;

font-size:17px;

}

.hero-badge i{

font-size:18px;

}

/*==========================
 Title
===========================*/

.hero-title{

font-size:36px;

font-weight:700;

line-height:1.15;

color:#0b223d;

margin-bottom:20px;

}

.hero-title span{

color:#1b6aa2; 
}

.hero-subtitle{

font-size:28px;

font-weight:700;

color:#dc3545;

line-height:1.4;

}

.hero-text{

margin-top:25px;

font-size:17px;

line-height:1.9;

color:#111;

}

/*==========================
 Features
===========================*/

.feature-card{

background:#fff;

padding:16px 20px;

border-radius:14px;

display:flex;

align-items:center;

gap:12px;

font-weight:600;

box-shadow:0 12px 30px rgba(0,0,0,.06);

transition:.35s;

height:100%;

}

.feature-card:hover{

transform:translateY(-6px);

box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.feature-card i{

font-size:22px;

color:#1b6aa2;

}
/*==========================
 Buttons
===========================*/

.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

}

.hero-buttons .btn{

padding:17px 28px;

font-size:17px;

font-weight:700;

border-radius:50px;

transition:.35s;

position:relative;

overflow:hidden;

}

/* Primary Button */

.hero-buttons .btn-success{

background:#e05b66;

border:none;

color:#fff;

box-shadow:0 10px 30px rgba(224,91,102,.30);

animation:pulseBtn 2s infinite;

}

/* Secondary Button */

.hero-buttons .btn-outline-success{

animation:floatBtn 3s ease-in-out infinite;

}

/* Hover */

.hero-buttons .btn:hover{

transform:translateY(-5px);

}

/* Shine Effect */

.hero-buttons .btn::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:50%;

height:100%;

background:linear-gradient(

90deg,

transparent,

rgba(255,255,255,.45),

transparent

);

transform:skewX(-25deg);

animation:shine 3.5s infinite;

}

/* Pulse */

@keyframes pulseBtn{

0%{

transform:scale(1);

box-shadow:0 0 0 0 rgba(224,91,102,.45);

}

70%{

transform:scale(1.03);

box-shadow:0 0 0 18px rgba(224,91,102,0);

}

100%{

transform:scale(1);

box-shadow:0 0 0 0 rgba(224,91,102,0);

}

}

/* Floating */

@keyframes floatBtn{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-5px);

}

}

/* Shine */

@keyframes shine{

0%{

left:-120%;

}

100%{

left:140%;

}

}
/*==========================
 Form
===========================*/

.hero-form{

background:rgba(255,255,255,.92);

backdrop-filter:blur(14px);

padding:40px;

border-radius:24px;

border:1px solid rgba(255,255,255,.8);

box-shadow:0 25px 50px rgba(0,0,0,.12);

position:relative;

overflow:hidden;

}

.hero-form::before{

content:"";

position:absolute;

width:170px;

height:170px;

background:#1b6aa2;

opacity:.08;

border-radius:50%;

top:-50px;

right:-60px;

}

.form-top{

text-align:center;

margin-bottom:25px;

}

.form-top h3{

font-size:32px;

font-weight:700;

margin-bottom:10px;

color:#0b223d;

}

.form-top p{

margin:0;

color:#111;

}

.hero-form .form-control,

.hero-form .form-select{

height:56px;

border-radius:10px;

border:1px solid #dfe5ec;

box-shadow:none;

}

.hero-form textarea{

height:auto !important;

padding-top:17px;

}

.hero-form .form-control:focus,

.hero-form .form-select:focus{

border-color:#1b6aa2;

box-shadow:0 0 0 .2rem rgba(25,135,84,.15);

}

/*==========================
 Submit
===========================*/

.submit-btn{

width:100%;

padding:16px;

border:none;

border-radius:10px;

background:linear-gradient(135deg,#1b6aa2,#0f6d43);

color:#fff;

font-size:18px;

font-weight:700;

transition:.35s;

}

.submit-btn:hover{

transform:translateY(-3px);

box-shadow:0 17px 30px rgba(25,135,84,.30);

}

/*==========================
 Secure Text
===========================*/

.secure-text{

margin-top:18px;

text-align:center;

font-size:14px;

font-weight:600;

color:#111;

}

.secure-text i{

color:#1b6aa2;

margin-right:5px;

}

/*==========================
 Responsive
===========================*/

@media(max-width:991px){

.hero-section{

padding:120px 0;

}

.hero-title{

font-size:32px;

}

.hero-subtitle{

font-size:22px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons .btn{

width:100%;

}

.hero-form{

margin-top:0px;

padding:30px;

}

}

@media(max-width:767px){

.hero-title{

font-size:24px;

}

.hero-subtitle{

font-size:19px;

}

.hero-text{

font-size:16px;

}

.feature-card{

font-size:17px;

}

.form-top h3{

font-size:26px;

}

.hero-circle{

display:none;

}

.hero-section{

padding:100px 0px 20px 0px;

}

}
/*=========================
Hero Image
=========================*/

.hero-image-box{

    position:relative;

    padding:14px;

    background:#fff;

    border-radius:24px;

    border:2px solid rgba(29,113,184,.15);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    overflow:visible;

    transition:.4s;

}

.hero-image-box:hover{

    transform:translateY(-6px);

    box-shadow:0 35px 70px rgba(29,113,184,.18);

}

.hero-image{

    width:100%;

    border-radius:18px;

    display:block;

    transition:.45s;

}

.hero-image-box:hover .hero-image{

    transform:scale(1.03);

}

/* Floating Cards */

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:12px;

    background:#fff;

    padding:12px 18px;

    border-radius:14px;

    box-shadow:0 18px 45px rgba(0,0,0,.15);

    z-index:10;

    animation:floating 4s ease-in-out infinite;

}

.floating-icon{

    width:48px;

    height:48px;

    background:#1d71b8;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}

.floating-card h6{

    margin:0;

    font-size:17px;

    font-weight:700;

    color:#111;

}

.floating-card small{

    color:#111;

    font-size:14px;
font-weight:600;
}

/* Badge Positions */

.card-one{

    top:35px;

    left:-55px;

}

.card-two{

    bottom:40px;

    right:-55px;

    animation-delay:2s;

}

/* Animation */

@keyframes floating{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

}

/* Gradient Border */

.hero-image-box::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:24px;

    padding:2px;

    background:linear-gradient(135deg,#1d71b8,#f47c20);

    -webkit-mask:linear-gradient(#fff 0 0) content-box,
                 linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

}

/* Mobile */

@media(max-width:991px){

.hero-image-box{

margin-top:0px;

}

.floating-card{

display:none;

}


}
.hero-image-caption{

    margin-top:18px;

    text-align:center;

    font-size:18px;

    font-weight:700;

    color:#1d71b8;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

}

.hero-image-caption i{

    color:#28a745;

    font-size:22px;

}

@media(max-width:767px){

.hero-image-caption {
    margin-top: 18px;
   text-align: center !important;
    font-size: 18px;
    font-weight: 700;
    color: #1d71b8;
    display: flex;
 
    gap: 10px;
}
.hero-image-caption i {
    color: #28a745;
    font-size: 22px; display:none;
}
}

.problem-section{
    padding:50px 0;
    background:#f8f9fb;
}

.problem-badge{
    display:inline-block;
    background:#e9f2fb;
    color:#1d71b8;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
}

.problem-section h2{
    font-size:42px;
    font-weight:700;
}

.problem-section h2 span{
    color:#e05b66;
}

.problem-section p{
    color:#111;
}

.problem-card{
    position:relative;
    background:#fff;
    border:1px solid #e9edf3;
    border-radius:18px;
    padding:30px 25px 25px 85px;
    height:100%;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.problem-card:hover{
    transform:translateY(-6px);
    border-color:#1d71b8;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.problem-icon{
    position:absolute;
    top:22px;
    left:22px;
    width:36px;
    height:36px;
    border-radius:12px;
    background:#1d71b8;
    display:flex;
    align-items:center;
    justify-content:center;
}

.problem-icon i{
    color:#fff;
    font-size:22px;
}

.problem-card h5{
    margin:0;
    font-size:18px;
    line-height:1.45;
    font-weight:700;
    color:#1f2937;
}

.problem-card p{
    margin:0;
    font-size:17px;
}

.solution-box{
    background:linear-gradient(135deg,#1d71b8,#0d4d83);
    border-radius:22px;
    padding:55px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.solution-box::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    top:-100px;
    right:-80px;
}

.solution-box::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    left:-60px;
    bottom:-60px;
}

.solution-box h3{
    color:#fff;
    font-size:38px;
    line-height:1.4;
    font-weight:700;
    max-width:850px;
    margin:auto;
}

.solution-highlight{
    display:inline-block;
    margin:5px 0;
    font-size:52px;
    color:#ffc107;
    font-weight:900;

}

.solution-box p{
    color:#fff;
    font-size:18px;
    max-width:850px;
    margin:auto;
    line-height:1.9;
}

.solution-box strong{
    color:#ffd76a;
}

.solution-list{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.solution-list div{
    font-weight:600;
}

.solution-list i{
    color:#ffd86b;
    margin-right:6px;
}

.solution-btn{
    display:inline-block;
    background:#e05b66;
    color:#fff;
    padding:14px 34px;
    border-radius:40px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.solution-btn:hover{
    background:#fff;
    color:#1d71b8;
}

@media(max-width:768px){

    .problem-section {
    padding: 10px 0;
    background: #f8f9fb;
}

.solution-box{
    padding:30px 20px;
}

.solution-box h3{
    font-size:26px;
}

.solution-highlight{
    font-size:36px;
}

.solution-box p{
    font-size:16px;
}

.solution-list{
    flex-direction:column;
    gap:12px;
}

.solution-btn{
    width:100%;
}
.problem-section h2{font-size: 30px;}
.problem-section h2 span{display: block;}

.problem-card h5{
    margin:0;
    font-size:17px;
    line-height:1.45;
    font-weight:700;
    color:#1f2937;
}

}










.upgrade-section{
    padding:50px 0;
    background:#fff;
}

.upgrade-badge{

    display:inline-block;
    padding:8px 20px;
    background:#eaf4fd;
    color:#1d71b8;
    border-radius:30px;
    font-weight:600;

}

.upgrade-section h2{

    font-size:36px;
    font-weight:700;
    margin:20px 0;

}

.upgrade-section h2 span{

    color:#e05b66;

}

.upgrade-section p{

    font-size:17px;

}

.upgrade-card{

    background:#fff;
    border-radius:18px;
    padding:35px;
    height:100%;
    box-shadow:0 17px 35px rgba(0,0,0,.06);
    border:1px solid #ececec;

}

.left-card{

    border-top:5px solid #dc3545;

}

.right-card{

    border-top:5px solid #1d71b8;

}

.upgrade-card h4{

    font-size:28px;
    font-weight:700;
    margin-bottom:25px;

}

.upgrade-card ul{

    list-style:none;
    padding:0;
    margin:0;

}

.upgrade-card li{

    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    font-size:18px;

}

.left-card i{

    color:#dc3545;

}

.right-card strong{

    color:#1d71b8;

}

.save-text{

    margin-top:10px;

    display:inline-block;

    font-size:28px;

    font-weight:700;

    line-height:1.5;

    background:linear-gradient(
    90deg,
    #e05b66,
    #ff8c42,
    #1d71b8,
    #e05b66);

    background-size:300% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:textGradient 4s linear infinite;

    position:relative;

}

.save-text::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-4px;

    width:100%;

    height:3px;

    border-radius:5px;

    background:linear-gradient(90deg,#e05b66,#1d71b8);

    animation:underlineGlow 1.8s ease-in-out infinite;

}

@keyframes textGradient{

    0%{
        background-position:0% center;
    }

    100%{
        background-position:300% center;
    }

}

@keyframes underlineGlow{

    0%,100%{
        opacity:.5;
        transform:scaleX(.9);
    }

    50%{
        opacity:1;
        transform:scaleX(1);
    }

}
.upgrade-card:hover{

    transform:translateY(-6px);
    transition:.3s;

}

@media(max-width:768px){
    .upgrade-section {
    padding: 0px 0;
    background: #fff;
}
.upgrade-section h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 10px 0;
}
.upgrade-section h2 span {
    color: #e05b66; display: block;
}

.upgrade-card h4{

    font-size:22px;
    font-weight:700;
    margin-bottom:25px;

}
.save-text{

    margin-top:10px;

    display:inline-block;

    font-size:18px;

    font-weight:700;

    line-height:1.5;

    background:linear-gradient(
    90deg,
    #e05b66,
    #ff8c42,
    #1d71b8,
    #e05b66);

    background-size:300% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:textGradient 4s linear infinite;

    position:relative;

}

.save-text::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-4px;

    width:100%;

    height:3px;

    border-radius:5px;

    background:linear-gradient(90deg,#e05b66,#1d71b8);

    animation:underlineGlow 1.8s ease-in-out infinite;

}

@keyframes textGradient{

    0%{
        background-position:0% center;
    }

    100%{
        background-position:300% center;
    }

}

@keyframes underlineGlow{

    0%,100%{
        opacity:.5;
        transform:scaleX(.9);
    }

    50%{
        opacity:1;
        transform:scaleX(1);
    }

}

}




.eligible-section{
    padding:50px 0;
    background:#f8fbff;
}

.eligible-badge{
    display:inline-block;
    background:#eaf4fd;
    color:#1d71b8;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
}

.eligible-section h2{
    font-size:36px;
    font-weight:700;
    margin:20px 0;
}

.eligible-section h2 span{
    color:#e05b66;
}

.eligible-section p{
    font-size:18px;
    color:#111;
}

.eligible-section strong{
    color:#1d71b8;
}

.eligible-card{
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    height:100%;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.eligible-card:hover{
    transform:translateY(-6px);
    border-color:#1d71b8;
    box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.eligible-card i{
    font-size:42px;
    color:#1d71b8;
    margin-bottom:18px;
}

.eligible-card h5{
    font-size:18px;
    font-weight:700;
    margin:0;
    line-height:1.5;
}

@media(max-width:767px){

.eligible-section{
    padding:10px 0;
}

.eligible-section h2{
    font-size:28px;
}

.eligible-card{
    padding:22px 17px;
}

.eligible-card i{
    font-size:34px;
}

.eligible-card h5{
    font-size:16px;
}

}






.process-section{

    position:relative;

    padding:80px 0;

    background:url(../images/process-bg.webp) center center/cover fixed;

    overflow:hidden;

}

.process-overlay{

    position:absolute;

    inset:0;

    background:rgba(10,35,70,.80);

}

.process-section .container{

    position:relative;

    z-index:2;

}

.process-badge{

    display:inline-block;

    padding:8px 20px;

    background:rgba(255,255,255,.12);

    color:#fff;

    border-radius:30px;

    font-weight:600;

}

.process-section h2{

    color:#fff;

    font-size:36px;

    font-weight:700;

    margin-top:20px;

}

.process-section h2 span{

    color:#ffc107;

}

/* Timeline */

.process-line{

    position:relative;

    max-width:900px;

    margin:auto;

}

.process-line::before{

    content:"";

    position:absolute;

    left:30px;

    top:0;

    width:4px;

    height:100%;

    background:#e05b66;

}

.process-item{

    display:flex;

    align-items:flex-start;

    margin-bottom:35px;

}

.process-number{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#e05b66;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    font-weight:700;

    flex-shrink:0;

    position:relative;

    z-index:2;

}

.process-card{

    margin-left:30px;

    background:#fff;

    padding:25px;

    border-radius:18px;

    flex:1;

    box-shadow:0 17px 40px rgba(0,0,0,.15);

    transition:.3s;

}

.process-card:hover{

    transform:translateY(-6px);

}

.process-card h4{

    color:#1d71b8;

    font-size:24px;

    font-weight:700;

}

.process-card p{

    margin:0;

    color:#111;

    line-height:1.8;

}

@media(max-width:768px){

.process-section {
    position: relative;
    padding: 30px 0;

    overflow: hidden;
}

.process-line::before{

left:25px;

}

.process-number{

width:50px;

height:50px;

font-size:20px;

}

.process-card{

margin-left:20px;

padding:20px;

}

.process-section h2{

font-size:30px;

}
.process-card h4{

    color:#1d71b8;

    font-size:20px;

    font-weight:700;

}

}






.comparison-section{

    padding:50px 0;

    background:#e7f1ff;

}

.comparison-badge{

    display:inline-block;

    background:#eaf3fc;

    color:#1d71b8;

    padding:8px 20px;

    border-radius:30px;

    font-weight:600;

}

.comparison-section h2{

    font-size:36px;

    font-weight:700;

}

.comparison-section h2 span{

    color:#e05b66;

}

/*========================*/

.comparison-box{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

/*========================*/

.comparison-header{

    color:#fff;

    font-size:22px;

    font-weight:700;

}

.left-heading{

    background:#dc3545;

    padding:22px;

    text-align:center;

}

.right-heading{

    background:#1d71b8;

    padding:22px;

    text-align:center;

}

.left-heading i,

.right-heading i{

    margin-right:8px;

}

/*========================*/

.comparison-row{

    border-bottom:1px solid #ececec;

}

.comparison-row:last-child{

    border:none;

}

.left-side,

.right-side{

    display:flex;

    align-items:center;

    gap:17px;

    padding:22px 28px;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.left-side{

    background:#fff9f9;

    border-right:2px solid #ececec;

}

.right-side{

    background:#f6fbff;

}

/* Icons */

.left-side i{

    width:30px;

    height:30px;

    border-radius:50%;

    background:#ffe4e4;

    color:#dc3545;

    display:flex;

    align-items:center;

    justify-content:center;

}

.right-side i{

    width:30px;

    height:30px;

    border-radius:50%;

    background:#dff8ea;

    color:#1b6aa2;

    display:flex;

    align-items:center;

    justify-content:center;

}

/* Hover */

.comparison-row:hover .left-side{

    background:#fff2f2;

}

.comparison-row:hover .right-side{

    background:#eef8ff;

}

/* Footer */

.comparison-footer{

    text-align:center;

    margin:55px auto 0;

    font-size:38px;

    font-weight:800;

    line-height:1.4;

    color:#1b2430;

    display:block;

    position:relative;

    animation:fadeUp 1s ease;

}

.comparison-footer span{

    background:linear-gradient(90deg,#e05b66,#ff7b54,#1d71b8);

    background-size:300% auto;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    animation:textGradient 4s linear infinite;

}

.comparison-footer::after{

    content:"";

    width:140px;

    height:5px;

    border-radius:20px;

    background:linear-gradient(90deg,#e05b66,#1d71b8);

    display:block;

    margin:18px auto 0;

    animation:linePulse 2s ease-in-out infinite;

}

/* Animations */

@keyframes textGradient{

    from{
        background-position:0%;
    }

    to{
        background-position:300%;
    }

}

@keyframes linePulse{

    0%,100%{

        width:120px;
        opacity:.6;

    }

    50%{

        width:180px;
        opacity:1;

    }

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(25px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@media(max-width:768px){

    .comparison-footer{

        font-size:28px;
        margin-top:35px;

    }

    .comparison-footer::after{

        width:100px;

    }

}

.comparison-footer span{

    color:#ffc107;

}

.comparison-section{
    text-align:center;
}



/* Mobile */

@media(max-width:768px){
    
.left-heading,

.right-heading{

font-size:18px;

}

.left-side,

.right-side{

font-size:16px;

padding:18px;

}

.comparison-footer{

font-size:28px;

}

.comparison-section h2 {
    font-size: 30px;
    font-weight: 700;
}

}

@media (max-width:768px){
.comparison-section {
    padding: 20px 0;
    background: #f8fbff;
}
.comparison-header{
    display:flex;
}

.comparison-row{
    display:flex;
}

.comparison-row .col-md-6,
.comparison-header .col-md-6{
    width:50%;
    flex:0 0 50%;
    max-width:50%;
}

.left-side,
.right-side,
.left-heading,
.right-heading{
    border-radius:0;
    margin:0;
    font-size:15px;
    padding:15px 7px;
}

.left-side i,
.right-side i{
    width:24px;
    height:24px;
    font-size:13px;
}

.comparison-footer{
    font-size:26px;
}
.left-side, .right-side {
    display: flex;
    /* align-items: center; */
    gap: 7px;
    padding: 22px 28px;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

}



.benefits-section{
    padding:50px 0;
    background:#fff;
}

.benefit-tag{
    display:inline-block;
    background:#eaf4fd;
    color:#1d71b8;
    padding:8px 20px;
    border-radius:30px;
    font-weight:600;
}

.benefits-section h2{
    font-size:36px;
    font-weight:700;
}

.benefits-section h2 span{
    color:#e05b66;
}

.benefits-wrap{
    max-width:900px;
    margin:auto;
    position:relative;
}

.benefits-wrap::before{
    content:"";
    position:absolute;
    left:35px;
    top:0;
    bottom:0;
    width:3px;
    background:#dfe8f2;
}

.benefit-item{
    display:flex;
    gap:25px;
    margin-bottom:35px;
    position:relative;
}

.benefit-icon{
    width:50px;
    height:50px;
    background:#1d71b8;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    flex-shrink:0;
    position:relative;
    z-index:2;
    transition:.3s;
}

.benefit-item:hover .benefit-icon{
    background:#e05b66;
    transform:scale(1.08);
}

.benefit-content{
    background:#fff;
    padding:25px 30px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    border:1px solid #edf1f5;
    flex:1;
    transition:.3s;
}

.benefit-item:hover .benefit-content{
    transform:translateY(-5px);
}

.benefit-content h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;
    color:#1d71b8;
}

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

@media(max-width:768px){

.benefits-section h2{
    font-size:32px;
}

.benefits-wrap::before{
    left:25px;
}

.benefit-item{
    gap:17px;
}

.benefit-icon{
    width:50px;
    height:50px;
    font-size:22px;
}

.benefit-content{
    padding:18px;
}

.benefit-content h4{
    font-size:20px;
}

}







.brand-section{
    padding:50px 0;
    background:#e7f1ff;
}

.brand-badge{
    display:inline-block;
    padding:8px 18px;
    background:#eaf4fd;
    color:#1d71b8;
    border-radius:30px;
    font-weight:600;
}

.brand-section h2{
    font-size:36px;
    font-weight:700;
}

.brand-section h2 span{
    color:#e05b66;
}

.brand-card{

    background:#fff;

    border:1px solid #e9edf3;

    border-radius:18px;

    padding:30px 20px;

    text-align:center;

    transition:.3s;

    height:100%;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.brand-card:hover{

    transform:translateY(-8px);

    border-color:#1d71b8;

    box-shadow:0 18px 35px rgba(0,0,0,.10);

}

.brand-card i{

    font-size:40px;

    color:#1d71b8;

    margin-bottom:18px;

}

.brand-card h5{

    margin:0;

    font-size:20px;

    font-weight:700;

}

.more-brand{

    background:#1d71b8;

    color:#fff;

}

.more-brand i{

    color:#ffc107;

}

.more-brand:hover{

    background:#e05b66;

    border-color:#e05b66;

}
@media(max-width:768px){

.benefits-section {
    padding: 20px 0;
    background: #fff;
}
}
@media(max-width:768px){

.brand-section{
    padding:20px 0;
    background:#d7eeff;
}

.brand-section h2{

font-size:32px;

}

.brand-card{

padding:22px 17px;

}

.brand-card h5{

font-size:17px;

}

.brand-card i{

font-size:32px;

}

}







.why-section{
    padding:50px 0;
    background:linear-gradient(180deg,#f8fbff,#ffffff);
}

.why-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#e9f3ff;
    color:#1d71b8;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
}

.why-section h2{
    font-size:32px;
    font-weight:800;
}

.why-section h2 span{
    color:#e05b66;
}

.why-box{

    background:#fff;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    position:relative;

    overflow:hidden;

    border:1px solid #edf2f8;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.why-box::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#1d71b8,#e05b66);

}

.why-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(29,113,184,.15);

}

.why-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,#1d71b8,#4b9be3);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:32px;

    transition:.4s;

}

.why-box:hover .why-icon{

    transform:rotateY(180deg);

    background:linear-gradient(135deg,#e05b66,#ff8d72);

}

.why-box h5{

    font-size:20px;

    font-weight:700;

    line-height:1.5;

    margin:0;

}

@media(max-width:768px){

.why-section{
    padding:25px 0;
}

.why-section h2{
    font-size:30px;
}

.why-box{
    padding:28px 20px;
}

.why-icon{
    width:65px;
    height:65px;
    font-size:26px;
}

.why-box h5{
    font-size:18px; font-weight:600;
}

}













.faq-section{
    padding:50px 0;
    background:#f8fbff;
}

.faq-badge{
    display:inline-block;
    padding:8px 18px;
    background:#eaf4fd;
    color:#1d71b8;
    border-radius:30px;
    font-weight:600;
}

.faq-section h2{
    font-size:36px;
    font-weight:700;
}

.faq-section h2 span{
    color:#e05b66;
}

.faq-accordion{
    max-width:900px;
    margin:auto;
}

.faq-accordion .accordion-item{
    border:none;
    border-radius:17px;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.faq-accordion .accordion-button{
    background:#fff;
    color:#111;
    font-size:20px;
    font-weight:700;
    padding:22px 25px;
    box-shadow:none;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:#1d71b8;
    color:#fff;
}

.faq-accordion .accordion-button::after{
    filter:brightness(0);
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

.faq-accordion .accordion-body{
    padding:22px 25px;
    font-size:17px;
    line-height:1.8;
    color:#111;
    background:#fff;
}

@media(max-width:768px){
.faq-section{
    padding:10px 0;
    background:#f8fbff;
}
.faq-section h2{
    font-size:32px;
}

.faq-accordion .accordion-button{
    font-size:17px;
    padding:18px;
}

.faq-accordion .accordion-body{
    font-size:16px;
    padding:18px;
}

}








.contact-section{

    padding:70px 0;

    background:linear-gradient(180deg,#f5f9ff,#ffffff);

}

.contact-wrapper{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 25px 70px rgba(0,0,0,.08);

}

.contact-left{

    height:100%;

    padding:55px 45px;

    background:linear-gradient(135deg,#1d71b8,#0d5c98);

    color:#fff;

}

.contact-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:20px;

}

.contact-left h2{

    font-size:32px;

    font-weight:700;

}

.contact-left h2 span{

    color:#ffd54d; display: block;

}

.contact-left h4{

    margin:10px 0;

    font-weight:700;

}

.contact-left p{

    color:#fff;

    line-height:1.8;

}

.contact-points{

    margin-top:15px;

}

.contact-points div{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:10px;

    font-size:17px;

    font-weight:600;

}

.contact-points i{

    color:#7dff9d;

}

.contact-form-box{

    padding:55px;

}

.contact-form-box h3{

    font-size:34px;

    font-weight:700;

}

.contact-form-box p{

    color:#111;

    margin-bottom:25px;

}

.form-control{

    height:54px;

    border-radius:12px;

}

textarea.form-control{

    height:auto;

}

.submit-btn{

    background:#e05b66;

    color:#fff;

    border:none;

    border-radius:12px;

    padding:16px;

    font-weight:700;

    transition:.35s;

}

.submit-btn:hover{

    background:#1d71b8;

}

@media(max-width:991px){

.contact-left{

padding:35px 25px;

}

.contact-form-box{

padding:35px 25px;

}

.contact-left h2{

font-size:30px;

}

.contact-form-box h3{

font-size:28px;

}

.submit-btn{

    background:#e05b66;

    color:#fff;

    border:none;

    border-radius:12px;

    padding:8px !important; font-size:16px;

    font-weight:700;

    transition:.35s;

}

}









/* Trust */

.trust-strip{

margin-top:60px;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}

.trust-strip div{

background:#fff;

padding:18px;

text-align:center;

border-radius:12px;

font-weight:600;

box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.trust-strip i{

color:#1b6aa2;

margin-right:6px;

}

@media(max-width:768px){

.contact-section h2{

font-size:26px;

}

.contact-form-box{

padding:25px;

}

.trust-strip{

grid-template-columns:1fr;

}
.contact-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #edf6ff, #ffffff);
    position: relative;
    overflow: hidden;
}
.trust-strip {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.trust-strip div{
text-align: left;}
}







.final-cta{

    padding:80px 0;

    background:linear-gradient(135deg,#1d71b8,#0b4d83);

    position:relative;

    overflow:hidden;

}

.final-cta::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    top:-120px;

    left:-120px;

}

.final-cta::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-80px;

    bottom:-80px;

}

.final-cta .container{

    position:relative;

    z-index:2;

}

.cta-tag{

    display:inline-block;

    background:rgba(255,255,255,.12);

    color:#fff;

    padding:10px 22px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:25px;

}

.cta-tag i{

    color:#ffc107;

    margin-right:6px;

}

.final-cta h2{

    color:#fff;

    font-size:48px;

    font-weight:700;

    line-height:1.3;

}

.final-cta h2 span{

    color:#ffc107;

}

.final-cta p{

    color:#fff;

    font-size:19px;

    max-width:800px;

    margin:25px auto 40px;

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-call,
.btn-whatsapp{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

/*==========================
Call Button
==========================*/

.btn-call{

    background:#e05b66;

    color:#fff;

    animation:callPulse 2s infinite;

}

.btn-call:hover{

    background:#fff;

    color:#1d71b8;

    transform:translateY(-5px);

}

/*==========================
WhatsApp Button
==========================*/

.btn-whatsapp{

    background:#25D366;

    color:#fff;

    animation:whatsappFloat 3s ease-in-out infinite;

}

.btn-whatsapp:hover{

    background:#fff;

    color:#25D366;

    transform:translateY(-5px);

}

/*==========================
Shine Effect
==========================*/

.btn-call::before,
.btn-whatsapp::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:40%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

    animation:shine 3.5s infinite;

}

/*==========================
Animations
==========================*/

@keyframes callPulse{

    0%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(224,91,102,.45);

    }

    70%{

        transform:scale(1.03);

        box-shadow:0 0 0 18px rgba(224,91,102,0);

    }

    100%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(224,91,102,0);

    }

}

@keyframes whatsappFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-5px);

    }

}

@keyframes shine{

    0%{

        left:-120%;

    }

    100%{

        left:150%;

    }

}
@media(max-width:768px){
.final-cta h2{

    color:#fff;

    font-size:32px;

    font-weight:700;

    line-height:1.3;

}
.final-cta h2 span {
display: block;
}
.cta-buttons{display: none;}

.final-cta {
    padding: 40px 0 20px 0px;
    background: linear-gradient(135deg, #1d71b8, #0b4d83);
    position: relative;
    overflow: hidden;
}
}







/*==========================
Mobile Sticky CTA
==========================*/

.mobile-sticky-bar{

    position:fixed;

    left:0;

    bottom:0;

    width:100%;

    display:none;

    z-index:99;

    box-shadow:0 -5px 20px rgba(0,0,0,.15);

}

.mobile-sticky-bar a{

    flex:1;

    text-decoration:none;

    color:#fff;

    text-align:center;

    padding:12px 8px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    font-size:13px;

    font-weight:600;

}

.mobile-sticky-bar i{

    font-size:20px;

    margin-bottom:4px;

}

.sticky-call{

    background:#1d71b8;

}

.sticky-whatsapp{

    background:#25D366;

}

.sticky-quote{

    background:#e05b66;

}

@media(max-width:991px){

.mobile-sticky-bar{

display:flex;

}

body{

padding-bottom:50px;

}

}





/*=========================
Desktop Fixed CTA
=========================*/

.desktop-fixed-cta{

    position:fixed;

    left:20px;

    top:50%;

    transform:translateY(-50%);

    z-index:9999;

    display:flex;

    flex-direction:column;

    gap:12px;

}

.desktop-fixed-cta a{

    width:58px;

    height:58px;

    border-radius:50px;

    display:flex;

    align-items:center;

    overflow:hidden;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

}

.desktop-fixed-cta i{

    min-width:58px;

    text-align:center;

    font-size:24px;

    color:#fff;

}

.desktop-fixed-cta span{

    white-space:nowrap;

    color:#fff;

    font-weight:600;

    opacity:0;

    transition:.35s;

    padding-right:18px;

}

.desktop-call{

    background:#e05b66;

}

.desktop-whatsapp{

    background:#25D366;

}

.desktop-fixed-cta a:hover{

    width:185px;

}

.desktop-fixed-cta a:hover span{

    opacity:1;

}

/* Hide on Mobile */

@media(max-width:991px){

.desktop-fixed-cta{

display:none;

}

}






.footer{
    background:#0f2945;
    padding:18px 0;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.footer-bottom p{
    margin:0;
    color:#fff;
    font-size:15px;
}

.footer-bottom strong{
    color:#e05b66;
}

.footer-bottom a{
    color:#e05b66;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.footer-bottom a:hover{
    color:#fff;
}

@media(max-width:768px){

.footer-bottom{
    flex-direction:column;
    text-align:center;     margin-bottom: 20px;
}


}






.enquiry-modal{
    border:none;
    border-radius:18px;
    overflow:hidden;
}

.enquiry-modal .modal-header{
    background:#1d71b8;
    color:#fff;
    padding:18px 25px;
}

.enquiry-modal .btn-close{
    filter:invert(1);
}

.enquiry-modal .modal-body{
    padding:30px;
}

.enquiry-modal .form-control{
    height:50px;
    border-radius:10px;
    box-shadow:none;
}

.popup-btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:10px;
    background:#f47c20;
    color:#fff;
    font-weight:700;
    transition:.3s;
}

.popup-btn:hover{
    background:#1d71b8;
}

@media(max-width:576px){

.enquiry-modal .modal-body{
    padding:20px;
}

}

.enquiry-modal textarea.form-control{

    height:auto;

    min-height:100px;

    resize:none;

    border-radius:10px;

    box-shadow:none;

}