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

body{
    font-family:'Inter',sans-serif;
    background:#0b1020;
    color:white;
}

.container{
    max-width:1200px;
    margin:auto;
}

header{
    position:fixed;
    width:100%;
    z-index:1000;
    background:#0b1020dd;
    backdrop-filter:blur(10px);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
}

.logo{
    font-size:28px;
    font-weight:800;
    color:#00d4ff;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
}

.hero{
    height:100vh;
    background:url('../assets/hero.jpg') center/cover;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero h1{
    font-size:64px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    max-width:700px;
}

.btn{
    margin-top:30px;
    display:inline-block;
    padding:15px 35px;
    background:#00d4ff;
    color:black;
    text-decoration:none;
    border-radius:6px;
    font-weight:700;
}

.section{
    padding:100px 50px;
}

.section h2{
    text-align:center;
    margin-bottom:50px;
    font-size:42px;
}

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

.card{
    background:#131b34;
    border-radius:12px;
    overflow:hidden;
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card h3{
    padding:20px;
}

.card p{
    padding:0 20px 20px;
}

.dark-section{
    padding:100px 50px;
    background:#070b16;
    text-align:center;
}

.wide-image{
    width:100%;
    max-width:1200px;
    margin:40px auto;
    border-radius:15px;
}

.industry-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.industry-list span{
    background:#00d4ff22;
    padding:10px 20px;
    border-radius:50px;
}

.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin-top:40px;
}

.steps div{
    background:#131b34;
    padding:30px;
    border-radius:10px;
}

.contact{
    padding:100px 50px;
    text-align:center;
}

form{
    max-width:700px;
    margin:40px auto;
}

input,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:none;
    border-radius:6px;
}

button{
    padding:15px 35px;
    border:none;
    background:#00d4ff;
    font-weight:700;
    cursor:pointer;
    border-radius:6px;
}

footer{
    text-align:center;
    padding:30px;
    background:black;
}