*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#020b2d;
}

.header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:rgba(2,10,45,.95);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:70px;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:30px;
}

.navbar ul li a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.navbar ul li a:hover{
    color:#00bfff;
}

.quote-btn{
    text-decoration:none;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    background:linear-gradient(90deg,#008cff,#00d4ff);
    font-weight:600;
}

.mobile-menu{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

@media(max-width:991px){

    .mobile-menu{
        display:block;
    }

    .quote-btn{
        display:none;
    }

    .navbar{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#02133f;
        display:none;
    }

    .navbar.show{
        display:block;
    }

    .navbar ul{
        flex-direction:column;
        padding:20px;
        gap:15px;
    }

    .logo img{
        height:55px;
    }
}

/* HERO SECTION */

.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
   
    padding:140px 0 80px;
    color:#fff;
  background:linear-gradient(rgba(2,10,45,.8),rgba(2,10,45,.8)),
    url('../images/bg-tech.jpg');
    background-size:cover;
    background-position:center;
}

.hero-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero-content{
    flex:1;
}

.hero-tag{
    color:#00cfff;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
}

.hero-content h1{
    font-size:65px;
    line-height:1.2;
    margin:20px 0;
}

.hero-content h1 span{
    color:#00cfff;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#d8d8d8;
    max-width:600px;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:15px;
}

.btn-primary{
    display:inline-block;
    padding:14px 30px;
    background:#00aaff;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

.btn-secondary{
    display:inline-block;
    padding:14px 30px;
    border:2px solid #00aaff;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    max-width:100%;
    width:600px;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#02133f;
}

.section-title p{
    color:#666;
    margin-top:10px;
}

/* SERVICES */

.services{
    padding:100px 0;
    background:#f7f9fc;
}

.service-grid{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-box{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-box:hover{
    transform:translateY(-10px);
}

.service-box i{
    font-size:45px;
    color:#00aaff;
    margin-bottom:20px;
}

.service-box h3{
    margin-bottom:15px;
    color:#02133f;
}

.service-box p{
    color:#666;
}

/* STATS */

.stats-section{
    padding:80px 0;
    background:#02133f;
}

.stats-grid{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-box{
    text-align:center;
    color:#fff;
}

.stat-box h2{
    font-size:50px;
    color:#00cfff;
}

.stat-box p{
    margin-top:10px;
}

/* ABOUT */

.about-home{
    padding:100px 0;
    background:#fff;
}

.about-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
}

.about-content{
    flex:1;
}

.about-content h2{
    font-size:42px;
    color:#02133f;
    margin-bottom:20px;
}

.about-content p{
    color:#666;
    line-height:1.8;
}

.about-content ul{
    list-style:none;
    margin:25px 0;
}

.about-content ul li{
    padding:8px 0;
    color:#333;
}

/* CTA */

.cta-section{
    padding:100px 20px;
    text-align:center;
    background:linear-gradient(135deg,#02133f,#0346b8);
    color:#fff;
}

.cta-section h2{
    font-size:45px;
    margin-bottom:15px;
}

.cta-section p{
    margin-bottom:30px;
    font-size:18px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-container,
    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-content h1{
        font-size:45px;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-buttons{
        justify-content:center;
    }
}

@media(max-width:768px){

    .service-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:35px;
    }

    .section-title h2,
    .about-content h2,
    .cta-section h2{
        font-size:30px;
    }
}

.footer{
    background:#010d2f;
    color:#fff;
    padding-top:70px;
}

.footer-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
    padding-bottom:50px;
}

.footer-logo{
    width:220px;
    margin-bottom:20px;
}

.footer-box h3{
    margin-bottom:25px;
    color:#00cfff;
}

.footer-box p{
    line-height:1.8;
    color:#ccc;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#00cfff;
    padding-left:5px;
}

.footer-box i{
    color:#00cfff;
    margin-right:10px;
}

.social-links{
    margin-top:20px;
}

.social-links a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#02225e;
    border-radius:50%;
    color:#fff;
    margin-right:10px;
    transition:.3s;
}

.social-links a:hover{
    background:#00aaff;
    transform:translateY(-3px);
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    padding:20px;
    color:#aaa;
}

/* Responsive */

@media(max-width:991px){

    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-links{
        justify-content:center;
    }

    .footer-logo{
        margin:auto auto 20px;
        display:block;
    }
}

.page-banner{
    background:linear-gradient(rgba(2,10,45,.85),rgba(2,10,45,.85)),
    url('../images/bg-tech.jpg');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
    padding:170px 20px 90px;
}

.page-banner h1{
    font-size:55px;
    margin-bottom:10px;
}

.about-page{
    padding:100px 0;
   background-color: white;
}

.about-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
}

.about-content{
    flex:1;
}

.about-content span{
    color:#00aaff;
    font-weight:600;
}

.about-content h2{
    margin:15px 0 25px;
    font-size:42px;
    color:#02133f;
}

.about-content p{
    line-height:1.8;
    color:#666;
    margin-bottom:15px;
}

.about-points{
    margin-top:25px;
}

.point{
    padding:10px 0;
    font-weight:600;
}

.why-us{
    background:#f8f9fb;
    padding:100px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-box{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.why-box i{
    font-size:45px;
    color:#00aaff;
    margin-bottom:20px;
}

.about-counter{
    background:#02133f;
    padding:80px 0;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.counter-box{
    text-align:center;
    color:#fff;
}

.counter-box h2{
    color:#00cfff;
    font-size:50px;
}

.mission-section{
    padding:100px 0;
    background-color: white;
}

.mission-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.mission-box{
    background:#f8f9fb;
    padding:40px;
    border-radius:15px;
}

.mission-box h3{
    color:#02133f;
    margin-bottom:15px;
}

.mission-box p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){

    .about-wrapper{
        flex-direction:column;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .counter-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .mission-wrapper{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .why-grid,
    .counter-grid{
        grid-template-columns:1fr;
    }

    .page-banner h1{
        font-size:38px;
    }

    .about-content h2{
        font-size:30px;
    }
}

/* SERVICES PAGE */

.services-page{
    padding:100px 0;
    background:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:50px;
    color:#00aaff;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
    color:#02133f;
}

.service-card p{
    color:#666;
    line-height:1.7;
}

/* PROCESS */

.process-section{
    padding:100px 0;
    background:#f8f9fb;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-box{
    background:#fff;
    padding:40px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.process-box span{
    display:inline-block;
    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:#00aaff;
    color:#fff;
    font-size:24px;
    font-weight:bold;
    margin-bottom:20px;
}

.process-box h3{
    margin-bottom:15px;
    color:#02133f;
}

/* CTA */

.service-cta{
    padding:100px 20px;
    text-align:center;
    background:
    linear-gradient(rgba(2,10,45,.85),rgba(2,10,45,.85)),
    url('../images/bg-tech.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
}

.service-cta h2{
    font-size:45px;
    margin-bottom:15px;
}

.service-cta p{
    font-size:18px;
    margin-bottom:30px;
    color:#ddd;
}

/* Responsive */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .services-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .service-cta h2{
        font-size:32px;
    }
}
/* CONTACT PAGE */

.contact-section{
    padding:100px 0;
    background:#fff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info h2{
    color:#02133f;
    margin-bottom:20px;
    font-size:40px;
}

.contact-info p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.info-box{
    display:flex;
    gap:20px;
    margin-bottom:25px;
    align-items:flex-start;
}

.info-box i{
    width:60px;
    height:60px;
    background:#00aaff;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:22px;
}

.info-box h4{
    margin-bottom:5px;
    color:#02133f;
}

.contact-form{
    background:#f8f9fb;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.form-group{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:15px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#00aaff;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

.map-section{
    width:100%;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:0;
}

/* Responsive */

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .contact-info h2{
        font-size:30px;
    }

    .contact-form{
        padding:25px;
    }
}

/* CAREER PAGE */

.career-intro{
    padding:80px 0 20px;
    background-color: white;
}

.job-section{
    padding:30px 0 80px;
    background:#f8f9fb;
}

.job-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    margin-bottom:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.job-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.job-header h3{
    color:#02133f;
}

.job-type{
    background:#00aaff;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:14px;
}

.job-card p{
    color:#666;
    line-height:1.8;
}

.job-card h4{
    margin-top:20px;
    margin-bottom:10px;
    color:#02133f;
}

.job-card ul{
    padding-left:20px;
}

.job-card ul li{
    margin-bottom:8px;
    color:#555;
}

.apply-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:#00aaff;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
}

/* FORM */

.career-form-section{
    padding:100px 0;
}

.career-form{
    max-width:800px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.career-form h2{
    text-align:center;
    margin-bottom:30px;
    color:#02133f;
}

.form-row{
    margin-bottom:20px;
}

.form-row input,
.form-row select,
.form-row textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
}

@media(max-width:768px){

    .job-header{
        flex-direction:column;
        gap:10px;
        align-items:flex-start;
    }

    .career-form{
        padding:25px;
    }
}