*{
        margin:0;
        padding:0;
        box-sizing:border-box;
    }

    body{

        font-family:'Manrope',sans-serif;

        color:#1F2937;

        overflow-x:hidden;
        
    /*     background-image:url('../images/bgpattern.png');*/

    /*background-repeat:repeat;*/

    /*background-size:700px;*/

    /*background-attachment:fixed;*/


        /*background:*/
        /*radial-gradient(circle at top left,rgba(60,124,179,.10),transparent 30%),*/
        /*radial-gradient(circle at top right,rgba(102,70,156,.08),transparent 30%),*/
        /*radial-gradient(circle at bottom right,rgba(4,168,82,.08),transparent 35%),*/
        /*linear-gradient(180deg,#ffffff,#F8FBFF,#F5F9FF,#F7FFF9);*/
        
         background:
        radial-gradient(
            ellipse 700px 500px at 0% 0%,
            rgba(59, 130, 246, 0.12),
            transparent 70%
        ),

        radial-gradient(
            ellipse 650px 500px at 100% 15%,
            rgba(124, 58, 237, 0.11),
            transparent 70%
        ),

        radial-gradient(
            ellipse 700px 450px at 50% 55%,
            rgba(99, 102, 241, 0.055),
            transparent 70%
        ),

        radial-gradient(
            ellipse 600px 450px at 0% 100%,
            rgba(14, 165, 233, 0.07),
            transparent 70%
        ),

        #F8FAFF;


    background-attachment: fixed;

    }

    .navbar{

        padding:10px 0;

    }

    .navbar-brand img{

        height:75px;

    }
    
    .nav-link.active{
    color:#3C7CB3 !important;
    font-weight:700;
}

.nav-link.active::after{
    width:calc(100% - 36px);
}

    .hero{

        min-height:80vh;

        display:flex;

        align-items:center;

        text-align:center;
        
         background:
        linear-gradient(
            rgba(255,255,255,.15),
            rgba(255,255,255,.25)
        ),
        url('../images/hero-bg.png');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    }
    
    .hero .container{

    position: relative;

    z-index: 5;

}

    .hero h1{

        font-size:68px;

        font-weight:800;

        line-height:1.15;

        color:#111827;

    }

    .hero h1 span{

        background:linear-gradient(90deg,#3C7CB3,#66469C,#04A852);

        -webkit-background-clip:text;

        -webkit-text-fill-color:transparent;

    }

    .hero p{

        max-width:720px;

        margin:30px auto;

        font-size:20px;

        color:#64748B;

        line-height:36px;

    }

    .hero-buttons{

        margin-top:45px;

    }

    .hero-buttons .btn{

        padding:14px 34px;

        border-radius:50px;

        font-weight:700;

        margin:8px;

    }

    .btn-primary{

        background:#3C7CB3;

        border:none;

    }

    .btn-primary:hover{

        background:#66469C;

    }

    .tech-stack{

        margin-top:45px;

    }

    .tech-stack span{

        display:inline-block;

        background:#fff;

        border:1px solid #E5E7EB;

        border-radius:30px;

        padding:10px 18px;

        margin:6px;

        font-size:14px;

        font-weight:600;

    }

    .hero-image{

        margin-top:70px;

    }

    .hero-image img{

        width:100%;

        max-width:900px;

        border-radius:24px;

        box-shadow:0 30px 80px rgba(0,0,0,.08);

    }

    
    
   

    @media(max-width:768px){

        .navbar-brand img{

            height:60px;

        }

        .hero{

            padding:40px 0;

        }

        .hero h1{

            font-size:40px;

        }

        .hero p{

            font-size:17px;

            line-height:30px;

        }

        .hero-buttons .btn{

            width:100%;

        }

    }

 
    
    .service-card,
.tech-card{

   
     background: linear-gradient(
        135deg,
        #F7F9FF 0%,
        #F8F5FF 100%
    );

    padding:35px;

    border-radius:18px;

    height:100%;

    
    
    border: 1px solid #E6D9F5;
 

    text-align:center;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

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

}



.service-card:hover,
.tech-card:hover{

    transform:translateY(-8px);
    border-color:#3C7CB3;

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

}

.service-card i,
.tech-card i{

    width:70px;

    height:70px;

    line-height:70px;

    border-radius:50%;

    background:#EEF5FF;

    color:#3C7CB3;

    font-size:28px;

    margin-bottom:25px;
    
    transition:.3s;

}

.service-card h4,
.tech-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.service-card p,
.tech-card p{

    color:#64748B;

    line-height:28px;

}
 .section-tag{

    display:inline-block;

    background:#EEF4FF;

    color:#2563EB;

    padding:8px 20px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

}

.tech-card{

    background:#fff;

    border:1px solid #EEF2F7;

    border-radius:18px;

    padding:30px;

    height:100%;

    transition:.35s;

}

.tech-card:hover{

    transform:translateY(-8px);

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

    border-color:#3C7CB3;

}

.tech-icon{

    width:65px;

    height:65px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    margin-bottom:20px;

}

.tech-icon.web{
    background:#EAF4FF;
    color:#2563EB;
}

.tech-icon.mobile{
    background:#ECFDF3;
    color:#16A34A;
}

.tech-icon.cloud{
    background:#EFF6FF;
    color:#0EA5E9;
}

.tech-icon.ai{
    background:#FFF7ED;
    color:#EA580C;
}

.tech-icon.analytics{
    background:#F5F3FF;
    color:#7C3AED;
}

.tech-icon.api{
    background:#ECFEFF;
    color:#0891B2;
}

.tech-icon.database{
    background:#F3F4F6;
    color:#374151;
}

.tech-icon.security{
    background:#FEF2F2;
    color:#DC2626;
}

.tech-card h5{

    font-weight:700;

    margin-bottom:20px;

}

.tech-stack{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

}

.tech-stack span{

    background:#F8FAFC;

    border:1px solid #E5E7EB;

    padding:8px 14px;

    border-radius:25px;

    font-size:13px;

    font-weight:600;

    transition:.3s;

}

.tech-stack span:hover{

    background:#2563EB;

    color:#fff;

    border-color:#2563EB;

}
.tech-card{

    background:#fff;
    border:1px solid #E9EEF5;
    border-radius:18px;
    padding:30px;
    height:100%;
    transition:.35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.04);

}

