/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
    border-bottom: 1px solid #0ff;
}

.navbar .logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #0ff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0ff;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #020202, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #0ff;
    margin-bottom: 15px;
}

.intro {
    max-width: 600px;
    margin: 0 auto 25px;
    color: #ccc;
}

.btn {
    padding: 12px 25px;
    background: #0ff;
    color: #000;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #00cccc;
}

/* Sections */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0ff;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #111;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    background: #1a1a1a;
}

.icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.card p {
    color: #ccc;
}

/* About */
.about-section p {
    text-align: center;
    color: #ddd;
    max-width: 800px;
    margin: auto;
}

/* Contact */
.contact-section ul {
    list-style: none;
    text-align: center;
    color: #ccc;
}

.contact-section li {
    margin: 10px 0;
}

.contact-section a {
    color: #0ff;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #111;
    font-size: 0.9rem;
    color: #666;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}
