
        /* =========================================================
           GLOBAL
        ========================================================= */

        :root {
            --primary: #087cff;
            --primary-dark: #0057c7;
            --cyan: #00c8ff;
            --dark: #050d17;
            --dark-2: #081522;
            --dark-3: #0c1c2b;
            --light: #f5f8fb;
            --white: #ffffff;
            --text: #6b7885;
            --border: rgba(255,255,255,0.12);
            --container: 1240px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", sans-serif;
            color: #101820;
            background: var(--white);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        button {
            font-family: inherit;
        }

        .container {
            width: min(92%, var(--container));
            margin: auto;
        }

        .section {
            padding: 110px 0;
        }

        .section-dark {
            background: var(--dark);
            color: var(--white);
        }

        .section-light {
            background: #f6f9fc;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-tag::before {
            content: "";
            width: 35px;
            height: 2px;
            background: currentColor;
        }

        .section-title {
            font-family: "Space Grotesk", sans-serif;
            font-size: clamp(34px, 4vw, 56px);
            line-height: 1.05;
            font-weight: 700;
            letter-spacing: -2px;
        }

        .section-description {
            max-width: 650px;
            margin-top: 20px;
            color: var(--text);
            line-height: 1.8;
            font-size: 16px;
        }

        .section-dark .section-description {
            color: #9caab8;
        }


        /* =========================================================
           HEADER
        ========================================================= */

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 82px;
            z-index: 1000;

            display: flex;
            align-items: center;

            transition: 0.35s ease;
        }

        .header.scrolled {
            height: 70px;
            background: rgba(4, 12, 21, 0.94);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .nav {
            width: min(92%, 1320px);
            margin: auto;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
        }

        .logo-mark {
            width: 40px;
            height: 40px;

            display: grid;
            place-items: center;

            border: 1px solid rgba(0,200,255,0.6);
            border-radius: 8px;

            color: var(--cyan);
            font-size: 19px;
        }

        .logo-text strong {
            display: block;
            font-family: "Space Grotesk", sans-serif;
            font-size: 17px;
            letter-spacing: 1.5px;
        }

        .logo-text span {
            font-size: 8px;
            letter-spacing: 4px;
            color: #8c9baa;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 34px;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255,255,255,0.82);
            font-size: 13px;
            font-weight: 600;
            transition: 0.3s;
        }

        .nav-links a:hover {
            color: var(--cyan);
        }

        .nav-cta {
            background: var(--primary);
            color: white;
            padding: 13px 22px;
            border-radius: 5px;
            font-size: 13px;
            font-weight: 700;

            transition: 0.3s;
        }

        .nav-cta:hover {
            background: #2491ff;
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255,255,255,0.2);
            background: transparent;
            color: white;
            border-radius: 5px;
            font-size: 20px;
            cursor: pointer;
        }


        /* =========================================================
           HERO
        ========================================================= */

        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #050b14;
    color: #fff;
}

.drone-hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 80px 7%;

    background:
        radial-gradient(circle at 75% 50%, rgba(0, 180, 255, 0.15), transparent 35%),
        linear-gradient(120deg, #050b14, #081522, #03101c);
}

/* ================= CONTENT ================= */

.hero-content {
    width: 48%;
    position: relative;
    z-index: 5;
}

.hero-tag {
    display: inline-block;

    padding: 8px 18px;

    border: 1px solid rgba(0, 190, 255, 0.5);
    border-radius: 30px;

    color: #00c8ff;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;

    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: clamp(45px, 6vw, 82px);
    line-height: 1.05;
    font-weight: 700;

    margin-bottom: 25px;
}

.hero-content h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #00c8ff,
        #ffffff
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    max-width: 620px;

    color: #aab8c8;

    font-size: 18px;
    line-height: 1.7;

    margin-bottom: 35px;
}

/* ================= BUTTONS ================= */

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons a {
    text-decoration: none;

    padding: 15px 28px;

    border-radius: 8px;

    font-weight: 600;

    transition: 0.3s ease;
}

.btn-primary {
    background: #00aeea;
    color: #fff;

    box-shadow:
        0 10px 30px rgba(0, 174, 234, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 40px rgba(0, 174, 234, 0.4);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}

.btn-outline:hover {
    border-color: #00c8ff;
    color: #00c8ff;
}

/* ================= DRONE AREA ================= */

.drone-visual {
    width: 48%;
    height: 650px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1200px;
}

/* Glow behind drone */

.drone-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(0, 183, 255, 0.15);

    filter: blur(70px);

    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%, 100% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}
.drone-image-wrapper {
    position: fixed;
    top: 100px;
    right: 50px;

    width: 500px;
    height: 400px;

    z-index: 999999 !important;

    overflow: visible !important;
    pointer-events: none;
}

