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

body{
    font-family:'Montserrat', sans-serif;
    background:#050505;
    color:white;
    overflow-x:hidden;
}

.header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(0,0,0,0.7);
    backdrop-filter:blur(10px);
}

.logo-container img{
    width:120px;
}

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

.nav a{
    color:white;
    text-decoration:none;
    font-weight:600;
}

.hero{
    width:100%;
    height:100vh;
    background:url('assets/banner.jpg') center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
}

.hero h1{
    font-size:5rem;
    font-weight:900;
    background:linear-gradient(to right,#ffd700,#ffffff,#8a00ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    margin-top:20px;
    font-size:1.3rem;
    line-height:1.8;
    color:#dddddd;
}

.buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-primary,
.btn-secondary{
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.btn-primary{
    background:linear-gradient(to right,#8a00ff,#d100ff);
    color:white;
}

.btn-secondary{
    border:2px solid #ffd700;
    color:#ffd700;
}

.services{
    padding:120px 8%;
    background:#090909;
    text-align:center;
}

.services h2{
    font-size:3rem;
    margin-bottom:60px;
    color:#ffd700;
}

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

.card{
    background:#111;
    padding:40px;
    border-radius:20px;
}

.tech{
    padding:120px 8%;
    background:linear-gradient(135deg,#14001f,#000000);
    text-align:center;
}

.tech h2{
    font-size:3rem;
    margin-bottom:30px;
    color:#ffd700;
}

.footer{
    padding:60px 8%;
    text-align:center;
    background:#000;
}
