*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#050816;
    color:white;
    overflow-x:hidden;
}

.logo img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #00e5ff;
    animation: spin 12s linear infinite;
    box-shadow:0 0 15px rgba(0,229,255,0.4);
    transition:0.3s;
}

.logo img:hover{
    transform:scale(1.1);
}
@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
nav{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    backdrop-filter:blur(12px);
}

.sub-text{
    margin-top:20px;
    font-size:0.9rem;
    color:#00e5ff;
    letter-spacing:2px;
    opacity:0.8;
}
.logo{
    font-size:24px;
    font-weight:700;
    color:#00e5ff;
}

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

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#00e5ff;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    overflow:hidden;
    padding:20px;
    padding-top: 140px;
}

.hero-content{
    max-width:900px;
    z-index:2;
}

.hero h1{
    font-size:4rem;
    line-height:1.2;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    color:#b5b5b5;
    margin-bottom:40px;
}

.about{
    padding:120px 8%;
    text-align:center;
}

.about h2{
    font-size:2.5rem;
    margin-bottom:20px;
    color:#00e5ff;
}

.about p{
    max-width:800px;
    margin:0 auto 20px auto;
    color:#b5b5b5;
    line-height:1.8;
}
.features{
    padding:120px 8%;
    text-align:center;
}

.features h2{
    font-size:2.5rem;
    color:#00e5ff;
    margin-bottom:50px;
}

.features-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.card{
    background:rgba(255,255,255,0.05);
    padding:25px;
    border-radius:15px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(0,229,255,0.2);
    transition:0.4s;
    cursor:pointer;
}

.card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 0 25px rgba(0,229,255,0.2);
}

.card h3{
    color:#00e5ff;
    margin-bottom:10px;
}

.card p{
    color:#b5b5b5;
    font-size:0.95rem;
}
.jobs{
    padding:120px 8%;
    text-align:center;
}

.jobs h2{
    font-size:2.5rem;
    color:#00e5ff;
    margin-bottom:40px;
}

.job{
    background:rgba(255,255,255,0.05);
    margin:20px auto;
    padding:25px;
    max-width:700px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,0.1);
    transition:0.3s;
}

.job:hover{
    transform:scale(1.02);
    border-color:#00e5ff;
}

.job h3{
    color:white;
    margin-bottom:10px;
}

.job p{
    color:#b5b5b5;
    margin-bottom:15px;
}

.apply-btn{
    display:inline-block;
    padding:10px 25px;
    background:#00e5ff;
    color:black;
    border-radius:25px;
    text-decoration:none;
    font-weight:600;
}
.roadmap{
    padding:120px 8%;
    text-align:center;
}

.roadmap h2{
    font-size:2.5rem;
    color:#00e5ff;
    margin-bottom:40px;
}

.road{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

.step{
    padding:20px;
    border-radius:12px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    transition:0.3s;
}

.step:hover{
    border-color:#00e5ff;
    transform:scale(1.03);
}

.step h3{
    color:#00e5ff;
    margin-bottom:10px;
}

.step p{
    color:#b5b5b5;
}
.footer{
    padding:80px 8%;
    text-align:center;
    background:rgba(255,255,255,0.02);
    margin-top:100px;
}

.footer h2{
    color:#00e5ff;
    margin-bottom:15px;
}

.footer p{
    color:#b5b5b5;
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.footer-links a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#00e5ff;
}

.copy{
    font-size:0.9rem;
    opacity:0.6;
}
.why{
    padding:120px 8%;
    text-align:center;
}

.why h2{
    font-size:2.5rem;
    color:#00e5ff;
    margin-bottom:40px;
}

.why-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.why-card{
    padding:15px 25px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(0,229,255,0.2);
    border-radius:30px;
    color:white;
    transition:0.3s;
    cursor:pointer;
}

.why-card:hover{
    background:#00e5ff;
    color:black;
    transform:translateY(-5px);
}
.faq{
    padding:120px 8%;
    text-align:center;
}

.faq h2{
    font-size:2.5rem;
    color:#00e5ff;
    margin-bottom:40px;
}

.faq-item{
    max-width:800px;
    margin:20px auto;
    padding:20px;
    background:rgba(255,255,255,0.05);
    border-radius:12px;
    text-align:left;
    border:1px solid rgba(255,255,255,0.1);
    transition:0.3s;
}

.faq-item:hover{
    border-color:#00e5ff;
}

.faq-item h3{
    color:white;
    margin-bottom:10px;
}

.faq-item p{
    color:#b5b5b5;
}
.contact{
    padding:120px 8%;
    text-align:center;
}

.contact h2{
    font-size:2.5rem;
    color:#00e5ff;
    margin-bottom:40px;
}

.contact-box{
    max-width:600px;
    margin:0 auto;
    padding:30px;
    background:rgba(255,255,255,0.05);
    border-radius:15px;
    border:1px solid rgba(255,255,255,0.1);
}

.contact-box p{
    color:#b5b5b5;
    margin-bottom:10px;
}

.contact-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 30px;
    background:#00e5ff;
    color:black;
    border-radius:25px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.contact-btn:hover{
    transform:scale(1.05);
}
.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    padding:15px 35px;
    background:#00e5ff;
    color:black;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

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

.btn-secondary{
    padding:15px 35px;
    border:2px solid #00e5ff;
    color:#00e5ff;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
}

.btn-secondary:hover{
    background:#00e5ff;
    color:black;
}

.glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.glow1{
    width:400px;
    height:400px;
    background:#00e5ff;
    top:-150px;
    left:-100px;
    opacity:.25;
}

.glow2{
    width:350px;
    height:350px;
    background:#6f00ff;
    right:-100px;
    bottom:-100px;
    opacity:.25;
}

@media(max-width:768px){

    nav ul{
        display:none;
    }

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

    .hero p{
        font-size:1rem;
    }

}