/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Color Theme ===== */
:root {
    --bg: #0a0a0a;
    --card-bg: #111;
    --text: #e6e6e6;
    --accent: #00ff9d;
    --accent-glow: 0 0 12px #00ff9d;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== Body ===== */
body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.6;
    padding: 20px;
}

/* ===== Hero Section ===== */
.hero {
    text-align: center;
    padding: 80px 20px;
    border-bottom: 1px solid #222;
}

.hero h1 {
    font-size: 3rem;
    color: var(--accent);
    text-shadow: var(--accent-glow);
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* ===== Section Layout ===== */
section {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid #222;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.05);
}

section h2 {
    color: var(--accent);
    margin-bottom: 15px;
    text-shadow: var(--accent-glow);
}

/* ===== Services List ===== */
#services ul {
    list-style: none;
}

#services li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    font-size: 1.1rem;
}

#services li:last-child {
    border-bottom: none;
}

/* ===== Contact Section ===== */
#contact a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
}

#contact a:hover {
    text-shadow: var(--accent-glow);
}

/* ===== Footer ===== */
footer {
    text-align: center;
    margin-top: 80px;
    padding: 20px;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ===== Fade-in Animation ===== */
section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Link Hover Glow ===== */
a {
    transition: 0.3s ease;
}

a:hover {
    color: var(--accent);
    text-shadow: var(--accent-glow);
}

/* ===== Cyber Pulse Accent ===== */
.hero h1 {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { text-shadow: 0 0 8px #00ff9d; }
    50% { text-shadow: 0 0 20px #00ff9d; }
    100% { text-shadow: 0 0 8px #00ff9d; }
}