.drone-video {
    position: relative;

    object-fit: contain;

    z-index: 999999 !important;
    display: block;
}
/* ================= DRONE IMAGE ================= */

.drone-image-wrapper {
    width: 100%;
    max-width: 650px;

    z-index: 3;

    transition:
        transform 0.15s ease-out;

    transform-style: preserve-3d;

    animation: droneFloat 5s ease-in-out infinite;
}

.drone-image-wrapper img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;

    filter:
        drop-shadow(0 30px 35px rgba(0,0,0,0.55))
        drop-shadow(0 0 30px rgba(0,190,255,0.12));
}

@keyframes droneFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* ================= CIRCLES ================= */

.drone-circle {
    position: absolute;

    border: 1px solid rgba(0, 195, 255, 0.2);

    border-radius: 50%;

    z-index: 1;
}

.circle-one {
    width: 500px;
    height: 500px;

    animation: rotateCircle 20s linear infinite;
}

.circle-two {
    width: 650px;
    height: 650px;

    border-style: dashed;

    animation: rotateCircleReverse 30s linear infinite;
}

@keyframes rotateCircle {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateCircleReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* ================= FLOATING CARDS ================= */

.floating-card {
    position: absolute;

    z-index: 5;

    padding: 15px 20px;

    min-width: 120px;

    background: rgba(8, 24, 38, 0.75);

    border: 1px solid rgba(0, 195, 255, 0.25);

    border-radius: 12px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.3);

    display: flex;
    flex-direction: column;

    gap: 4px;
}

.floating-card strong {
    font-size: 20px;
    color: #00c8ff;
}

.floating-card span {
    color: #aebdca;
    font-size: 12px;
}

.card-one {
    top: 25%;
    right: 3%;

    animation: cardFloat 4s ease-in-out infinite;
}

.card-two {
    bottom: 25%;
    left: 0;

    animation: cardFloat 4s ease-in-out infinite 1s;
}

@keyframes cardFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .drone-hero {
        flex-direction: column;

        padding: 80px 6%;
        text-align: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .drone-visual {
        width: 100%;
        height: 550px;
    }
}

@media (max-width: 600px) {

    .drone-hero {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .drone-visual {
        height: 400px;
    }

    .drone-image-wrapper {
        width: 100%;
    }

    .circle-one {
        width: 320px;
        height: 320px;
    }

    .circle-two {
        width: 400px;
        height: 400px;
    }

    .floating-card {
        transform: scale(0.8);
    }
}

/* =========================================================
   STATS
========================================================= */

.stats{
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    background:#06090d;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.stat{
    padding:38px 25px;
    border-right:1px solid var(--border);
}

.stat:last-child{
    border-right:0;
}

.stat-number{
    font-size:40px;
    font-weight:900;
    color:var(--cyan);
    margin-bottom:7px;
}

.stat-title{
    font-size:12px;
    color:var(--muted);
    line-height:1.5;
}
        /* =========================================================
           ABOUT
        ========================================================= */

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;

            gap: 80px;

            align-items: center;
        }

        .about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    min-height: 480px;

    perspective: 1200px;
    transform-style: preserve-3d;

    cursor: pointer;

    transition: transform 0.15s ease-out;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;

    transform-style: preserve-3d;

    transition:
        transform 0.15s ease-out,
        filter 0.3s ease;
}

/* Glow */
.about-image::after {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: 10px;

    pointer-events: none;



    transition: 0.3s;
}



       
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);

            gap: 30px;

            margin-top: 40px;
        }

        .about-feature i {
            color: var(--primary);
            font-size: 23px;
            margin-bottom: 14px;
        }

        .about-feature h4 {
            font-size: 15px;
            margin-bottom: 7px;
        }

        .about-feature p {
            color: var(--text);
            font-size: 13px;
            line-height: 1.6;
        }
        


        /* =========================================================
           SOLUTIONS
        ========================================================= */

        .solutions {
            background: var(--dark);
        }

        .solutions-header {
            text-align: center;
            margin-bottom: 55px;
        }

        .solutions-header .section-description {
            margin-left: auto;
            margin-right: auto;
        }

       /* ==========================================
   SOLUTIONS HORIZONTAL SLIDER
========================================== */

.solution-grid {
    display: flex;

    gap: 20px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    padding: 10px 5px 30px;

    cursor: grab;

    scrollbar-width: none;
}

.solution-grid::-webkit-scrollbar {
    display: none;
}


/* CARD */

.solution-card {
    position: relative;

    flex: 0 0 calc(33.333% - 14px);

    min-height: 360px;

    overflow: hidden;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,0.1);

    scroll-snap-align: start;

    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;

    cursor: pointer;
}


/* IMAGE */

.solution-card img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.8,.2,1),
        filter 0.6s ease;
}


