* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #0e0e0e;
    color: #fff;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

header .logo {
    font-size: 28px;
    font-weight: 700;
}

header nav a {
    margin-left: 25px;
    color: #ddd;
    text-decoration: none;
    font-size: 18px;
}

header nav a:hover {
    color: #00eaff;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    padding: 140px 60px 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 52px;
}

.hero-text h1 span {
    color: #00eaff;
}

.hero-text p {
    margin: 15px 0;
    font-size: 18px;
    max-width: 450px;
}

.btn {
    padding: 12px 30px;
    background: #00eaff;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.hero-img img {
    width: 420px;
}

/* ABOUT */
.about, .services, .projects, .contact {
    padding: 80px 60px;
    text-align: center;
}

.about p {
    max-width: 700px;
    margin: auto;
    color: #ccc;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    transition: .3s;
}

.service-box:hover {
    background: #00eaff;
    color: #000;
}

.service-box i {
    font-size: 40px;
    margin-bottom: 15px;
}

/* PROJECTS */
.projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    transition: .3s;
    text-align: center;
}

.project-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 12px;
}

.project-card:hover {
    transform: scale(1.05);
}

/* CONTACT */
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
}

button {
    padding: 12px;
    background: #00eaff;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

footer {
    padding: 20px;
    text-align: center;
    background: #111;
    margin-top: 20px;
}