*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#0B3D91;
}

/* HEADER */
.main-header{
    position:relative;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.26);
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.navbar-brand img{
    width:75px;
}

.navbar-brand span{
    font-size:24px;
    font-weight:800;
    color:#111827;
}

.nav-link{
    color:#111827;
    font-weight:600;
    margin:0 12px;
    position:relative;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#b53135;
    transition:.4s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.call-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 25px;
    border-radius:50px;
    background:linear-gradient(
        135deg,
        #0d6efd,
        #3d8bfd
    );
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.call-btn:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 10px 25px rgba(13,110,253,.3);
}
 
.hero-section{
    background:#f8fafc;
    overflow:hidden;
}

.hero-badge{
    background:#e0f2fe;
    color:#0B3D91;
    padding:10px 20px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:20px;
    font-weight:600;
}

.hero-section h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-section p{
    font-size:18px;
    color:#64748b;
    margin-bottom:30px;
}
/* hero */

/* feature card */
.feature-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-icon{
    width:100px;
    height:100px;
    background:#eff6ff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:20px;
    font-size:28px;
    color: #0B3D91;
}
/* feature card */
/* product */
.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}


.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.product-content{
    padding:25px;
}
/* product */
/* new css */
.section-tag{
    color:#0B3D91;
    font-weight:600;
    display:block;
    margin-bottom:10px;
}

.about-section h2,
.features h2,
#products h2{
    font-weight:700;
    margin-bottom:20px;
}

.counter-section{
    background:#0B3D91;
    color:white;
}

.counter-section h2{
    font-size:3rem;
    font-weight:700;
}

footer{
    background:#111827 !important;
}
/* why choose  */
/* .why-choose-us{
    background: linear-gradient(180deg,#f8fafc,#ffffff);
    position: relative;
    overflow: hidden;
}

.section-title span{
    color:#0d6efd;
    font-weight:600;
    letter-spacing:2px;
    font-size:14px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    margin-top:10px;
    color:#111827;
}

.section-title p{
    color:#64748b;
    max-width:700px;
    margin:auto;
}

.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:0.5s;
    height:100%;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.why-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );
    transition:.8s;
}

.why-card:hover::before{
    left:100%;
}

.why-card:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 50px rgba(13,110,253,.15);
}

.icon-box{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #0d6efd,
        #4f8cff
    );
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
    transition:.5s;
}

.icon-box i{
    color:#fff;
    font-size:38px;
}

.why-card:hover .icon-box{
    transform:rotateY(180deg) scale(1.1);
}

.why-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#111827;
}

.why-card p{
    color:#64748b;
    line-height:1.8;
}
/* floting */
.why-choose-us::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(13,110,253,.05);
    border-radius:50%;
    top:-150px;
    right:-150px;
}

.why-choose-us::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(13,110,253,.04);
    border-radius:50%;
    bottom:-120px;
    left:-120px;
}
/* contact */
.contact-section{
background:linear-gradient(
180deg, 
#f8fafc,
#ffffff
);
}

.contact-tag{
color:#0d6efd;
font-weight:700;
letter-spacing:2px;
}

.contact-section h2{
font-size:48px;
font-weight:800;
margin:10px 0;
}