/* OVERLAY */

.solution-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 15%,
            rgba(0,0,0,0.25) 45%,
            rgba(0,0,0,0.95) 100%
        );

    z-index: 1;

    transition: 0.5s;
}


/* CONTENT */

.solution-content {

    position: absolute;

    z-index: 2;

    left: 25px;
    right: 25px;
    bottom: 25px;
}


/* ICON */

.solution-icon {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    margin-bottom: 15px;

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}


/* TITLE */

.solution-content h3 {

    font-family: "Space Grotesk", sans-serif;

    font-size: 22px;

    margin-bottom: 8px;
}


/* DESCRIPTION */

.solution-content p {

    color: #b7c2cc;

    font-size: 13px;

    line-height: 1.6;
}


/* ==========================================
   HOVER
========================================== */

.solution-card:hover {

    transform:
        translateY(-10px)
        scale(1.01);

    border-color:
        rgba(0,200,255,0.5);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.35);
}


.solution-card:hover img {

    transform: scale(1.1);

    filter:
        brightness(0.8)
        saturate(1.2);
}


.solution-card:hover .solution-icon {

    transform:
        scale(1.15)
        rotate(10deg);

    box-shadow:
        0 0 25px
        rgba(0,200,255,0.4);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .solution-card {

        flex: 0 0 55%;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .solution-card {

        flex: 0 0 85%;

        min-height: 390px;
    }

}
     /* =========================================================
   PRODUCTS - PREMIUM SHOWCASE
========================================================= */

.products-section {
    background: #07121e;
    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.products-top {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 45px;
}


.products-top .section-title {
    max-width: 650px;
}


.products-top .section-title span {

    color: var(--primary);

}


.products-intro {

    max-width: 380px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 5px;
}


/* =========================================================
   PRODUCT SHOWCASE
========================================================= */

.product-showcase {

    display: flex;

    width: 100%;

    height: 520px;

    gap: 8px;

    overflow: hidden;

}


/* =========================================================
   PRODUCT PANEL
========================================================= */

.product-panel {

    position: relative;

    flex: 1;

    min-width: 0;

    overflow: hidden;

    border-radius: 8px;

    cursor: pointer;

    transition:
        flex 0.8s cubic-bezier(.16,1,.3,1),
        transform 0.5s ease;
}


/* ACTIVE PANEL */

.product-panel.active {

    flex: 3.8;

}


/* IMAGE */

.product-panel img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 1.2s cubic-bezier(.16,1,.3,1),
        filter 0.8s ease;
}


/* =========================================================
   OVERLAY
========================================================= */

.product-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.05) 20%,
            rgba(0,0,0,0.15) 40%,
            rgba(0,0,0,0.9) 100%
        );

    transition:
        background 0.6s ease;
}


/* =========================================================
   NUMBER
========================================================= */

.product-number {

    position: absolute;

    top: 25px;

    right: 25px;

    z-index: 3;

    color: white;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    opacity: 0.8;
}


/* =========================================================
   CONTENT
========================================================= */

.product-panel-content {

    position: absolute;

    left: 30px;

    right: 30px;

    bottom: 30px;

    z-index: 3;

    color: white;

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.5s ease 0.15s,
        transform 0.6s ease 0.15s;
}


/* ACTIVE CONTENT */

.product-panel.active
.product-panel-content {

    opacity: 1;

    transform: translateY(0);
}


.product-panel-content span {

    display: block;

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.product-panel-content h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: clamp(28px, 3vw, 48px);

    line-height: 1;

    margin-bottom: 15px;
}


.product-panel-content h3 strong {

    font-weight: 700;
}


.product-panel-content p {

    max-width: 480px;

    color: #d8e0e6;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 20px;
}


/* =========================================================
   LINK
========================================================= */

.product-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: white;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

    padding-bottom: 6px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.5);

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}


.product-link:hover {

    color: var(--primary);

    gap: 16px;
}


/* =========================================================
   HOVER IMAGE
========================================================= */

.product-panel:hover img {

    transform: scale(1.08);

    filter:
        brightness(0.85)
        saturate(1.1);
}


.product-panel.active:hover img {

    transform: scale(1.12);
}


/* =========================================================
   BOTTOM NAVIGATION
========================================================= */

.product-navigation {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 20px;
}


.product-nav-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px 15px;

    cursor: pointer;

    border-top:
        2px solid transparent;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}


.product-nav-item > span {

    color: #9aa7b2;

    font-size: 11px;

    font-weight: 800;
}


.product-nav-item strong {

    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 14px;
}


.product-nav-item small {

    display: block;

    margin-top: 3px;

    color: #9aa7b2;

    font-size: 8px;

    letter-spacing: 1px;
}


/* ACTIVE NAV */

