/*==========================
    Navbar
==========================*/

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

.custom-navbar{

    background:#ffffff;
    transition:.35s;
    padding:18px 0;
    box-shadow:none;

}

.custom-navbar.scrolled{

    padding:10px 0;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.logo-img{

    width:230px;

    height:auto;

}

.logo-text h5{

    font-weight:700;

    color:#0F172A;

    margin:0;

    line-height:1;

}

.logo-text small{

    letter-spacing:2px;

    color:#0A66FF;

    font-size:11px;

    font-weight:600;

}

.navbar-nav .nav-link{

    color:#334155;

    font-weight:500;

    margin-left:18px;

    position:relative;

    transition:.3s;

}

.navbar-nav .nav-link:hover{

    color:#0A66FF;

}

.navbar-nav .nav-link.active{

    color:#0A66FF;

}

.navbar-nav .nav-link.active::after{

    content:'';

    position:absolute;

    width:100%;

    height:2px;

    left:0;

    bottom:-6px;

    background:#0A66FF;

}

.btn-primary{

    background:#0A66FF;

    border-color:#0A66FF;

    border-radius:10px;

}

.btn-primary:hover{

    background:#084fc4;

}

.btn-outline-primary{

    border-radius:10px;

}
/*==========================
        Footer
==========================*/

.footer{

    background:#0F172A;

    color:#cbd5e1;

    position:relative;

    /*margin-top:120px;*/

}

.footer-wave{

    margin-bottom:-8px;

}

.footer-logo{

    width:220px;
    background: #fff;
    border-radius: 5px;
    padding: 5px 0;

}

.footer h5{

    color:#fff;

    margin-bottom:25px;

    font-weight:600;

}

.footer p{

    line-height:1.9;

}

.footer ul{

    padding:0;

    margin:0;

    list-style:none;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#0A66FF;

    padding-left:6px;

}

.contact-list li{

    display:flex;

    gap:12px;

    align-items:flex-start;

}

.contact-list i{

    color:#0A66FF;

    margin-top:3px;

}

.social-icons{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.social-icons a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.social-icons a:hover{

    background:#0A66FF;

    transform:translateY(-4px);

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:40px 0 25px;

}

/*==========================
      Back To Top
==========================*/

#backToTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#0A66FF;

    color:#fff;

    display:none;

    z-index:999;

    transition:.3s;

}

#backToTop:hover{

    transform:translateY(-4px);

}
section{
    overflow:hidden;
}
/*=========================================
                HERO
==========================================*/

.hero-section{

    position:relative;

    overflow:hidden;

    padding-top:130px;

    background:
    linear-gradient(135deg,#f8fbff 0%,#eef5ff 55%,#ffffff 100%);

}

.hero-title{

    font-size:58px;

    font-weight:800;

    line-height:1.15;

    color:#0F172A;

}

.hero-title span{

    color:#0A66FF;

}

.hero-text{

    margin-top:25px;

    color:#64748B;

    font-size:18px;

    line-height:1.8;

    max-width:580px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#E8F1FF;

    color:#0A66FF;

    padding:10px 22px;

    border-radius:50px;

    font-weight:600;

}

.hero-buttons{

    margin-top:40px;

}

.hero-buttons .btn{

    border-radius:12px;

    padding:14px 34px;

    font-weight:600;

}

.hero-stats{

    display:flex;

    gap:50px;

}

.hero-stats h3{

    color:#0A66FF;

    font-weight:700;

    margin-bottom:5px;

}

.hero-stats span{

    color:#64748B;

}

/* Right Side */

.hero-image-box{

    position:relative;

}

.hero-image-box img{

    max-width:520px;

}

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:15px;

    padding:15px 18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    animation:float 4s ease-in-out infinite;

}

.floating-card i{

    font-size:22px;

    color:#0A66FF;

}

.card-ai{

    top:5%;

    left:0;

}

.card-web{

    right:0;

    top:20%;

}

.card-mobile{

    left:30px;

    bottom:18%;

}

.card-cloud{

    right:25px;

    bottom:5%;

}

/* Background Shapes */

.hero-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(70px);

    opacity:.25;

}

.shape-1{

    width:250px;

    height:250px;

    background:#0A66FF;

    top:-80px;

    left:-80px;

}

.shape-2{

    width:320px;

    height:320px;

    background:#06B6D4;

    right:-120px;

    top:80px;

}

.shape-3{

    width:220px;

    height:220px;

    background:#3B82F6;

    bottom:-60px;

    left:45%;

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

}