.contact-info-card{
background:#fff;
padding:35px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.info-box{
display:flex;
align-items:center;
gap:20px;
margin-bottom:25px;
}

.info-icon{
width:65px;
height:65px;
border-radius:50%;
background:linear-gradient(
135deg,
#0d6efd,
#4f8cff
);
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:24px;
transition:.4s;
}

.info-box:hover .info-icon{
transform:rotate(10deg) scale(1.1);
}

.contact-form-box{
background:#fff;
padding:40px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.contact-form-box .form-control{
height:58px;
border-radius:12px;
border:1px solid #e5e7eb;
}

.contact-form-box textarea.form-control{
height:auto;
}

.submit-btn{
background:#0d6efd;
color:#fff;
padding:14px 35px;
border-radius:50px;
border:none;
transition:.4s;
}

.submit-btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 30px rgba(13,110,253,.25);
}
 /* call FLOAT BUTTON */
    .call-float {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background: #0d6efd ;
        color: #fff;
        padding: 12px 18px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
        transition: 0.3s;
    }

    .call-float i {
        font-size: 16px;
    }

    /* HOVER */
    .call-float:hover {
        background: #053c8f ;
        transform: translateY(-3px);
    }

    /* MOBILE - only icon */
    @media (max-width: 576px) {
        .call-float span {
            display: none;
        }

        .call-float {
            padding: 12px;
            border-radius: 50%;
        }
    }
    /* WHATSAPP FLOAT BUTTON */
    .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #b53135;
        color: #fff;
        padding: 12px 18px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
        transition: 0.3s;
    }

    .whatsapp-float i {
        font-size: 20px;
    }

    /* HOVER */
    .whatsapp-float:hover {
        background: #cc050b; ;
        transform: translateY(-3px);
    }

    /* MOBILE - only icon */
    @media (max-width: 576px) {
        .whatsapp-float span {
            display: none;
        }

        .whatsapp-float {
            padding: 12px;
            border-radius: 50%;
        }
    }


    /* loder */
    #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #eee;
    border-top: 5px solid #b53135;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.loader-hidden {
    opacity: 0;
    pointer-events: none;
}
/* seo */
.seo-section{
    background:#f8fafc;
}

.seo-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.seo-card h1{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin-bottom:25px;
}

.seo-card h2{
    color:#b53135;
    margin-bottom:20px;
    font-weight:700;
}

.company-info{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.info-box{
    background:#f8fafc;
    padding:7px;
    border-radius:15px;
}

.info-box h5{
    color:#b53135;
    margin-bottom:10px;
}

.custom-list li{
    margin-bottom:10px;
}
/* why choose us */
.benefit-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    border:1px solid #f1f5f9;
}

.benefit-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(181,49,53,.12);
}

.benefit-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#b53135,#d45a5e);
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

.benefit-icon i{
    color:#fff;
    font-size:30px;
}

.benefit-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#111827;
    font-weight:700;
}

.benefit-card p{
    color:#64748b;
    margin-bottom:15px;
}

.custom-list{
    padding-left:20px;
}

.custom-list li{
    margin-bottom:10px;
    color:#475569;
}
/* services */
.service-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(181,49,53,.12);
}

.service-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.service-header i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#b53135;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.service-header h3{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#111827;
}

.service-card h5{
    color:#b53135;
    margin-top:25px;
    margin-bottom:15px;
    font-weight:600;
}

.service-card p{
    color:#475569;
    line-height:1.8;
}

.custom-list li{
    margin-bottom:10px;
    color:#475569;
}
/* 4 and 5  */
.importance-card,
.benefit-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.importance-card:hover,
.benefit-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(181,49,53,.12);
}

.importance-card i,
.benefit-box i{
    font-size:45px;
    color:#b53135;
    margin-bottom:20px;
}

.importance-card h4,
.benefit-box h3{
    font-weight:700;
    margin-bottom:15px;
}

.importance-card p,
.benefit-box p{
    color:#64748b;
}
/* 6 and 7 */
.section-heading h2{
    font-size:42px;
    font-weight:800;
    color:#111827;
}

.section-badge{
    display:inline-block;
    padding:10px 20px;
    background:rgba(11,61,145,.1);
    color:#0b3d91;
    border-radius:50px;
    font-weight:700;
    letter-spacing:1px;
}

/* table */

.service-table{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-table thead{
    background:linear-gradient(
        135deg,
        #0b3d91,
        #b53135
    );
}

.service-table thead th{
    color:#fff;
    padding:18px;
    border:none;
}

.service-table tbody td{
    padding:18px;
    vertical-align:middle;
}

.service-table tbody tr:hover{
    background:#f8fafc;
}

/* timeline */

.timeline{
    position:relative;
}

.timeline::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:linear-gradient(
        #0b3d91,
        #b53135
    );
    transform:translateX(-50%);
}