.product-nav-item.active {

    border-top-color:
        var(--primary);

    background:
        rgba(8,124,255,0.04);
}


.product-nav-item.active > span {

    color:
        var(--primary);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .products-top {

        flex-direction: column;

        align-items: flex-start;

    }


    .product-showcase {

        height: 480px;

    }


    .product-panel {

        flex: 1;

    }


    .product-panel.active {

        flex: 3;

    }

}


@media (max-width: 650px) {

    .product-showcase {

        height: 500px;

        flex-direction: column;

    }


    .product-panel,
    .product-panel.active {

        flex: 1;

        min-height: 100px;

    }


    .product-panel.active {

        flex: 3;

    }


    .product-panel-content {

        left: 20px;

        right: 20px;

        bottom: 20px;

    }


    .product-panel-content h3 {

        font-size: 28px;

    }


    .product-navigation {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


        /* =========================================================
           TECHNOLOGY
        ========================================================= */

        .technology {
            position: relative;
            overflow: hidden;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;

            gap: 70px;

            align-items: center;
        }

        /* =====================================================
   EXPLODED DRONE
===================================================== */

/* ==========================================
   DRONE AREA
========================================== */

.tech-visual {
    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1400px;
}


/* ==========================================
   MAIN CONTAINER
========================================== */

.exploded-drone {

    position: relative;

    width: 520px;
    height: 480px;

    cursor: pointer;

    transform-style: preserve-3d;
}


/* ==========================================
   NORMAL STATE
   ONLY MAIN DRONE IS VISIBLE
========================================== */

.drone-main {
    position: absolute;

    width: 100%;
    max-width: 520px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    opacity: 1;
    visibility: visible;

    z-index: 20;

    transition:
        opacity 0.5s ease,
        transform 1s ease;
}


/* ==========================================
   PARTS HIDDEN INITIALLY
========================================== */

.drone-part {

    position: absolute;

    width: 100%;
    max-width: 520px;

    left: 50%;
    top: 50%;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    z-index: 10;

    transform:
        translate(-50%, -50%)
        translate3d(0, 0, 0);

    transition:
        transform 1s cubic-bezier(.16,1,.3,1),
        opacity .5s ease,
        visibility 0s linear 1s;
}


/* ==========================================
   OPEN STATE
   HIDE MAIN DRONE COMPLETELY
========================================== */

.exploded-drone.open .drone-main {

    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, -50%)
        scale(.7);

    pointer-events: none;

}


/* ==========================================
   SHOW ONLY PARTS
========================================== */

.exploded-drone.open .drone-part {

    opacity: 1;

    visibility: visible;

    transition:
        transform 1s cubic-bezier(.16,1,.3,1),
        opacity .5s ease,
        visibility 0s;
}


/* ==========================================
   LEFT MOTOR
========================================== */

.exploded-drone.open .part-left-motor {

    transform:
        translate(-50%, -50%)
        translate3d(-210px, -55px, 180px)
        rotateZ(-12deg)
        scale(.28);

}


/* ==========================================
   RIGHT MOTOR
========================================== */

.exploded-drone.open .part-right-motor {

    transform:
        translate(-50%, -50%)
        translate3d(210px, -55px, 180px)
        rotateZ(12deg)
        scale(.28);

}


/* ==========================================
   TOP PROPELLER
========================================== */

.exploded-drone.open .part-top-propeller {

    transform:
        translate(-50%, -50%)
        translate3d(0, -190px, 220px)
        rotateZ(8deg)
        scale(.30);

}


/* ==========================================
   LEFT PROPELLER
========================================== */

.exploded-drone.open .part-left-propeller {

    transform:
        translate(-50%, -50%)
        translate3d(-190px, -165px, 220px)
        rotateZ(-15deg)
        scale(.18);

}


/* ==========================================
   RIGHT PROPELLER
========================================== */

.exploded-drone.open .part-right-propeller {

    transform:
        translate(-50%, -50%)
        translate3d(190px, -165px, 220px)
        rotateZ(15deg)
        scale(.18);

}


/* ==========================================
   CAMERA
========================================== */

.exploded-drone.open .part-camera {

    transform:
        translate(-50%, -50%)
        translate3d(0, -140px, 240px)
        rotateX(-15deg)
        scale(.32);

}


/* ==========================================
   BATTERY
========================================== */

.exploded-drone.open .part-battery {

    transform:
        translate(-50%, -50%)
        translate3d(-165px, 145px, 200px)
        rotateX(-10deg)
        scale(.30);

}


/* ==========================================
   FLIGHT CONTROLLER
========================================== */

.exploded-drone.open .part-controller {

    transform:
        translate(-50%, -50%)
        translate3d(165px, 145px, 200px)
        rotateX(15deg)
        scale(.30);

}


/* ==========================================
   PART GLOW
========================================== */

.exploded-drone.open
.drone-part {

    filter:
        drop-shadow(
            0 0 16px
            rgba(0,200,255,.45)
        );

}
/* ==========================================
   LEFT MOTOR - SMALLER
========================================== */

.exploded-drone.open .part-motor-left {

    transform:
        translate(-50%, -50%)
        translate3d(-210px, -55px, 180px)
        rotateZ(-12deg)
        scale(.22);

}


/* ==========================================
   RIGHT MOTOR - SMALLER
========================================== */

.exploded-drone.open .part-motor-right {

    transform:
        translate(-50%, -50%)
        translate3d(210px, -55px, 180px)
        rotateZ(12deg)
        scale(.22);

}

/* ==========================================
   BUTTON
========================================== */

.drone-button {

    position: absolute;

    z-index: 100;

    left: 50%;
    bottom: -20px;

    transform:
        translateX(-50%);

    padding: 13px 24px;

    border: 1px solid
        rgba(0,200,255,.5);

    border-radius: 30px;

    background:
        rgba(3,15,25,.95);

    color: white;

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    cursor: pointer;

    white-space: nowrap;

    transition: .3s ease;

}


.drone-button i {

    color: #00c8ff;

}


.drone-button:hover {

    background: #00c8ff;

    color: #00121c;

}


.drone-button:hover i {

    color: #00121c;

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .tech-visual {

        min-height: 450px;

    }

    .exploded-drone {

        width: 360px;
        height: 380px;

    }

    .drone-main,
    .drone-part {

        max-width: 360px;

    }

    .exploded-drone.open
    .part-left-motor {

        transform:
            translate(-50%, -50%)
            translate3d(-130px, -50px, 150px);

    }

    .exploded-drone.open
    .part-right-motor {

        transform:
            translate(-50%, -50%)
            translate3d(130px, -50px, 150px);

    }

    .exploded-drone.open
    .part-left-propeller {

        transform:
            translate(-50%, -50%)
            translate3d(-160px, -100px, 180px);

    }

    .exploded-drone.open
    .part-right-propeller {

        transform:
            translate(-50%, -50%)
            translate3d(160px, -100px, 180px);

    }

}

/* =====================================================
   LABELS
===================================================== */

.drone-label {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .6s ease;

    z-index: 50;

}


.drone-label span {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #00c8ff;

    box-shadow:
        0 0 15px
        #00c8ff;

}


.drone-label strong {

    display: block;

    color: white;

    font-size: 12px;

}


.drone-label small {

    display: block;

    margin-top: 3px;

    color: #8295a5;

    font-size: 9px;

}


/* =====================================================
   LABEL POSITIONS
===================================================== */

.label-motor {

    top: 28%;

    left: 0;

}


.label-camera {

    bottom: 20%;

    left: 5%;

}


.label-battery {

    top: 30%;

    right: 0;

}


.label-controller {

    top: 12%;

    right: 3%;

}


/* =====================================================
   SHOW LABELS WHEN EXPLODED
===================================================== */

.tech-visual:has(
    .exploded-drone.exploded
) .drone-label {

    opacity: 1;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .tech-visual {

        min-height: 500px;

    }


    .exploded-drone {

        width: 380px;

        height: 400px;

    }


    .drone-part {

        max-width: 380px;

    }


    .exploded-drone.exploded .part-motor-left {

        transform:
            translate(-50%, -50%)
            translate3d(-130px, -60px, 150px);

    }


    .exploded-drone.exploded .part-motor-right {

        transform:
            translate(-50%, -50%)
            translate3d(130px, -60px, 150px);
            scale: (.18);

    }


    .exploded-drone.exploded .part-propeller-left {

        transform:
            translate(-50%, -50%)
            translate3d(-160px, -100px, 180px);
            

    }


    .exploded-drone.exploded .part-propeller-right {

        transform:
            translate(-50%, -50%)
            translate3d(160px, -100px, 180px);

    }


    .drone-label {

        display: none;

    }

}

        .tech-drone {
            font-size: 110px;
            color: var(--cyan);

            filter: drop-shadow(0 0 30px rgba(0,200,255,0.3));
        }

        .tech-items {
            display: grid;
            grid-template-columns: repeat(2, 1fr);

            gap: 35px;
        }

        .tech-item {
            display: flex;
            gap: 15px;
        }

        .tech-item-icon {
            flex-shrink: 0;

            width: 46px;
            height: 46px;

            display: grid;
            place-items: center;

            border: 1px solid rgba(0,200,255,0.3);
            border-radius: 6px;

            color: var(--cyan);
        }

        .tech-item h4 {
            font-size: 15px;
            margin-bottom: 7px;
        }

        .tech-item p {
            color: #96a5b4;
            font-size: 12px;
            line-height: 1.6;
        }

        /* =========================================================
           TECHNOLOGY
        ========================================================= */

        .technology {
            position: relative;
            overflow: hidden;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;

            gap: 70px;

            align-items: center;
        }

        /* =====================================================
   EXPLODED DRONE
===================================================== */

/* ==========================================
   DRONE AREA
========================================== */

.tech-visual {
    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1400px;
}


/* ==========================================
   MAIN CONTAINER
========================================== */

.exploded-drone {

    position: relative;

    width: 520px;
    height: 480px;

    cursor: pointer;

    transform-style: preserve-3d;
}


/* ==========================================
   NORMAL STATE
   ONLY MAIN DRONE IS VISIBLE
========================================== */

.drone-main {
    position: absolute;

    width: 100%;
    max-width: 520px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    opacity: 1;
    visibility: visible;

    z-index: 20;

    transition:
        opacity 0.5s ease,
        transform 1s ease;
}


/* ==========================================
   PARTS HIDDEN INITIALLY
========================================== */

.drone-part {

    position: absolute;

    width: 100%;
    max-width: 520px;

    left: 50%;
    top: 50%;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    z-index: 10;

    transform:
        translate(-50%, -50%)
        translate3d(0, 0, 0);

    transition:
        transform 1s cubic-bezier(.16,1,.3,1),
        opacity .5s ease,
        visibility 0s linear 1s;
}


/* ==========================================
   OPEN STATE
   HIDE MAIN DRONE COMPLETELY
========================================== */

.exploded-drone.open .drone-main {

    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, -50%)
        scale(.7);

    pointer-events: none;

}


