/* TECH BACKGROUND */

.tech-background{

    position:fixed;

    width:100%;
    height:100vh;

    top:0;
    left:0;

    overflow:hidden;

    z-index:-1;

    background:
    radial-gradient(
    circle at center,
    #081120,
    #050816 70%
    );
}

/* GRID */

.grid{

    position:absolute;

    width:100%;
    height:100%;

    background-image:

    linear-gradient(
    rgba(0,170,255,0.08) 1px,
    transparent 1px
    ),

    linear-gradient(
    90deg,
    rgba(0,170,255,0.08) 1px,
    transparent 1px
    );

    background-size:60px 60px;

    animation:gridMove 15s linear infinite;

    opacity:0.3;
}

@keyframes gridMove{

    0%{

        transform:
        translateY(0px);
    }

    100%{

        transform:
        translateY(60px);
    }

}

/* GLOW EFFECTS */

.glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:0.35;

    animation:
    pulse 6s infinite alternate;
}

.glow-1{

    width:400px;
    height:400px;

    background:#008cff;

    top:-100px;
    left:-100px;
}

.glow-2{

    width:350px;
    height:350px;

    background:#00bbff;

    bottom:-100px;
    right:-100px;
}

@keyframes pulse{

    from{

        transform:scale(1);
    }

    to{

        transform:scale(1.3);
    }

}

/* PARTICLES */

.particles{

    position:absolute;

    width:100%;
    height:100%;

    overflow:hidden;
}

.particles::before,
.particles::after{

    content:'';

    position:absolute;

    width:2px;
    height:2px;

    background:#00aaff;

    box-shadow:

    100px 200px #00aaff,
    300px 400px #00aaff,
    500px 150px #00aaff,
    700px 600px #00aaff,
    900px 300px #00aaff,
    1200px 500px #00aaff,
    1400px 200px #00aaff,
    1600px 700px #00aaff,
    1800px 400px #00aaff;

    animation:
    particlesMove 20s linear infinite;
}

.particles::after{

    animation-duration:30s;

    opacity:0.5;
}

@keyframes particlesMove{

    from{

        transform:
        translateY(0);
    }

    to{

        transform:
        translateY(-1000px);
    }

}


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

body{

    background:#050816;
    color:#fff;
    font-family:Arial, sans-serif;
    overflow-x:hidden;
position:relative;
}

/* NEON CANVAS */

#neonCanvas{

    position:absolute;

    width:100%;
    height:100%;

    top:0;
    left:0;

    z-index:0;

    opacity:0.7;
}




/* HEADER */

.header{

    width:100%;
    padding:25px 8%;

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

    position:fixed;
    top:0;
    left:0;

    z-index:999;

    background:
    rgba(5,8,22,0.55);

    backdrop-filter:blur(14px);

    border-bottom:
    1px solid rgba(0,170,255,0.08);

    box-shadow:
    0 0 30px rgba(0,140,255,0.08);
}

.logo{

    font-size:34px;
    font-weight:800;

    letter-spacing:2px;

    color:#fff;

    text-shadow:
    0 0 10px rgba(0,170,255,0.5);
}

