*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',Arial,sans-serif;
    background:#050b14;
    color:#fff;
    line-height:1.6;
    overflow-x:hidden;
}

body::before{
    content:"";
    position:fixed;
    width:500px;
    height:500px;
    background:#00c6ff;
    filter:blur(180px);
    opacity:.10;
    top:-200px;
    left:-150px;
    z-index:-1;
}

body::after{
    content:"";
    position:fixed;
    width:500px;
    height:500px;
    background:#ff6b00;
    filter:blur(180px);
    opacity:.06;
    right:-200px;
    bottom:-200px;
    z-index:-1;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:90%;
    max-width:1250px;
    margin:auto;
}


/* ================= NAVBAR ================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(5,11,20,.78);
    backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(255,255,255,.07);
}

.nav-inner{
    height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:20px;
    font-weight:800;
    letter-spacing:-.5px;
}

.logo span{
    color:#00cfff;
}

.logo-icon{
    width:40px;
    height:40px;
    border-radius:11px;
    background:linear-gradient(
        135deg,
        #00d9ff,
        #0077ff
    );
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    box-shadow:
        0 0 30px rgba(0,200,255,.3);
}

.nav-links{
    display:flex;
    align-items:center;
    gap:27px;
}

.nav-links>a,
.drop-btn{
    color:#9eacbd;
    font-size:13px;
    transition:.3s;
}

.nav-links>a:hover,
.drop-btn:hover,
.nav-links .active{
    color:#fff;
}

.nav-demo{
    padding:10px 20px !important;
    border-radius:30px;
    background:linear-gradient(
        135deg,
        #00cfff,
        #0077ff
    );
    color:white !important;
    box-shadow:
        0 8px 25px rgba(0,150,255,.25);
}

.menu-btn{
    display:none;
    background:none;
    border:0;
    color:white;
    font-size:25px;
    cursor:pointer;
}


/* ================= DROPDOWN ================= */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:30px;
    left:-20px;
    width:230px;
    padding:10px;
    border-radius:12px;
    background:#0b1625;
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 20px 50px rgba(0,0,0,.4);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.25s;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:11px 12px;
    border-radius:7px;
    color:#8e9caf;
    font-size:13px;
}

.dropdown-menu a:hover{
    background:rgba(0,200,255,.08);
    color:#fff;
}


/* ================= HERO ================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:90px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:50px;
    align-items:center;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    border:1px solid rgba(0,210,255,.25);
    background:rgba(0,190,255,.05);
    border-radius:30px;
    color:#55ddff;
    font-size:11px;
    margin-bottom:25px;
}

.badge-dot{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#00e5ff;
    box-shadow:0 0 12px #00e5ff;
}

.hero h1{
    font-size:clamp(45px,6vw,78px);
    line-height:1.02;
    letter-spacing:-4px;
    margin-bottom:25px;
}

.hero h1 span{
    background:linear-gradient(
        90deg,
        #00d9ff,
        #5f8cff
    );
    -webkit-background-clip:text;
    color:transparent;
}

.hero p{
    color:#93a2b7;
    font-size:16px;
    line-height:1.8;
    max-width:650px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:14px 23px;
    border-radius:10px;
    font-size:13px;
    font-weight:600;
    transition:.3s;
    border:0;
    cursor:pointer;
}

.btn-primary{
    background:linear-gradient(
        135deg,
        #00cfff,
        #0077ff
    );
    color:white;
    box-shadow:
        0 10px 35px rgba(0,150,255,.25);
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:
        0 15px 45px rgba(0,150,255,.4);
}

.btn-outline{
    border:1px solid rgba(255,255,255,.15);
    color:#c9d3df;
    background:rgba(255,255,255,.03);
}

.btn-outline:hover{
    background:rgba(255,255,255,.07);
}


/* ================= HERO DASHBOARD ================= */