/* ==========================================
   SHOW ONLY PARTS
========================================== */

.exploded-drone.open .drone-part {

    opacity: 1;

    visibility: visible;

    transition:
        transform 1s cubic-bezier(.16,1,.3,1),
        opacity .5s ease,
        visibility 0s;
}


/* ==========================================
   LEFT MOTOR
========================================== */

.exploded-drone.open .part-left-motor {

    transform:
        translate(-50%, -50%)
        translate3d(-210px, -55px, 180px)
        rotateZ(-12deg)
        scale(.28);

}


/* ==========================================
   RIGHT MOTOR
========================================== */

.exploded-drone.open .part-right-motor {

    transform:
        translate(-50%, -50%)
        translate3d(210px, -55px, 180px)
        rotateZ(12deg)
        scale(.28);

}


/* ==========================================
   TOP PROPELLER
========================================== */

.exploded-drone.open .part-top-propeller {

    transform:
        translate(-50%, -50%)
        translate3d(0, -190px, 220px)
        rotateZ(8deg)
        scale(.30);

}


/* ==========================================
   LEFT PROPELLER
========================================== */

.exploded-drone.open .part-left-propeller {

    transform:
        translate(-50%, -50%)
        translate3d(-190px, -165px, 220px)
        rotateZ(-15deg)
        scale(.18);

}


