*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}


body{

    background:#061426;
    color:white;
    overflow-x:hidden;

}


a{
    text-decoration:none;
    color:inherit;
}



/* NAVBAR */

.navbar{

    height:85px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 8%;
    border-bottom:1px solid rgba(0,170,255,0.15);
    background:#061426;

}


.logo{

    font-size:26px;
    font-weight:700;
    background:linear-gradient(90deg,#ffffff,#00aaff);
    -webkit-background-clip:text;
    color:transparent;

}



.nav-links{

    display:flex;
    align-items:center;
    gap:30px;

}



.nav-links a{

    color:#d9e6f5;
    font-size:15px;
    transition:.3s;

}



.nav-links a:hover{

    color:#00aaff;

}



.audit-btn{

    background:linear-gradient(90deg,#007bff,#00c6ff);
    padding:13px 28px;
    border-radius:30px;
    color:white !important;
    font-weight:600;

}





/* HERO */


.hero{

    max-width:1100px;
    margin:auto;
    padding:100px 20px;
    text-align:center;

}



.hero span{

    color:#00aaff;
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;

}



.hero h1{

    font-size:55px;
    line-height:1.2;
    margin:20px 0;

    background:linear-gradient(90deg,#8881f0,#00aaff);
    -webkit-background-clip:text;
    color:transparent;

}



.hero p{

    max-width:750px;
    margin:auto;
    color:#b8c7d9;
    font-size:18px;
    line-height:1.8;

}



.hero a{

    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:35px;
    padding:16px 35px;
    border-radius:40px;
    background:linear-gradient(90deg,#007bff,#00c6ff);
    font-weight:600;

}







/* STATS */


.stats{

    max-width:1100px;
    margin:0 auto 100px;
    padding:30px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

}


.stats div{

    background:rgba(255,255,255,0.06);
    border:1px solid rgba(0,170,255,.2);
    padding:30px;
    border-radius:20px;
    text-align:center;

}


.stats h2{

    font-size:40px;
    color:#00aaff;

}


.stats p{

    margin-top:10px;
    color:#b8c7d9;

}






/* COMMON HEADING */


.heading{

    text-align:center;
    margin-bottom:50px;

}



.heading span{

    color:#00aaff;
    letter-spacing:3px;
    font-size:14px;

}



.heading h1{

    font-size:42px;
    margin-top:15px;

}







/* PROJECTS */


.projects{

    max-width:1200px;
    margin:auto;
    padding:80px 20px;

}



.project-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

}



.project-card{

    background:rgba(255,255,255,.06);
    border:1px solid rgba(0,170,255,.25);
    border-radius:25px;
    padding:35px;
    transition:.35s;

}



.project-card:hover{

    transform:translateY(-10px);
    border-color:#00aaff;
    box-shadow:0 20px 40px rgba(0,170,255,.2);

}



.project-image{

    height:160px;
    border-radius:20px;
    background:#092642;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;

}



.project-image i{

    font-size:65px;
    color:#00aaff;

}



.project-card h2{

    font-size:28px;
    margin-bottom:15px;

}



.project-card p{

    color:#b8c7d9;
    line-height:1.8;
    margin-bottom:25px;

}



.project-card a{

    color:#00aaff;
    font-weight:600;

}







/* EXPERTISE */


.expertise{

    padding:80px 20px;
    max-width:1200px;
    margin:auto;

}



.expertise-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}



.expertise-grid div{

    background:rgba(255,255,255,.06);
    padding:35px;
    border-radius:25px;
    border:1px solid rgba(0,170,255,.2);

}



.expertise-grid i{

    font-size:40px;
    color:#00aaff;
    margin-bottom:20px;

}




.expertise-grid h2{

    margin-bottom:15px;

}



.expertise-grid p{

    color:#b8c7d9;
    line-height:1.7;

}







/* PROCESS */


.process{

    padding:80px 20px;
    max-width:1200px;
    margin:auto;

}



.process-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

}



.process-grid div{

    background:#091d35;
    padding:30px;
    border-radius:20px;

}



.process-grid h2{

    color:#00aaff;
    font-size:40px;

}



.process-grid h3{

    margin:15px 0;

}



.process-grid p{

    color:#b8c7d9;

}






/* CTA */


.cta{

    margin:80px 20px;
    padding:70px 20px;
    text-align:center;

    background:linear-gradient(
        135deg,
        rgba(0,123,255,.25),
        rgba(0,198,255,.15)
    );

    border-radius:30px;

}



.cta h1{

    font-size:42px;

}



.cta p{

    margin:20px 0;
    color:#d0deef;

}



.cta a{

    display:inline-block;
    padding:15px 35px;
    background:white;
    color:#061426;
    border-radius:40px;
    font-weight:700;

}







/* RESPONSIVE */


@media(max-width:900px){


.hero h1{

    font-size:38px;

}


.stats{

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

}


.project-grid{

    grid-template-columns:1fr;

}


.expertise-grid{

    grid-template-columns:1fr;

}


.process-grid{

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

}

}



@media(max-width:600px){


.navbar{

    padding:0 20px;

}


.logo{

    font-size:20px;

}


.nav-links{

    gap:15px;

}


.stats{

    grid-template-columns:1fr;

}


.process-grid{

    grid-template-columns:1fr;

}


.heading h1{

    font-size:32px;

}


.cta h1{

    font-size:30px;

}


}

/* SERVICES */


.services{

    max-width:1200px;
    margin:auto;
    padding:80px 20px;

}



.heading p{

    color:#b8c7d9;
    max-width:700px;
    margin:20px auto;
    line-height:1.7;

}



.service-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}



.service-card{

    background:rgba(255,255,255,0.06);
    border:1px solid rgba(0,170,255,.25);
    border-radius:25px;
    padding:35px;
    transition:.35s;

}



.service-card:hover{

    transform:translateY(-10px);
    border-color:#00aaff;
    box-shadow:0 20px 40px rgba(0,170,255,.2);

}



.service-icon{

    height:70px;
    width:70px;
    border-radius:20px;
    background:#092642;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;

}



.service-icon i{

    font-size:32px;
    color:#00aaff;

}



.service-card h2{

    font-size:24px;
    margin-bottom:15px;

}



.service-card p{

    color:#b8c7d9;
    line-height:1.7;
    margin-bottom:25px;

}



.service-card a{

    color:#00aaff;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;

}



@media(max-width:900px){

.service-grid{

    grid-template-columns:1fr;

}

}


.theme-toggle{

    width:45px;
    height:45px;
    border-radius:50%;
    border:1px solid rgba(0,170,255,.3);
    background:#091d35;
    color:#00aaff;
    font-size:18px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;

}


.theme-toggle:hover{

    transform:rotate(20deg);
    background:#00aaff;
    color:white;

}



/* LIGHT MODE */

body.light-mode{

    background:#f5f9ff;
    color:#061426;

}


body.light-mode .navbar{

    background:#ffffff;
    border-color:#dbe8f5;

}


body.light-mode .nav-links a{

    color:#061426;

}


body.light-mode .hero p,
body.light-mode .service-card p,
body.light-mode .stats p,
body.light-mode .heading p{

    color:#52657a;

}


body.light-mode .service-card,
body.light-mode .stats div{

    background:white;
    border-color:#d8e8f7;

}


body.light-mode .service-icon{

    background:#e8f5ff;

}


body.light-mode .theme-toggle{

    background:#e8f5ff;
    color:#007bff;

}