.hero-visual{
    height:530px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.orbit{
    width:420px;
    height:420px;
    border:1px solid rgba(0,200,255,.15);
    border-radius:50%;
    position:absolute;
    animation:rotate 20s linear infinite;
}

.orbit::before{
    content:"";
    position:absolute;
    width:12px;
    height:12px;
    background:#00ddff;
    border-radius:50%;
    top:45px;
    left:45px;
    box-shadow:0 0 25px #00ddff;
}

@keyframes rotate{

    from{
        transform:rotate(0);
    }

    to{
        transform:rotate(360deg);
    }

}

.dashboard-card{
    width:390px;
    padding:25px;
    border-radius:25px;
    background:
        linear-gradient(
            145deg,
            rgba(18,32,52,.95),
            rgba(7,15,27,.95)
        );
    border:1px solid rgba(255,255,255,.1);
    box-shadow:
        0 40px 100px rgba(0,0,0,.5);
    position:relative;
    z-index:2;
}

.card-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
}

.card-top small{
    color:#6e7d91;
    font-size:10px;
}

.card-top h3{
    font-size:16px;
}

.status{
    color:#41e6a1;
    font-size:11px;
}

.green{
    color:#41e6a1 !important;
}

.fuel-level{
    height:180px;
    display:flex;
    align-items:end;
    justify-content:center;
    margin-bottom:20px;
}

.tank{
    width:150px;
    height:170px;
    border:2px solid rgba(0,210,255,.4);
    border-radius:20px;
    overflow:hidden;
    position:relative;
}

.tank-fill{
    position:absolute;
    bottom:0;
    width:100%;
    height:72%;
    background:
        linear-gradient(
            180deg,
            #00d9ff,
            #006cff
        );
    box-shadow:
        0 -10px 40px rgba(0,200,255,.4);
}

.tank-percent{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    font-weight:800;
    z-index:2;
}

.data-row{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
    font-size:12px;
}

.data-row span:first-child{
    color:#7f8da1;
}


/* ================= TRUST ================= */

.trust{
    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);
    padding:25px 0;
    background:rgba(255,255,255,.015);
}

.trust-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.trust p{
    color:#657388;
    font-size:11px;
}

.trust-items{
    display:flex;
    gap:40px;
    color:#657388;
    font-size:11px;
    font-weight:600;
}


/* ================= SECTIONS ================= */

section{
    padding:100px 0;
}

.section-head{
    text-align:center;
    max-width:700px;
    margin:0 auto 55px;
}

.section-label{
    color:#00cfff;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-head h2,
.two-column h2,
.contact-grid h2{
    font-size:43px;
    line-height:1.15;
    letter-spacing:-2px;
    margin-bottom:18px;
}

.section-head p,
.two-column p,
.contact-grid>div>p{
    color:#8492a6;
    line-height:1.8;
    font-size:14px;
}


/* ================= PAGE HERO ================= */

.page-hero{
    padding-top:180px;
    padding-bottom:100px;
    text-align:center;
    background:
        radial-gradient(
            circle at center,
            rgba(0,150,255,.12),
            transparent 55%
        );
}

.page-hero h1{
    font-size:clamp(40px,5vw,65px);
    line-height:1.1;
    letter-spacing:-3px;
    margin-bottom:20px;
}

.page-hero p{
    max-width:700px;
    margin:auto;
    color:#8795a8;
}


/* ================= SERVICES ================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.service-card{
    padding:30px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:rgba(255,255,255,.025);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,210,255,.3);
    background:rgba(0,190,255,.04);
}

.icon{
    width:52px;
    height:52px;
    border-radius:14px;
    background:rgba(0,200,255,.1);
    border:1px solid rgba(0,200,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:23px;
    margin-bottom:22px;
}

.service-card h3{
    font-size:18px;
    margin-bottom:12px;
}

.service-card p{
    color:#7e8ca0;
    line-height:1.7;
    font-size:13px;
}

.learn-more{
    display:inline-block;
    margin-top:20px;
    color:#00cfff;
    font-size:12px;
    font-weight:600;
}


/* ================= STATS ================= */

.stats{
    background:
        linear-gradient(
            135deg,
            rgba(0,150,255,.08),
            rgba(0,0,0,.1)
        );
    border-top:1px solid rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.stat{
    text-align:center;
    padding:30px;
    border-right:1px solid rgba(255,255,255,.07);
}

.stat:last-child{
    border-right:none;
}

.stat h3{
    font-size:42px;
    background:
        linear-gradient(
            90deg,
            #fff,
            #6edfff
        );
    -webkit-background-clip:text;
    color:transparent;
}

.stat p{
    color:#78879a;
    font-size:12px;
}


/* ================= PRODUCTS ================= */

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.product{
    min-height:250px;
    padding:30px;
    border-radius:20px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.015)
        );
    border:1px solid rgba(255,255,255,.08);
    display:flex;
    flex-direction:column;
    justify-content:end;
    transition:.3s;
}