/* ==========================================
   RIGHT PROPELLER
========================================== */

.exploded-drone.open .part-right-propeller {

    transform:
        translate(-50%, -50%)
        translate3d(190px, -165px, 220px)
        rotateZ(15deg)
        scale(.18);

}


/* ==========================================
   CAMERA
========================================== */

.exploded-drone.open .part-camera {

    transform:
        translate(-50%, -50%)
        translate3d(0, -140px, 240px)
        rotateX(-15deg)
        scale(.32);

}


/* ==========================================
   BATTERY
========================================== */

.exploded-drone.open .part-battery {

    transform:
        translate(-50%, -50%)
        translate3d(-165px, 145px, 200px)
        rotateX(-10deg)
        scale(.30);

}


/* ==========================================
   FLIGHT CONTROLLER
========================================== */

.exploded-drone.open .part-controller {

    transform:
        translate(-50%, -50%)
        translate3d(165px, 145px, 200px)
        rotateX(15deg)
        scale(.30);

}


/* ==========================================
   PART GLOW
========================================== */

.exploded-drone.open
.drone-part {

    filter:
        drop-shadow(
            0 0 16px
            rgba(0,200,255,.45)
        );

}
/* ==========================================
   LEFT MOTOR - SMALLER
========================================== */

.exploded-drone.open .part-motor-left {

    transform:
        translate(-50%, -50%)
        translate3d(-210px, -55px, 180px)
        rotateZ(-12deg)
        scale(.22);

}


/* ==========================================
   RIGHT MOTOR - SMALLER
========================================== */

.exploded-drone.open .part-motor-right {

    transform:
        translate(-50%, -50%)
        translate3d(210px, -55px, 180px)
        rotateZ(12deg)
        scale(.22);

}

