body {
    margin: 0;
    font-family: "Orbitron", sans-serif;
    background: #0e0e0e;
    color: #00ffea;
    overflow-x: hidden;
    letter-spacing: 1.6px;
}

header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #000;
    border-bottom: 2px solid #00ffea;
    z-index: 10;
}

.menu-icon {
    font-size: 2rem;
    cursor: pointer;
    display: block;
}

header h1 {
    font-size: 1.5rem;
}

.dash-button {
    display: flex;
    gap: 10px;
}

.dash-button button {
    background: #00ffea;
    color: #000;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

header .dash-button button:hover {
    background: #00d1b6;
}

#hero {
    background: linear-gradient(135deg, #00ffea, #000);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #000;
}

.hero-content {
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00ffea;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.btn:hover {
    background: #00d1b6;
}

#services {
    padding: 50px 20px;
    background: #000;
    text-align: center;
}

#services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background: #0e0e0e;
    border: 1.6px solid #00ffea;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-decoration: none;
    color: #00ffea;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#about {
    padding: 50px 20px;
    text-align: center;
    background: #000;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.person-card {
    position: static;
    background: #0e0e0e;
    border: 2px solid #00ffea;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

.person-card .landscape {
    width: 100%;
    border-radius: 10px;
}

.person-card .portrait {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #00ffea;
}

.person-card p {
    margin-top: 10px;
    font-size: 1.2rem;
}

footer {
    padding: 20px;
    text-align: center;
    background: #000;
    border-top: 2px solid #00ffea;
}