.product:hover{
    transform:scale(1.02);
    border-color:rgba(0,200,255,.25);
}

.product-number{
    color:#00cfff;
    font-size:11px;
    margin-bottom:auto;
}

.product h3{
    font-size:21px;
    margin-bottom:8px;
}

.product p{
    color:#7d8b9e;
    font-size:13px;
}


/* ================= LARGE PRODUCTS ================= */

.products-large-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.product-large{
    padding:35px;
    min-height:350px;
    border-radius:22px;
    background:rgba(255,255,255,.025);
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.product-large:hover{
    transform:translateY(-7px);
    border-color:rgba(0,200,255,.3);
}

.product-icon{
    font-size:35px;
    margin:25px 0;
}

.product-large h2{
    font-size:22px;
    margin-bottom:12px;
}

.product-large p{
    color:#7e8ca0;
    font-size:13px;
    line-height:1.7;
}


/* ================= TWO COLUMN ================= */

.two-column{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.two-column p{
    margin-bottom:20px;
}

.glass-panel{
    padding:70px 40px;
    text-align:center;
    border-radius:30px;
    border:1px solid rgba(0,200,255,.15);
    background:
        linear-gradient(
            145deg,
            rgba(0,180,255,.08),
            rgba(255,255,255,.02)
        );
}

.big-r{
    width:120px;
    height:120px;
    margin:0 auto 25px;
    border-radius:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:70px;
    font-weight:800;
    background:
        linear-gradient(
            135deg,
            #00d9ff,
            #006cff
        );
    box-shadow:
        0 0 70px rgba(0,200,255,.25);
}

.glass-panel h3{
    font-size:24px;
}

.glass-panel p{
    color:#7e8ca0;
}


/* ================= FEATURE DASHBOARD ================= */

.feature-dashboard{
    padding:30px;
    border-radius:22px;
    background:
        linear-gradient(
            145deg,
            rgba(18,32,52,.95),
            rgba(7,15,27,.95)
        );
    border:1px solid rgba(255,255,255,.08);
}

.mini-header{
    display:flex;
    justify-content:space-between;
    color:#a3b0c0;
    font-size:12px;
    margin-bottom:30px;
}

.mini-stat{
    padding:20px;
    margin-bottom:12px;
    border-radius:12px;
    background:rgba(255,255,255,.03);
    display:flex;
    justify-content:space-between;
    color:#718096;
}

.mini-stat strong{
    color:#fff;
}


/* ================= INDUSTRIES ================= */

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.industry-card{
    min-height:240px;
    padding:30px;
    border-radius:20px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.015)
        );
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.industry-card:hover{
    transform:translateY(-7px);
    border-color:rgba(0,200,255,.3);
}

.industry-icon{
    font-size:35px;
    margin-bottom:40px;
}

.industry-card h2{
    font-size:22px;
    margin-bottom:8px;
}

.industry-card p{
    color:#7e8ca0;
    font-size:13px;
}


/* ================= PROJECTS ================= */

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.project-card{
    border-radius:20px;
    overflow:hidden;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
}

.project-image{
    height:230px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(
            circle,
            rgba(0,200,255,.25),
            #071322
        );
}

.project-image span{
    padding:10px 16px;
    border:1px solid rgba(0,210,255,.4);
    border-radius:30px;
    color:#00d9ff;
    font-size:11px;
}

.project-two{
    background:
        radial-gradient(
            circle,
            rgba(0,100,255,.3),
            #071322
        );
}

.project-three{
    background:
        radial-gradient(
            circle,
            rgba(255,120,0,.2),
            #071322
        );
}

.project-content{
    padding:25px;
}

.project-tag{
    color:#00cfff;
    font-size:10px;
    letter-spacing:1px;
    margin-bottom:10px;
}

.project-content h2{
    font-size:20px;
    margin-bottom:10px;
}

.project-content p{
    color:#7d8b9e;
    font-size:13px;
}


/* ================= CONTACT ================= */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
}