/* ==========================================
   BUTTON
========================================== */

.drone-button {

    position: absolute;

    z-index: 100;

    left: 50%;
    bottom: -20px;

    transform:
        translateX(-50%);

    padding: 13px 24px;

    border: 1px solid
        rgba(0,200,255,.5);

    border-radius: 30px;

    background:
        rgba(3,15,25,.95);

    color: white;

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    cursor: pointer;

    white-space: nowrap;

    transition: .3s ease;

}


.drone-button i {

    color: #00c8ff;

}


.drone-button:hover {

    background: #00c8ff;

    color: #00121c;

}


.drone-button:hover i {

    color: #00121c;

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .tech-visual {

        min-height: 450px;

    }

    .exploded-drone {

        width: 360px;
        height: 380px;

    }

    .drone-main,
    .drone-part {

        max-width: 360px;

    }

    .exploded-drone.open
    .part-left-motor {

        transform:
            translate(-50%, -50%)
            translate3d(-130px, -50px, 150px);

    }

    .exploded-drone.open
    .part-right-motor {

        transform:
            translate(-50%, -50%)
            translate3d(130px, -50px, 150px);

    }

    .exploded-drone.open
    .part-left-propeller {

        transform:
            translate(-50%, -50%)
            translate3d(-160px, -100px, 180px);

    }

    .exploded-drone.open
    .part-right-propeller {

        transform:
            translate(-50%, -50%)
            translate3d(160px, -100px, 180px);

    }

}



/* =====================================================
   LABEL POSITIONS
===================================================== */

.label-motor {

    top: 28%;

    left: 0;

}


.label-camera {

    bottom: 20%;

    left: 5%;

}


.label-battery {

    top: 30%;

    right: 0;

}


.label-controller {

    top: 12%;

    right: 3%;

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .tech-visual {

        min-height: 500px;

    }


    .exploded-drone {

        width: 380px;

        height: 400px;

    }


    .drone-part {

        max-width: 380px;

    }


    .exploded-drone.exploded .part-motor-left {

        transform:
            translate(-50%, -50%)
            translate3d(-130px, -60px, 150px);

    }


    .exploded-drone.exploded .part-motor-right {

        transform:
            translate(-50%, -50%)
            translate3d(130px, -60px, 150px);
            scale: (.18);

    }


    .exploded-drone.exploded .part-propeller-left {

        transform:
            translate(-50%, -50%)
            translate3d(-160px, -100px, 180px);
            

    }


    .exploded-drone.exploded .part-propeller-right {

        transform:
            translate(-50%, -50%)
            translate3d(160px, -100px, 180px);

    }


    .drone-label {

        display: none;

    }

}

       

        /* =========================================================
           INDUSTRIES
        ========================================================= */

        .industries {
            text-align: center;
        }

        .industry-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);

            margin-top: 60px;

            border-top: 1px solid #e1e7ec;
            border-bottom: 1px solid #e1e7ec;
        }

        .industry {
            min-height: 150px;

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            gap: 15px;

            border-right: 1px solid #e1e7ec;

            transition: 0.3s;
        }

        .industry:last-child {
            border-right: none;
        }

        .industry i {
            font-size: 26px;
            color: var(--primary);
        }

        .industry span {
            font-size: 11px;
            font-weight: 700;
        }

        .industry:hover {
            background: #f4f8fb;
            color: var(--primary);
        }


        /* =========================================================
           CUSTOM SOLUTION
        ========================================================= */

        .custom {
            padding: 35px 0;
        }

        .custom-box {
            position: relative;
            overflow: hidden;

            padding: 75px;

            border-radius: 10px;

            background:
                linear-gradient(
                    100deg,
                    #061522,
                    #0b2940
                );

            color: white;
        }

        .custom-box::after {
            content: "";

            position: absolute;

            width: 450px;
            height: 450px;

            right: -130px;
            top: -180px;

            border: 1px solid rgba(0,200,255,0.25);
            border-radius: 50%;

            box-shadow:
                0 0 0 50px rgba(0,200,255,0.03),
                0 0 0 100px rgba(0,200,255,0.02);
        }

        .custom-box h2 {
            max-width: 650px;

            font-family: "Space Grotesk", sans-serif;

            font-size: clamp(35px, 4vw, 55px);
            line-height: 1.05;
        }

        .custom-box p {
            max-width: 650px;

            margin: 20px 0 30px;

            color: #a9b8c6;

            line-height: 1.7;
        }
/* ==========================================
   CUSTOM SECTION BUTTON
========================================== */

.custom .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 15px 28px;

    background: var(--primary);
    color: #fff;

    border: 1px solid var(--primary);
    border-radius: 6px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    text-decoration: none;

    position: relative;
    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


/* Arrow */

