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

body {
    font-family: Arial, sans-serif;
    color: white;
    background: #0b0f1a;
}

/* HEADER */

.header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    z-index: 100;
}

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

/* HERO */

.hero {
    height: 100vh;
    position: relative;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    top: 40%;
    text-align: center;
}

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

.hero button {
    padding: 15px 30px;
    border: none;
    background: linear-gradient(45deg,#00e5ff,#7a5cff);
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
}

/* SECTIONS */

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

.about {
    background: #111;
}

.business {
    background: #0b0f1a;
}

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

.card {
    background: #111;
    padding: 40px;
    border-radius: 15px;
    width: 200px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    background: linear-gradient(45deg,#00e5ff,#7a5cff);
}

/* PROJECT */

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

.project-item {
    width: 250px;
    height: 200px;
    background: #222;
    border-radius: 10px;
}

/* CONTACT */

.contact {
    background: #111;
}