.contact-details{
    margin-top:35px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.contact-item .icon{
    margin:0;
    flex-shrink:0;
}

.contact-item h4{
    font-size:14px;
}

.contact-item p{
    color:#7e8ca0;
    font-size:13px;
}

.contact-form{
    padding:35px;
    border-radius:22px;
    background:rgba(255,255,255,.025);
    border:1px solid rgba(255,255,255,.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    margin-bottom:15px;
    padding:14px 16px;
    background:#08111f;
    border:1px solid rgba(255,255,255,.1);
    border-radius:9px;
    color:white;
    outline:none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:#00cfff;
}

.contact-form textarea{
    height:140px;
    resize:vertical;
}

.contact-form select{
    color:#8d9aad;
}


/* ================= CAREERS ================= */

.jobs-grid{
    display:grid;
    gap:18px;
    max-width:950px;
    margin:auto;
}

.job-card{
    padding:30px;
    border-radius:18px;
    background:rgba(255,255,255,.025);
    border:1px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    transition:.3s;
}

.job-card:hover{
    border-color:rgba(0,200,255,.3);
    transform:translateY(-3px);
}

.job-type{
    color:#00cfff;
    font-size:10px;
    letter-spacing:1px;
    margin-bottom:8px;
}

.job-card h2{
    font-size:20px;
    margin-bottom:8px;
}

.job-card p{
    color:#7d8b9e;
    font-size:13px;
}


/* ================= CTA ================= */

.cta{
    padding:80px 0;
}

.cta-box{
    position:relative;
    overflow:hidden;
    padding:70px;
    border-radius:30px;
    background:
        linear-gradient(
            135deg,
            rgba(0,150,255,.18),
            rgba(0,50,100,.08)
        );
    border:1px solid rgba(0,200,255,.2);
    text-align:center;
}

.cta-box h2{
    font-size:42px;
    margin-bottom:15px;
}

.cta-box p{
    color:#8997aa;
    margin-bottom:30px;
}


/* ================= FOOTER ================= */

footer{
    border-top:1px solid rgba(255,255,255,.07);
    padding:50px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:40px;
}

.footer-brand p{
    color:#6f7e91;
    font-size:13px;
    line-height:1.7;
    max-width:350px;
    margin-top:15px;
}

.footer-col h4{
    margin-bottom:15px;
    font-size:14px;
}

.footer-col a{
    display:block;
    color:#718095;
    font-size:13px;
    margin-bottom:10px;
}

.footer-col a:hover{
    color:#00cfff;
}

.copyright{
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.05);
    color:#59677a;
    font-size:11px;
    text-align:center;
}


/* ================= MOBILE ================= */

@media(max-width:950px){

    .menu-btn{
        display:block;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:78px;
        left:0;
        width:100%;
        padding:20px;
        background:#07101d;
        flex-direction:column;
        align-items:stretch;
        gap:5px;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .nav-links.show{
        display:flex;
    }

    .nav-links>a,
    .drop-btn{
        padding:12px;
    }

    .dropdown-menu{
        position:static;
        width:100%;
        display:none;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        background:#0a1625;
    }

    .dropdown:hover .dropdown-menu{
        display:block;
    }

    .hero-grid,
    .two-column,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .hero{
        padding-top:130px;
    }

    .hero-content{
        text-align:center;
    }

    .hero p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .services-grid,
    .products-large-grid,
    .industries-grid,
    .project-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stat{
        border-bottom:1px solid rgba(255,255,255,.07);
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .trust-items{
        display:none;
    }

}

@media(max-width:600px){

    .container{
        width:92%;
    }

    section{
        padding:75px 0;
    }

    .hero{
        padding-top:125px;
    }

    .hero h1{
        font-size:43px;
        letter-spacing:-2px;
    }

    .hero p{
        font-size:14px;
    }

    .hero-visual{
        height:400px;
    }

    .dashboard-card{
        width:320px;
    }

    .orbit{
        width:340px;
        height:340px;
    }

    .services-grid,
    .products-grid,
    .products-large-grid,
    .industries-grid,
    .project-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .section-head h2,
    .two-column h2,
    .contact-grid h2{
        font-size:34px;
    }

    .page-hero h1{
        font-size:40px;
    }

    .cta-box{
        padding:45px 20px;
    }

    .cta-box h2{
        font-size:30px;
    }

    .job-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .trust-items{
        display:none;
    }

}