.custom .btn-primary i {
    font-size: 13px;

    transition:
        transform 0.35s ease;
}


/* Hover */

.custom .btn-primary:hover {

    transform: translateY(-4px);

    background: #008edb;

    box-shadow:
        0 12px 30px rgba(0, 200, 255, 0.30);

}


/* Arrow movement */

.custom .btn-primary:hover i {
    transform: translateX(6px);
}


/* ==========================================
   LIGHT SWEEP EFFECT
========================================== */

.custom .btn-primary::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.7s ease;
}


.custom .btn-primary:hover::before {
    left: 130%;
}


/* Keep text above animation */

.custom .btn-primary {
    isolation: isolate;
}

.custom .btn-primary i,
.custom .btn-primary {
    z-index: 1;
}

        /* =========================================================
           PROCESS
        ========================================================= */

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);

            margin-top: 60px;
        }

        .process {
            position: relative;

            padding: 25px;

            border-top: 1px solid #dce4ea;
        }

        .process-number {
            width: 48px;
            height: 48px;

            display: grid;
            place-items: center;

            border-radius: 50%;

            background: #eaf4ff;
            color: var(--primary);

            font-weight: 800;

            margin-bottom: 22px;
        }

        .process h3 {
            font-family: "Space Grotesk", sans-serif;
            margin-bottom: 10px;
        }

        .process p {
            color: var(--text);
            font-size: 13px;
            line-height: 1.7;
        }


        /* =========================================================
           FOOTER
        ========================================================= */

        footer {
            background: #030b14;
            color: white;
            padding: 75px 0 25px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr repeat(4, 1fr);

            gap: 45px;
        }

        .footer-brand p {
            max-width: 280px;

            margin-top: 20px;

            color: #8494a3;

            font-size: 13px;
            line-height: 1.7;
        }

        .footer-title {
            font-size: 13px;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 11px;
        }

        .footer-links a {
            color: #81909e;
            font-size: 12px;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: var(--cyan);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;

            margin-top: 60px;
            padding-top: 22px;

            border-top: 1px solid rgba(255,255,255,0.1);

            color: #647381;
            font-size: 11px;
        }


        /* =========================================================
           ANIMATION
        ========================================================= */

        .reveal {
            opacity: 0;
            transform: translateY(35px);

            transition:
                opacity 0.8s ease,
                transform 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes fadeUp {

            from {
                opacity: 0;
                transform: translateY(25px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }

        @keyframes rotateHud {

            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }

        }


        /* =========================================================
           RESPONSIVE
        ========================================================= */

        @media (max-width: 1050px) {

            .nav-links {
                gap: 20px;
            }

            .about-grid,
            .tech-grid {
                gap: 40px;
            }

            .industry-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .industry:nth-child(4) {
                border-right: none;
            }

            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }

        }


        @media (max-width: 850px) {

            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;

                top: 70px;
                left: 0;

                width: 100%;

                padding: 25px;

                background: rgba(3,11,20,0.98);

                flex-direction: column;
                align-items: flex-start;

                transform: translateY(-150%);

                transition: 0.4s;
            }

            .nav-links.open {
                transform: translateY(0);
            }

            .nav-cta {
                display: none;
            }

            .hero h1 {
                max-width: 700px;
            }

            .stats {
                position: relative;

                bottom: auto;
                left: auto;

                transform: none;

                width: 100%;

                grid-template-columns: repeat(2, 1fr);

                border-radius: 0;
            }

            .hero {
                min-height: auto;
                padding-bottom: 0;
            }

            .hero-content {
                padding-top: 150px;
                padding-bottom: 100px;
            }

            .about-grid,
            .tech-grid {
                grid-template-columns: 1fr;
            }

            .solution-grid,
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }


        @media (max-width: 600px) {

            .section {
                padding: 75px 0;
            }

            .hero h1 {
                font-size: 48px;
                letter-spacing: -2px;
            }

            .hero-description {
                font-size: 15px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-meta {
                flex-direction: column;
                gap: 12px;
            }

            .stats {
                grid-template-columns: 1fr 1fr;
            }

            .stat {
                padding: 18px 12px;
            }

            .stat strong {
                font-size: 23px;
            }

            .stat-icon {
                width: 38px;
                height: 38px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .solution-grid,
            .product-grid {
                grid-template-columns: 1fr;
            }

            .products-header {
                display: block;
            }

            .products-header .btn {
                margin-top: 25px;
            }

            .tech-items {
                grid-template-columns: 1fr;
            }

            .tech-circle {
                width: 270px;
                height: 270px;
            }

            .tech-drone {
                font-size: 75px;
            }

            .industry-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .industry {
                border-bottom: 1px solid #e1e7ec;
            }

            .custom-box {
                padding: 45px 25px;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
            }

        }

   