.logo span{
    color:#00aaff;
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{

    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.menu a:hover{

    color:#00aaff;
}

/* HERO */

.hero{

    min-height:100vh;

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

    text-align:center;

    position:relative;

    padding:120px 8%;

    overflow:hidden;
}

.hero-content{

    width:100%;
    max-width:1100px;

    position:relative;
    z-index:2;
}

.hero h1{

    font-size:82px;

    line-height:1;

    margin-bottom:35px;

    font-weight:900;

    letter-spacing:-2px;

    text-transform:uppercase;

    text-shadow:
    0 0 15px rgba(0,170,255,0.8),
    0 0 35px rgba(0,119,255,0.5);
}

.hero h1 span{
    color:#00aaff;
}

.btn-primary{

    background:
    linear-gradient(
    135deg,
    #0066ff,
    #00c3ff
    );

    color:#fff;

    box-shadow:
    0 0 25px rgba(0,140,255,0.45);

    border:
    1px solid rgba(255,255,255,0.08);
}

/* BUTTONS */

.hero-buttons{

    display:flex;
    gap:20px;
    justify-content:center;
    align-items:center;

    margin-top:20px;

    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{

    min-width:260px;

    padding:18px 35px;

    border-radius:14px;

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

    text-decoration:none;

    font-weight:700;

    letter-spacing:1px;

    transition:0.3s ease;

    position:relative;

    overflow:hidden;
}

/* PRIMARY */

.btn-primary{

    background:
    linear-gradient(
    135deg,
    #0066ff,
    #00c3ff
    );

    color:#fff;

    border:
    1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 0 25px rgba(0,140,255,0.35);
}

/* SECONDARY */

.btn-secondary{

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(0,170,255,0.4);

    color:#00c3ff;

    backdrop-filter:blur(10px);
}

/* HOVER */

.btn-primary:hover,
.btn-secondary:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 0 35px rgba(0,170,255,0.4);
}
.btn-primary:hover,
.btn-secondary:hover{

    transform:translateY(-5px);
}

/* SERVICES */

.services{

    padding:120px 8%;
}

.services h2{

    text-align:center;
    font-size:48px;
    margin-bottom:70px;

    color:#00aaff;
}

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{

    background:
    linear-gradient(
    180deg,
    rgba(12,18,35,0.95),
    rgba(8,12,25,0.95)
    );

    padding:45px;

    border-radius:24px;

    border:
    1px solid rgba(0,170,255,0.12);

    transition:0.4s ease;

    backdrop-filter:blur(12px);

    position:relative;

    overflow:hidden;
}

.card:hover{

    transform:
    translateY(-12px);

    border-color:
    rgba(0,170,255,0.4);

    box-shadow:

    0 0 25px rgba(0,170,255,0.15),
    0 0 60px rgba(0,140,255,0.12);
}

.card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:2px;

    background:
    linear-gradient(
    90deg,
    transparent,
    #00aaff,
    transparent
    );
}

.icon{

    font-size:50px;
    margin-bottom:20px;
}

.card h3{

    margin-bottom:20px;
    color:#00aaff;
}

/* BENEFITS */

.benefits{

    padding:100px 8%;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.benefit{

    text-align:center;

    padding:45px;

    border-radius:24px;

    background:
    rgba(10,15,30,0.7);

    border:
    1px solid rgba(0,170,255,0.12);

    backdrop-filter:blur(12px);

    transition:0.3s;
}

.benefit:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 0 30px rgba(0,170,255,0.12);
}

/* CONTACT */

.contact{

    padding:100px 8%;
    text-align:center;
}

.contact h2{

    font-size:42px;
    margin-bottom:30px;
    color:#00aaff;
}

.contact p{

    margin:10px 0;
    font-size:20px;
}

/* FOOTER */

.footer{

    padding:30px;
    text-align:center;

    border-top:1px solid rgba(255,255,255,0.1);

    color:#888;
}






/* REQUEST PAGE */

.request-page{

    min-height:100vh;

    padding:
    180px
    8%
    100px;

    display:flex;
    justify-content:center;
    align-items:center;
}

.request-container{

    width:100%;
    max-width:900px;

    background:
    rgba(10,15,30,0.85);

    border:
    1px solid rgba(0,170,255,0.2);

    border-radius:25px;

    padding:60px;

    backdrop-filter:blur(20px);

    box-shadow:
    0 0 40px rgba(0,140,255,0.15);
}

.request-header{

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

.request-header h1{

    font-size:52px;
    line-height:1.1;
    margin-bottom:20px;

    text-shadow:
    0 0 10px #00aaff,
    0 0 20px #0077ff;
}

.request-header h1 span{

    color:#00aaff;
}

.request-header p{

    color:#bbb;
    font-size:18px;
}

/* FORM */

.request-form{

    display:flex;
    flex-direction:column;
    gap:25px;
}

.form-group{

    display:flex;
    flex-direction:column;
}

.form-group label{

    margin-bottom:10px;
    color:#00aaff;
    font-weight:bold;
}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;

    padding:18px;

    border-radius:12px;

    border:
    1px solid rgba(0,170,255,0.2);

    background:#0b1120;

    color:#fff;

    outline:none;

    transition:0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    border-color:#00aaff;

    box-shadow:
    0 0 15px rgba(0,170,255,0.3);
}

textarea{

    resize:none;
}

/* BUTTON */

.btn-submit{

    margin-top:20px;

    padding:20px;

    border:none;

    border-radius:12px;

    font-size:16px;
    font-weight:bold;

    cursor:pointer;

    color:#fff;

    background:
    linear-gradient(
    45deg,
    #0077ff,
    #00c3ff
    );

    transition:0.3s;

    box-shadow:
    0 0 20px rgba(0,140,255,0.4);
}

.btn-submit:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 30px rgba(0,170,255,0.6);
}

/* RESPONSE */

.response-message{

    margin-top:30px;

    text-align:center;

    font-size:18px;

    color:#00ff95;
}

/* RESPONSIVE */

@media(max-width:768px){

    .request-container{

        padding:40px 25px;
    }

    .request-header h1{

        font-size:38px;
    }

}


@media(max-width:900px){

    .hero h1{

        font-size:54px;
    }

    .hero p{

        font-size:20px;
    }

    .hero-buttons{

        flex-direction:column;
        align-items:center;
    }

    .menu{

        display:none;
    }

}