.timeline-item{
    width:50%;
    position:relative;
    padding:20px 40px;
}

.timeline-item:nth-child(odd){
    left:0;
    text-align:right;
}

.timeline-item:nth-child(even){
    left:50%;
}

.timeline-number{
    width:70px;
    height:70px;
    background:linear-gradient(
        135deg,
        #0b3d91,
        #b53135
    );
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:700;
    position:absolute;
    top:20px;
    z-index:2;
}

.timeline-item:nth-child(odd) .timeline-number{
    right:-35px;
}

.timeline-item:nth-child(even) .timeline-number{
    left:-35px;
}

.timeline-content{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.timeline-content h4{
    color:#0b3d91;
    font-weight:700;
}

.timeline-content p{
    margin-bottom:0;
    color:#64748b;
}

@media(max-width:768px){

    .timeline::before{
        left:25px;
    }

    .timeline-item{
        width:100%;
        left:0 !important;
        padding-left:80px;
        text-align:left !important;
    }

    .timeline-number{
        left:-10px !important;
        right:auto !important;
    }
    .info-box{
display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-bottom: 25px;
    flex-direction: column;
    flex-wrap: wrap;
}

}
/* 8 and 9 */
.customer-satisfaction{
    background:#f8fafc;
}

.satisfaction-list{
    margin-top:30px;
}

.satisfaction-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    font-size:18px;
    font-weight:500;
}

.satisfaction-item i{
    color:#b53135;
    font-size:22px;
}

.stats-card{
    background:linear-gradient(
        135deg,
        #0b3d91,
        #b53135
    );
    color:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.stats-card h2{
    font-size:42px;
    font-weight:800;
}

.stats-card p{
    margin-bottom:0;
    opacity:.9;
}

.testimonials{
    background:#fff;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    height:100%;
    border:1px solid #e5e7eb;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#0b3d91;
    box-shadow:0 20px 40px rgba(11,61,145,.12);
}

.stars{
    color:#f59e0b;
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#64748b;
    font-size:17px;
    line-height:1.8;
}

.testimonial-card h5{
    color:#0b3d91;
    margin-top:20px;
    font-weight:700;
}
/* faq */
.faq-section{
    background:#f8fafc;
}

.custom-faq .accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.custom-faq .accordion-button{
    background:#fff;
    color:#111827;
    font-weight:600;
    padding:20px 25px;
    box-shadow:none;
}

.custom-faq .accordion-button:not(.collapsed){
    background:linear-gradient(
        135deg,
        #0b3d91,
        #b53135
    );
    color:#fff;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
}

.custom-faq .accordion-body{
    padding:25px;
    color:#64748b;
    line-height:1.8;
    background:#fff;
}
html,
body{
    width:100%;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
}

@media(max-width:991px){

    .navbar-nav{
        text-align:center;
        padding-top:15px;
    }

    .nav-link{
        margin:8px 0;
    }

    .hero-section h1{
        font-size:42px;
    }

}

@media(max-width:768px){

    .hero-section{
        padding:60px 0;
        text-align:center;
    }

    .hero-section h1{
        font-size:32px;
        line-height:1.3;
    }

    .section-heading h2,
    .contact-section h2,
    .seo-card h1{
        font-size:28px;
    }

    .feature-card,
    .service-card,
    .benefit-card,
    .contact-form-box,
    .contact-info-card,
    .seo-card,
    .testimonial-card,
    .company-info{
        padding:20px;
    }

    .service-header{
        flex-direction:column;
        text-align:center;
    }

    .service-header h3{
        font-size:22px;
    }

    .stats-card{
        padding:25px;
    }

    .stats-card h2{
        font-size:30px;
    }

    .product-card img{
        height:220px;
    }
}

@media(max-width:576px){

    .hero-section h1{
        font-size:28px;
    }

    .call-btn{
        width:100%;
        justify-content:center;
    }
}