/* Responsive */

@media(max-width:991px){

.hero-title{

    font-size:42px;

}

.hero-image-box{

    margin-top:60px;

}

.hero-stats{

    justify-content:space-between;

    gap:20px;

}

.hero-buttons .btn{

    width:100%;

    margin-bottom:15px;

}

.hero-buttons .btn:last-child{

    margin-left:0 !important;

}

}
/*=========================================
            ABOUT SECTION
=========================================*/

.about-section{

    padding:100px 0;

    background:#ffffff;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.experience-card{

    position:absolute;

    right:-20px;

    bottom:-60px;

    background:#0A66FF;

    color:#fff;

    padding:25px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(10,102,255,.25);

}

.experience-card h2{

    font-size:30px;

    font-weight:700;

    margin-bottom:5px;

}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    background:#EAF2FF;

    color:#0A66FF;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:#0F172A;

    line-height:1.3;

}

.section-description{

    margin-top:20px;

    color:#64748B;

    font-size:17px;

    line-height:1.8;

}

.about-feature{

    margin-bottom:18px;

    font-weight:600;

    color:#0F172A;

}

.about-feature i{

    color:#0A66FF;

    margin-right:10px;

}
/*=========================================
            SERVICES
=========================================*/

.services-section{

    background:#F8FAFC;

    padding:100px 0;

}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    height:100%;

    transition:.35s;

    border:1px solid #EEF2F7;

    position:relative;

    overflow:hidden;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#0A66FF,#06B6D4);

    transform:scaleX(0);

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:linear-gradient(135deg,#0A66FF,#06B6D4);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.service-icon i{

    color:#fff;

    font-size:30px;

}

.service-card h4{

    font-weight:700;

    margin-bottom:15px;

    color:#0F172A;

}

.service-card p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:25px;

}

.service-card .btn-link{

    color:#0A66FF;

    font-weight:600;

    text-decoration:none;

}

.service-card .btn-link:hover{

    color:#084FC4;

}

.service-card .btn-link i{

    transition:.3s;

}

.service-card:hover .btn-link i{

    margin-left:6px;

}
/*=========================================
            WHY CHOOSE US
=========================================*/

.why-us-section{

    padding:100px 0;

    background:#ffffff;

}

