/* =========================
   NEXAION PREMIUM THEME
========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,Arial,sans-serif;
    background:#040404;
    color:#fff;
    overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 8%;

    background:rgba(5,5,5,.8);
    backdrop-filter:blur(25px);

    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
    font-size:1.4rem;
    font-weight:800;
    letter-spacing:4px;

    background:linear-gradient(
        180deg,
        #ffffff,
        #bdbdbd
    );

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

.nav-links{
    list-style:none;
    display:flex;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#bdbdbd;
    transition:.3s;
}

.nav-links a:hover{
    color:#ffffff;
}

.nav-btn{
    text-decoration:none;

    background:linear-gradient(
        135deg,
        #ffffff,
        #bdbdbd
    );

    color:#000;

    padding:12px 22px;

    border-radius:50px;

    font-weight:700;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:140px 8% 80px;

    background:
    radial-gradient(circle at 75% 20%,
    rgba(0,174,239,.12),
    transparent 35%),

    radial-gradient(circle at 15% 20%,
    rgba(255,255,255,.05),
    transparent 35%),

    #040404;
}

.hero-content{
    width:50%;
}

.hero-tag{
    color:#888;
    letter-spacing:5px;
    font-size:.85rem;
    margin-bottom:20px;
}

.hero h1{
    font-size:6rem;
    line-height:1.05;
    font-weight:800;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #d4d4d4,
        #8e8e8e
    );

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

.hero p{
    margin-top:30px;

    max-width:650px;

    color:#b0b0b0;

    line-height:1.9;

    font-size:1.1rem;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn-primary{
    text-decoration:none;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #d5d5d5
    );

    color:#000;

    padding:18px 34px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    text-decoration:none;

    border:1px solid rgba(255,255,255,.15);

    color:white;

    padding:18px 34px;

    border-radius:50px;

    transition:.3s;
}

.btn-secondary:hover{
    border-color:#888;
}

/* =========================
   HERO IMAGE
========================= */

.hero-visual{
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-visual img{
    width:720px;
    max-width:100%;

    animation:floatGlobe 6s ease-in-out infinite;

    filter:
    drop-shadow(0 0 40px rgba(255,255,255,.12))
    drop-shadow(0 0 90px rgba(0,174,239,.15));
}

@keyframes floatGlobe{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }
}

/* =========================
   TRUSTED
========================= */

.trusted{
    padding:50px 8%;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.trusted p{
    color:#7f7f7f;
    letter-spacing:4px;
    font-size:.8rem;

    margin-bottom:30px;
}

.logo-row{
    display:flex;
    justify-content:center;
    gap:70px;
    flex-wrap:wrap;
}

.logo-row span{
    color:#bdbdbd;
    font-size:2rem;
    font-weight:700;
}

/* =========================
   PRODUCTS
========================= */

.products{
    padding:120px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#8e8e8e;
    letter-spacing:4px;
}

.section-title h2{
    margin-top:15px;
    font-size:3rem;
}

.product-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.card{
    text-decoration:none;

    color:white;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px;

    backdrop-filter:blur(15px);

    transition:.35s;
}

.card:hover{

    transform:translateY(-8px);

    border-color:#8f8f8f;

    box-shadow:
    0 20px 50px rgba(255,255,255,.05);
}

.card img{
    width:75px;
    height:75px;

    object-fit:contain;

    margin-bottom:25px;
}

.card h3{
    margin-bottom:15px;
}

.card p{
    color:#aaaaaa;
    line-height:1.8;
}

.learn-more{
    display:block;
    margin-top:20px;
    color:#d2d2d2;
}

/* =========================
   SERVICES
========================= */

.services{
    padding:120px 8%;
    background:#090909;
}

.service-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;
}

.service-card{
    background:#111;

    border:1px solid rgba(255,255,255,.06);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
}

/* =========================
   ABOUT
========================= */

.about{
    max-width:1000px;
    margin:auto;

    padding:120px 8%;

    text-align:center;
}

.about p{
    color:#a9a9a9;
    line-height:2;
}

/* =========================
   CONTACT
========================= */

.contact{
    max-width:900px;
    margin:auto;

    padding:120px 8%;
}

.contact form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact input,
.contact textarea{
    background:#111;

    color:white;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    padding:18px;
}

.contact textarea{
    resize:vertical;
}

.contact button{
    border:none;
    cursor:pointer;
}

.contact-email{
    text-align:center;
    margin-top:40px;
    color:#bdbdbd;
}

/* =========================
   FOOTER
========================= */

footer{
    padding:70px 20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.06);
}

.footer-logo{
    font-size:1.6rem;
    font-weight:800;
    letter-spacing:4px;
    margin-bottom:10px;
}

footer p{
    color:#8e8e8e;
    margin:8px 0;
}

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

@media(max-width:1100px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-content,
    .hero-visual{
        width:100%;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero h1{
        font-size:4rem;
    }
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:3rem;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-primary,
    .btn-secondary{
        width:240px;
        text-align:center;
    }

    .logo-row{
        gap:25px;
    }

    .logo-row span{
        font-size:1.2rem;
    }
}