.tech-card:hover{

    transform:translateY(-8px);
    border-color:#3C7CB3;
    box-shadow:0 18px 40px rgba(60,124,179,.15);

}

.tech-icon{

    width:70px;
    height:70px;
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:20px;

}

.tech-icon.web{background:#EAF3FF;color:#2563EB;}
.tech-icon.mobile{background:#ECFDF3;color:#16A34A;}
.tech-icon.cloud{background:#EEF8FF;color:#0284C7;}
.tech-icon.ai{background:#FFF7ED;color:#EA580C;}
.tech-icon.analytics{background:#F5F3FF;color:#7C3AED;}
.tech-icon.api{background:#ECFEFF;color:#0891B2;}
.tech-icon.database{background:#F3F4F6;color:#374151;}
.tech-icon.security{background:#FEF2F2;color:#DC2626;}
.tech-icon.testing{background:#ECFDF5;color:#059669;}

.tech-card h5{

    font-weight:700;
    margin-bottom:15px;

}

.tech-card p{

    color:#64748B;
    line-height:26px;
    margin-bottom:20px;
    min-height:52px;

}

.tech-stack{

    display:flex;
    flex-wrap:wrap;
    gap:8px;

}

.tech-stack span{

    background:#F8FAFC;
    border:1px solid #E5E7EB;
    padding:7px 14px;
    border-radius:25px;
    font-size:13px;
    font-weight:600;
    transition:.3s;

}

.tech-stack span:hover{

    background:#3C7CB3;
    color:#fff;
    border-color:#3C7CB3;

}


.hero-stats{

    display:grid;

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

    gap:25px;

    margin-top:60px;

    padding-top:40px;

    border-top:1px solid #E5E7EB;

}

.stat-item{

    text-align:center;

}

.stat-item h2{

    font-size:34px;

    font-weight:800;

    margin-bottom:8px;

    color:#3C7CB3;

}

.stat-item p{

    margin:0;

    color:#64748B;

    font-size:14px;

    font-weight:600;

    line-height:22px;

}

@media(max-width:992px){

.hero-stats{

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

}

}

@media(max-width:576px){

.hero-stats{

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

}

.stat-item h2{

font-size:28px;

}

}
 
    .industry-card{

    background:#fff;

    border:1px solid #E8EDF5;

    border-radius:18px;

    padding:35px 30px;

    text-align:center;

    height:100%;

    transition:.3s;

}

.industry-card:hover{

    transform:translateY(-8px);

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

    border-color:#3C7CB3;

}

.industry-card i{

    width:70px;

    height:70px;

    line-height:70px;

    border-radius:50%;

    background:#EEF5FF;

    color:#3C7CB3;

    font-size:28px;

    margin-bottom:20px;

}

.industry-card h5{

    font-weight:700;

    margin-bottom:15px;

}

.industry-card p{

    color:#64748B;

    line-height:26px;

    margin-bottom:0;

}
 
    .header{

    background:#fff;

    position:sticky;

    top:0;

    z-index:999;

    border-bottom:1px solid #EEF2F7;

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

}

.navbar{

    padding:15px 0;

}

.navbar-brand img{

    height:65px;

}

.navbar-nav{

    gap:10px;

}

.nav-link{

    color:#374151;

    font-weight:600;

    padding:12px 18px !important;

    transition:.3s;

    position:relative;

}

.nav-link:hover{

    color:#3C7CB3;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:18px;

    bottom:6px;

    width:0;

    height:2px;

    background:#3C7CB3;

    transition:.3s;

}

.nav-link:hover::after{

    width:calc(100% - 36px);

}

.contact-btn{

    background:linear-gradient(135deg,#3C7CB3,#66469C);

    color:#fff;

    padding:12px 28px;

    border-radius:50px;

    font-weight:700;

    white-space:nowrap;

}

.contact-btn:hover{

    color:#fff;

    transform:translateY(-2px);

}

 
     .cta-section{

    padding:100px 0;

    background:#fff;

}

.cta-box{

    background:linear-gradient(135deg,#3C7CB3,#66469C);

    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:-120px;

    right:-120px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

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

    bottom:-100px;

    left:-80px;

}

.cta-box>*{

    position:relative;

    z-index:2;

}

.cta-tag{

    display:inline-block;

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

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    letter-spacing:1px;

    font-weight:600;

}

.cta-box h2{

    font-size:42px;

    font-weight:700;

    line-height:1.2;

}

.cta-box p{

    font-size:18px;

    line-height:1.8;

    opacity:.95;

    max-width:650px;

}

.cta-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

}

.cta-features span{

    font-weight:600;

}

.cta-features i{

    color:#7CFFB2;

    margin-right:8px;

}

.btn-light{

    color:#3C7CB3;

    font-weight:700;

    border-radius:50px;

    padding:14px 35px;

}

.btn-outline-light{

    border-radius:50px;

    padding:12px 30px;

}

@media(max-width:991px){

    .cta-box{

        padding:50px 35px;

        text-align:center;

    }

    .cta-box h2{

        font-size:34px;

    }

    .cta-features{

        justify-content:center;

    }

}

 .footer {
     background: linear-gradient(
        135deg,
        #F4F9FF 0%,
        #DCEEFF 12%,
        #8EB9E5 25%,
        #3C7CB3 55%,
        #66469C 100%
    );

    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative background glow */
.footer::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    filter: blur(80px);
}

.footer::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    filter: blur(70px);
}

.footer .container{
    position:relative;
    z-index:2;
}

.footer-title{
    color:#fff;
    font-weight:700;
    margin-bottom:20px;
}

.footer p,
.footer-contact,
.footer-links a{
    color:rgba(255,255,255,.85);
}

.footer p{color:#000 !important}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
    padding-left:8px;
}

.social-icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff;
    transition:.3s;
}

.social-icon:hover{
    background:#fff;
    color:#3C7CB3;
    transform:translateY(-4px);
}

.footer hr{
    border-color:rgba(255,255,255,.15);
}

.footer-bottom-link{
    color:rgba(255,255,255,.85);
    text-decoration:none;
}

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

.social-icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1E293B;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-icon:hover{
    background:linear-gradient(135deg,#3C7CB3,#66469C);
    color:#fff;
    transform:translateY(-3px);
}
 
 
 
 /* ================================
   STATS - RESPONSIVE
================================ */

.stats-section {
    position: relative;
    z-index: 10;

    margin-top: -35px;
    padding: 0 0 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    position: relative;

    min-width: 0;

    padding: 28px 20px;

    text-align: center;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #EEF2F7;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(15, 23, 42, .07);

    transition: all .3s ease;

    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-7px);

    box-shadow: 0 20px 45px rgba(30, 58, 138, .12);

    border-color: rgba(60, 124, 179, .25);
}

.stat-item h2 {
    margin: 0;

    font-size: 38px;

    line-height: 1;

    font-weight: 800;

    background: linear-gradient(
        135deg,
        #1E3A8A,
        #3C7CB3,
        #66469C
    );

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

.stat-item p {
    margin: 10px 0 0;

    color: #64748B;

    font-size: 14px;

    font-weight: 500;
}


/* ================================
   TABLET
================================ */

@media (max-width: 991px) {

    .stats-section {
        margin-top: -25px;
        padding: 0 20px 50px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);

        gap: 16px;

        max-width: 750px;
    }

    .stat-item {
        padding: 25px 20px;
    }

    .stat-item h2 {
        font-size: 36px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 575px) {

    .stats-section {
        margin-top: 0;

        padding: 30px 15px 45px;
    }

    .hero-stats {
        grid-template-columns: 1fr;

        gap: 14px;

        width: 100%;
    }

    .stat-item {
        width: 100%;

        padding: 22px 18px;

        border-radius: 16px;
    }

    .stat-item h2 {
        font-size: 34px;
    }

    .stat-item p {
        font-size: 14px;
    }

}


/* ================================
   VERY SMALL DEVICES
================================ */

@media (max-width: 360px) {

    .stats-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-item h2 {
        font-size: 30px;
    }

}