.feature-box{

    background:#ffffff;

    border:1px solid #eef2f7;

    border-radius:20px;

    padding:30px;

    height:100%;

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.feature-icon{

    width:65px;

    height:65px;

    border-radius:16px;

    background:linear-gradient(135deg,#0A66FF,#06B6D4);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}

.feature-icon i{

    color:#fff;

    font-size:28px;

}

.feature-box h5{

    font-weight:700;

    color:#0F172A;

    margin-bottom:15px;

}

.feature-box p{

    color:#64748B;

    line-height:1.8;

    margin:0;

}
/*=========================================
        INDUSTRIES
=========================================*/

.industries-section{

    padding:100px 0;

    background:#F8FAFC;

}

.industry-feature{

    background:linear-gradient(135deg,#0A66FF,#06B6D4);

    color:#fff;

    border-radius:25px;

    padding:45px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    min-height:100%;

}

.industry-main-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

}

.industry-main-icon i{

    font-size:36px;

}

.industry-feature h3{

    font-weight:700;

    margin-bottom:20px;

}

.industry-feature p{

    line-height:1.9;

    opacity:.95;

}

.industry-feature .btn{

    margin-top:30px;

    border-radius:12px;

    font-weight:600;

}

.industry-card{

    background:#fff;

    border:1px solid #eef2f7;

    border-radius:18px;

    padding:30px;

    cursor:pointer;

    transition:.35s;

    text-align:center;

    height:100%;

}

.industry-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.industry-card i{

    font-size:40px;

    color:#0A66FF;

    margin-bottom:18px;

}

.industry-card h5{

    margin:0;

    font-weight:600;

    color:#0F172A;

}
/*=========================================
            OUR PROCESS
=========================================*/

.process-section{

    padding:100px 0;

    background:#ffffff;

}

.process-card{

    background:#fff;

    border:1px solid #eef2f7;

    border-radius:22px;

    padding:35px 20px;

    text-align:center;

    position:relative;

    transition:.35s;

    height:100%;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.process-number{

    position:absolute;

    top:18px;

    right:20px;

    font-size:14px;

    font-weight:700;

    color:#0A66FF;

    opacity:.25;

}

.process-icon{

    width:75px;

    height:75px;

    margin:0 auto 20px;

    border-radius:20px;

    background:linear-gradient(135deg,#0A66FF,#06B6D4);

    display:flex;

    align-items:center;

    justify-content:center;

}

.process-icon i{

    color:#fff;

    font-size:30px;

}

.process-card h5{

    font-weight:700;

    color:#0F172A;

    margin-bottom:15px;

}

.process-card p{

    color:#64748B;

    font-size:15px;

    line-height:1.7;

    margin-bottom:0;

}
/*=========================================
        BUSINESS HIGHLIGHTS
=========================================*/

.stats-section{

    padding:90px 0;

    background:linear-gradient(135deg,#0A66FF,#06B6D4);

}

.stat-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    color:#fff;

    border:1px solid rgba(255,255,255,.18);

    transition:.35s;

    height:100%;

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.18);

}

.stat-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    margin:0 auto 25px;

    background:rgba(255,255,255,.18);

    display:flex;

    align-items:center;

    justify-content:center;

}

.stat-icon i{

    font-size:34px;

}

.stat-card h3{

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;

}

.stat-card p{

    margin:0;

    line-height:1.8;

    opacity:.95;

}
/*=========================================
                CTA
=========================================*/

.cta-section{

    padding:100px 0;
    background:#F8FAFC;

}

.cta-box{

    background:linear-gradient(135deg,#0A66FF,#06B6D4);
    border-radius:30px;
    padding:70px;
    color:#fff;
    position:relative;
    overflow:hidden;

}

.cta-box::before{

    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-150px;
    right:-100px;

}

.cta-tag{

    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
    letter-spacing:1px;

}

.cta-box h2{

    font-size:42px;
    font-weight:700;
    margin-bottom:20px;

}

.cta-box p{

    opacity:.95;
    line-height:1.9;
    max-width:650px;
    margin-bottom:0;

}

.cta-box .btn{

    border-radius:12px;
    padding:14px 30px;
    font-weight:600;

}

.btn-outline-light:hover{

    color:#0A66FF;

}

@media(max-width:991px){

    .cta-box{

        padding:45px 30px;
        text-align:center;

    }

    .cta-box h2{

        font-size:32px;

    }

    .cta-box .btn{

        width:100%;
        margin-top:15px;

    }

}
/*=========================================
        CONTACT PREVIEW
=========================================*/

.contact-preview{

    background:#ffffff;

    padding:100px 0;

}

.contact-card{

    background:#fff;

    padding:40px;

    border-radius:24px;

    border:1px solid #eef2f7;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

}

.contact-item{

    display:flex;

    gap:18px;

    margin-top:30px;

    align-items:flex-start;

}

.contact-item i{

    width:55px;

    height:55px;

    border-radius:14px;

    background:#0A66FF;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}

.contact-card .form-control{

    border-radius:12px;

    min-height:52px;

    border:1px solid #dbe4ef;

    box-shadow:none;

}

.contact-card textarea.form-control{

    min-height:140px;

    resize:none;

}

.contact-card .form-control:focus{

    border-color:#0A66FF;

    box-shadow:0 0 0 .2rem rgba(10,102,255,.12);

}

/* ==========================================
   Large Tablets (≤1199px)
========================================== */

@media (max-width:1199.98px){

    .hero-title{
        font-size:48px;
    }

    .section-title{
        font-size:38px;
    }

    .cta-box{
        padding:60px;
    }

    .industry-feature{
        padding:35px;
    }

}

/* ==========================================
   Tablets (≤991px)
========================================== */

@media (max-width:991.98px){

    section{
        padding:130px 0 !important;
    }

    .section-title{
        font-size:34px;
        text-align:center;
    }

    .section-description{
        text-align:center;
    }

    .section-tag{
        display:table;
        margin:auto;
    }

    /* HERO */

    .hero-section{
        text-align:center;
        padding-top:120px;
    }

    .hero-title{
        font-size:42px;
    }

    .hero-text{
        margin:auto;
        margin-top:25px;
    }

    .hero-buttons{

        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .hero-buttons .btn{
        width:100%;
        margin:0 !important;
    }

    .hero-stats{
        justify-content:center;
        margin-top:40px;
        gap:40px;
    }

    .hero-image-box{
        margin-top:70px;
    }

    .floating-card{
        transform:scale(.9);
    }

    /* ABOUT */

    .about-section{
        text-align:center;
    }

    .experience-card{

        position:relative;

        right:auto;
        bottom:auto;

        display:inline-block;

        margin-top:20px;
    }

    .about-feature{
        justify-content:center;
    }

    /* WHY CHOOSE */

    .why-us-section{
        text-align:center;
    }

    /* INDUSTRIES */

    .industry-feature{
        text-align:center;
        margin-bottom:20px;
    }

    /* PROCESS */

    .process-card{
        margin-bottom:10px;
    }

    /* CTA */

    .cta-box{
        text-align:center;
        padding:45px;
    }

    .cta-box .btn{
        width:100%;
        margin-top:15px;
    }

    /* CONTACT */

    .contact-preview{
        text-align:center;
    }

    .contact-item{
        justify-content:center;
    }

    /* FOOTER */

    .footer{

        text-align:center;

    }

    .social-icons{

        justify-content:center;

    }

}
/* ==========================================
   Mobile Landscape (≤767px)
========================================== */

@media (max-width:767.98px){

    section{

        padding:130px 0 !important;

    }

    .hero-title{

        font-size:36px;

    }

    .section-title{

        font-size:30px;

    }

    .hero-text{

        font-size:16px;

    }

    .hero-stats{

        flex-direction:column;

        gap:20px;

    }

    .hero-image-box img{

        max-width:100%;

    }

    .floating-card{

        position:relative;

        display:inline-flex;

        margin:10px;

        left:auto;
        right:auto;
        top:auto;
        bottom:auto;

    }

    .service-card{

        padding:30px;

    }

    .feature-box{

        padding:25px;

    }

    .industry-feature{

        padding:30px;

    }

    .contact-card{

        padding:25px;

    }

    .cta-box{

        padding:35px 25px;

    }

}
/* ==========================================
   Small Phones (≤575px)
========================================== */

@media (max-width:575.98px){

    body{

        font-size:15px;

    }

    .hero-section{

        padding-top:100px;

    }

    .hero-title{

        font-size:30px;

        line-height:1.3;

    }

    .section-title{

        font-size:26px;

    }

    .hero-badge{

        font-size:13px;

        padding:8px 15px;

    }

    .hero-buttons .btn{

        padding:12px;

        font-size:15px;

    }

    .hero-stats h3{

        font-size:26px;

    }

    .service-card,
    .feature-box,
    .industry-card,
    .process-card,
    .stat-card{

        padding:25px;

    }

    .industry-main-icon{

        width:65px;
        height:65px;

    }

    .industry-main-icon i{

        font-size:28px;

    }

    .contact-item{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

    .footer-logo{

        width:180px;

    }

}
/* ==========================================
   Back To Top Button
========================================== */

/* Tablets */
@media (max-width: 991.98px) {

    #backToTop {
        width: 46px;
        height: 46px;
        right: 20px;
        bottom: 20px;
        font-size: 16px;
    }

}

/* Mobile */
@media (max-width: 767.98px) {

    #backToTop {
        width: 42px;
        height: 42px;
        right: 15px;
        bottom: 15px;
        font-size: 15px;
    }

}

/* Small Mobile */
@media (max-width: 575.98px) {

    #backToTop {
        width: 40px;
        height: 40px;
        right: 12px;
        bottom: 12px;
        font-size: 14px;
        border-radius: 12px;
    }

}

/*=========================================
            PAGE HERO
=========================================*/

.page-hero{

    padding:160px 0 100px;

    background:linear-gradient(135deg,#F8FBFF,#EEF6FF);

}

.page-tag{

    display:inline-block;

    background:#EAF2FF;

    color:#0A66FF;

    padding:8px 18px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.page-hero h1{

    font-size:52px;

    font-weight:700;

    color:#0F172A;

    line-height:1.2;

    margin-bottom:25px;

}

.page-hero p{

    color:#64748B;

    font-size:18px;

    line-height:1.9;

    max-width:650px;

}

.breadcrumb{

    margin-top:30px;

    background:none;

    padding:0;

}

.breadcrumb-item a{

    color:#0A66FF;

    text-decoration:none;

}

.breadcrumb-item.active{

    color:#64748B;

}
@media(max-width:991px){

    .page-hero{

        text-align:center;

        padding:130px 0 70px;

    }

    .page-hero h1{

        font-size:40px;

    }

}

@media(max-width:767px){

    .page-hero h1{

        font-size:32px;

    }

    .page-hero p{

        font-size:16px;

    }

}
/*=========================================
            OUR STORY
=========================================*/

.our-story-section{

    padding:100px 0;

    background:#ffffff;

}

.story-image{

    position:relative;

}

.story-image img{

    width:100%;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.story-badge{

    position:absolute;

    bottom:25px;

    left:25px;

    background:#0A66FF;

    color:#fff;

    padding:22px 28px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(10,102,255,.25);

}

.story-badge h3{

    margin:0;

    font-size:26px;

    font-weight:700;

}

.story-badge span{

    font-size:15px;

    opacity:.9;

}

.story-feature{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 0;

    font-weight:600;

    color:#0F172A;

}

.story-feature i{

    color:#0A66FF;

    font-size:18px;

}
/*=========================================
            OUR STORY
=========================================*/

/* Laptop */

@media (max-width:1199.98px){

    .story-badge{

        padding:18px 22px;

    }

}

/* Tablet */

@media (max-width:991.98px){

    .our-story-section{

        text-align:center;

    }

    .story-image{

        margin-bottom:30px;

    }

    .story-badge{

        position:relative;

        left:auto;
        bottom:auto;

        display:inline-block;

        margin-top:20px;

    }

    .story-feature{

        justify-content:center;

    }

}

/* Mobile */

@media (max-width:767.98px){

    .our-story-section{

        padding:70px 0;

    }

    .story-badge{

        width:100%;

        padding:18px;

    }

    .story-badge h3{

        font-size:22px;

    }

}

/* Small Mobile */

@media (max-width:575.98px){

    .story-image img{

        border-radius:18px;

    }

    .story-feature{

        font-size:15px;

    }

}
/*=========================================
        VISION & MISSION
=========================================*/

.vision-mission-section{

    padding:100px 0;

    background:#F8FAFC;

}

.vision-card,
.mission-card{

    border-radius:24px;

    padding:45px;

    height:100%;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.vision-card{

    background:linear-gradient(135deg,#0A66FF,#06B6D4);

    color:#fff;

}

.mission-card{

    background:#ffffff;

    border:1px solid #E6EDF5;

    box-shadow:0 20px 45px rgba(0,0,0,.05);

}

.vision-card:hover,
.mission-card:hover{

    transform:translateY(-10px);

}

.vm-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

    font-size:34px;

}

.vision-card .vm-icon{

    background:rgba(255,255,255,.15);

    color:#fff;

}

.mission-card .vm-icon{

    background:linear-gradient(135deg,#0A66FF,#06B6D4);

    color:#fff;

}

.vision-card h3,
.mission-card h3{

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;

}

.vision-card p{

    line-height:1.9;

    opacity:.95;

    margin-bottom:0;

}

.mission-card p{

    color:#64748B;

    line-height:1.9;

    margin-bottom:0;

}
/*=========================================
        VISION & MISSION
=========================================*/

@media (max-width:1199.98px){

    .vision-card,
    .mission-card{

        padding:40px;

    }

}

@media (max-width:991.98px){

    .vision-mission-section{

        padding:80px 0;

    }

    .vision-card,
    .mission-card{

        text-align:center;

    }

    .vm-icon{

        margin:0 auto 25px;

    }

}

@media (max-width:767.98px){

    .vision-mission-section{

        padding:70px 0;

    }

    .vision-card,
    .mission-card{

        padding:30px;

    }

    .vision-card h3,
    .mission-card h3{

        font-size:26px;

    }

}

@media (max-width:575.98px){

    .vision-card,
    .mission-card{

        padding:25px;

        border-radius:18px;

    }

    .vm-icon{

        width:65px;

        height:65px;

        font-size:28px;

        border-radius:16px;

    }

}
/*=========================================
        TECHNOLOGIES
=========================================*/

.tech-section{

    padding:90px 0;
    background:#fff;

}

.tech-grid{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;

}

.tech-grid span{

    padding:12px 24px;

    background:#F8FAFC;

    border:1px solid #E5ECF5;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.tech-grid span:hover{

    background:#0A66FF;
    color:#fff;
    border-color:#0A66FF;

}
/*=========================================
        INDUSTRIES
=========================================*/

.mini-industries{

    padding:90px 0;
    background:#F8FAFC;

}

.mini-industries .col-lg-3{

    background:#fff;

    padding:22px;

    border-radius:15px;

    font-weight:600;

    border:1px solid #E6EDF5;

    transition:.3s;

}

.mini-industries .col-lg-3:hover{

    background:#0A66FF;

    color:#fff;

}
/*=========================================
        PROCESS
=========================================*/

.about-process{

    padding:90px 0;

}

.process-flow{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

    flex-wrap:wrap;

}

.process-flow span{

    background:#0A66FF;

    color:#fff;

    padding:12px 22px;

    border-radius:30px;

    font-weight:600;

}

.process-flow i{

    color:#0A66FF;

    font-size:22px;

}
/*=========================================
            ABOUT CTA
=========================================*/

.about-cta{

    padding:90px 0;

    background:#F8FAFC;

}
/*=========================================
        ABOUT PAGE
=========================================*/

@media (max-width:991.98px){

    .tech-grid{

        justify-content:center;

    }

    .process-flow{

        gap:10px;

    }

}

@media (max-width:767.98px){

    .process-flow{

        flex-direction:column;

    }

    .process-flow i{

        transform:rotate(90deg);

    }

    .tech-grid span{

        padding:10px 18px;

        font-size:14px;

    }

    .mini-industries .col-lg-3{

        padding:18px;

    }

}

@media (max-width:575.98px){

    .about-cta .btn{

        display:block;

        width:100%;

        margin:10px 0 !important;

    }

}
/*=========================================
            SERVICES PAGE
=========================================*/

.services-intro{

    padding:90px 0;

    background:#fff;

}

.services-intro .section-description{

    max-width:800px;

    margin:auto;

}
/*=========================================
        SERVICES PAGE
=========================================*/

@media(max-width:991.98px){

    .services-intro{

        padding:70px 0;

    }

}

@media(max-width:767.98px){

    .services-intro{

        padding:60px 0;

    }

}
/*=========================================
            SERVICES GRID
=========================================*/

.services-section{

    padding:100px 0;

    background:#F8FAFC;

}

.service-box{

    background:#fff;

    border-radius:22px;

    padding:35px;

    height:100%;

    border:1px solid #E8EEF5;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.04);

}

.service-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.08);

}

.service-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:linear-gradient(135deg,#0A66FF,#06B6D4);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

}

.service-box h3{

    font-size:26px;

    font-weight:700;

    margin-bottom:18px;

}

.service-box p{

    color:#64748B;

    line-height:1.8;

}

.service-box ul{

    list-style:none;

    padding:0;

    margin:25px 0;

}

.service-box li{

    margin-bottom:12px;

    display:flex;

    gap:10px;

    align-items:flex-start;

}

.service-box li i{

    color:#0A66FF;

}

.service-buttons{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.service-buttons .btn{

    flex:1;

    border-radius:10px;

}
/*=========================================
        SERVICES GRID
=========================================*/

@media(max-width:991.98px){

    .services-section{

        padding:80px 0;

    }

}

@media(max-width:767.98px){

    .services-section{

        padding:70px 0;

    }

    .service-box{

        padding:30px;

    }

    .service-buttons{

        flex-direction:column;

    }

}

@media(max-width:575.98px){

    .service-icon{

        width:65px;

        height:65px;

        font-size:28px;

    }

    .service-box h3{

        font-size:22px;

    }

}
/*=========================================
        WHY CHOOSE SERVICES
=========================================*/

.why-services-section{

    padding:100px 0;

    background:#ffffff;

}

.feature-card{

    background:#F8FAFC;

    border:1px solid #E8EEF5;

    border-radius:22px;

    padding:35px;

    text-align:center;

    height:100%;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-8px);

    border-color:#0A66FF;

    box-shadow:0 20px 40px rgba(10,102,255,.08);

}

.feature-icon{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:18px;

    background:linear-gradient(135deg,#0A66FF,#06B6D4);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

}

.feature-card h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.feature-card p{

    color:#64748B;

    margin:0;

    line-height:1.8;

}
/*=========================================
    WHY CHOOSE SERVICES
=========================================*/

@media (max-width:991.98px){

    .why-services-section{

        padding:80px 0;

    }

}

@media (max-width:767.98px){

    .why-services-section{

        padding:70px 0;

    }

    .feature-card{

        padding:30px;

    }

}

@media (max-width:575.98px){

    .feature-icon{

        width:60px;

        height:60px;

        font-size:26px;

        border-radius:16px;

    }

    .feature-card h4{

        font-size:20px;

    }

}
/*=========================================
                FAQ
=========================================*/

.faq-section{

    padding:100px 0;

    background:#F8FAFC;

}

.faq-section .accordion-item{

    border:none;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

}

.faq-section .accordion-button{

    background:#fff;

    font-weight:600;

    font-size:17px;

    padding:22px 25px;

    box-shadow:none;

}

.faq-section .accordion-button:not(.collapsed){

    background:#0A66FF;

    color:#fff;

}

.faq-section .accordion-button:focus{

    box-shadow:none;

}

.faq-section .accordion-body{

    background:#fff;

    color:#64748B;

    line-height:1.8;

    padding:22px 25px;

}
/*=========================================
                FAQ
=========================================*/

@media (max-width:991.98px){

    .faq-section{

        padding:80px 0;

    }

}

@media (max-width:767.98px){

    .faq-section{

        padding:70px 0;

    }

    .faq-section .accordion-button{

        font-size:16px;

        padding:18px 20px;

    }

    .faq-section .accordion-body{

        padding:18px 20px;

    }

}

@media (max-width:575.98px){

    .faq-section .accordion-button{

        font-size:15px;

    }

}
#serviceModal .modal-content{

    border:none;

    border-radius:20px;

    padding:10px;

}

#serviceModal .modal-header{

    border-bottom:1px solid #eee;

}

#serviceModal h4{

    font-weight:700;

}

#modalFeatures{

    padding-left:18px;

}

#modalFeatures li{

    margin-bottom:10px;

}
/*=========================================
            CONTACT PAGE
=========================================*/

.contact-section{

    padding:100px 0;

    background:#F8FAFC;

}

.contact-info{

    background:#0A66FF;

    color:#fff;

    border-radius:24px;

    padding:40px;

    height:100%;

}

.contact-info h3{

    font-weight:700;

    margin-bottom:20px;

}

.contact-item{

    display:flex;

    gap:18px;

    margin-top:30px;

}

.contact-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    background:rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.contact-form-box{

    background:#fff;

    border-radius:24px;

    padding:40px;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

}

.contact-form-box .form-control,
.contact-form-box .form-select{

    min-height:55px;

    border-radius:12px;

    box-shadow:none;

}

.contact-form-box textarea{

    min-height:160px;

    resize:none;

}
/*=========================================
            CONTACT PAGE
=========================================*/

@media (max-width:991.98px){

    .contact-section{

        padding:80px 0;

    }

    .contact-info{

        text-align:center;

    }

    .contact-item{

        justify-content:center;

    }

}

@media (max-width:767.98px){

    .contact-section{

        padding:70px 0;

    }

    .contact-info,
    .contact-form-box{

        padding:30px;

    }

}

@media (max-width:575.98px){

    .contact-item{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

    .contact-icon{

        margin-bottom:10px;

    }

    .contact-form-box .btn{

        width:100%;

    }

}
/*=========================================
            SUPPORT PAGE
=========================================*/

.support-options{

    padding:90px 0;

    background:#fff;

}

.support-card{

    padding:35px;

    border-radius:20px;

    background:#F8FAFC;

    text-align:center;

    height:100%;

    border:1px solid #E5ECF5;

    transition:.3s;

}

.support-card:hover{

    transform:translateY(-8px);

    border-color:#0A66FF;

}

.support-icon{

    width:70px;

    height:70px;

    margin:auto auto 25px;

    border-radius:18px;

    background:linear-gradient(135deg,#0A66FF,#06B6D4);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

}

.support-form-section{

    padding:100px 0;

    background:#F8FAFC;

}

.support-form{

    background:#fff;

    padding:45px;

    border-radius:24px;

    box-shadow:0 20px 40px rgba(0,0,0,.06);

}
@media(max-width:991.98px){

    .support-options,
    .support-form-section{

        padding:80px 0;

    }

}

@media(max-width:767.98px){

    .support-options,
    .support-form-section{

        padding:70px 0;

    }

    .support-form{

        padding:30px;

    }

}

@media(max-width:575.98px){

    .support-icon{

        width:60px;

        height:60px;

        font-size:26px;

    }

    .support-form .btn{

        width:100%;

    }

}
/*=========================================
            CAREERS PAGE
=========================================*/

.career-benefits,
.job-section,
.career-form-section{

    padding:100px 0;

}

.career-benefits{

    background:#F8FAFC;

}

.benefit-card,
.job-card{

    background:#fff;

    border:1px solid #E5ECF5;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.3s;

    height:100%;

}

.benefit-card:hover,
.job-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.06);

}

.benefit-card i{

    font-size:42px;

    color:#0A66FF;

    margin-bottom:20px;

}

.career-form{

    background:#fff;

    padding:45px;

    border-radius:24px;

    box-shadow:0 20px 40px rgba(0,0,0,.05);

}
@media (max-width:991.98px){

    .career-benefits,
    .job-section,
    .career-form-section{

        padding:80px 0;

    }

}

@media (max-width:767.98px){

    .career-benefits,
    .job-section,
    .career-form-section{

        padding:70px 0;

    }

    .career-form{

        padding:30px;

    }

}

@media (max-width:575.98px){

    .benefit-card,
    .job-card{

        padding:25px;

    }

    .career-form .btn{

        width:100%;

    }

}
/*=========================================
            FAQ PAGE
=========================================*/

.faq-page{

    padding:100px 0;

    background:#F8FAFC;

}

.faq-nav{

    top:120px;

    background:#fff;

    border-radius:20px;

    padding:25px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.faq-nav a{

    display:block;

    padding:12px 18px;

    color:#334155;

    text-decoration:none;

    border-radius:10px;

    margin-bottom:8px;

    transition:.3s;

    font-weight:500;

}

.faq-nav a:hover{

    background:#0A66FF;

    color:#fff;

}

.faq-heading{

    margin-bottom:30px;

    font-weight:700;

    color:#0F172A;

}
@media(max-width:991.98px){

.faq-nav{

position:relative;

top:0;

margin-bottom:40px;

}

}

@media(max-width:767.98px){

.faq-page{

padding:70px 0;

}

}
/*=========================================
            LEGAL PAGES
=========================================*/

.legal-section{

    padding:100px 0;

    background:#F8FAFC;

}

.legal-sidebar{

    position:sticky;

    top:120px;

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.legal-sidebar h5{

    margin-bottom:20px;

    font-weight:700;

}

.legal-sidebar a{

    display:block;

    color:#475569;

    text-decoration:none;

    padding:10px 0;

    transition:.3s;

}

.legal-sidebar a:hover{

    color:#0A66FF;

    padding-left:8px;

}

.legal-content{

    background:#fff;

    border-radius:24px;

    padding:50px;

    box-shadow:0 20px 40px rgba(0,0,0,.05);

}

.legal-date{

    background:#EFF6FF;

    color:#0A66FF;

    padding:15px 20px;

    border-left:4px solid #0A66FF;

    border-radius:10px;

    margin-bottom:40px;

}

.legal-content section{

    margin-bottom:45px;

}

.legal-content h2{

    font-size:28px;

    font-weight:700;

    margin-bottom:20px;

}

.legal-content p{

    color:#64748B;

    line-height:1.9;

}

.legal-content ul{

    padding-left:22px;

}

.legal-content li{

    margin-bottom:12px;

    color:#64748B;

}
/*=========================================
        LEGAL PAGES
=========================================*/

@media(max-width:991.98px){

    .legal-section{

        padding:80px 0;

    }

    .legal-sidebar{

        position:relative;

        top:0;

        margin-bottom:40px;

    }

}

@media(max-width:767.98px){

    .legal-section{

        padding:70px 0;

    }

    .legal-content{

        padding:30px;

    }

}

@media(max-width:575.98px){

    .legal-content{

        padding:25px;

    }

    .legal-content h2{

        font-size:24px;

    }

}
/*=========================================
PAGE BANNER
==========================================*/

.page-banner{

    padding:150px 0 80px;

    background:linear-gradient(135deg,#0f172a,#1e3a8a);

    position:relative;

    overflow:hidden;

}

.page-banner::before{

    content:"";

    position:absolute;

    top:-100px;

    left:-100px;

    width:250px;

    height:250px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

}

.page-banner::after{

    content:"";

    position:absolute;

    bottom:-120px;

    right:-120px;

    width:300px;

    height:300px;

    background:rgba(255,255,255,.04);

    border-radius:50%;

}

.page-banner h1{

    color:#fff;

    font-size:42px;

    font-weight:700;

    margin-bottom:15px;

}

.page-banner .breadcrumb{

    background:none;

}

.page-banner .breadcrumb-item,

.page-banner .breadcrumb-item a{

    color:rgba(255,255,255,.85);

    text-decoration:none;

    font-size:15px;

}

.page-banner .breadcrumb-item.active{

    color:#fff;

}

.page-banner .breadcrumb-item + .breadcrumb-item::before{

    color:rgba(255,255,255,.5);

}

@media(max-width:768px){

.page-banner{

    padding:90px 0 60px;

}

.page-banner h1{

    font-size:30px;

}

}