:root {
    --primary: #4ade80; /* Green accent from the image */
    --bg: #121212;
    --card-bg: #1e1e1e;
    --text: #ffffff;
    --text-dim: #a0a0a0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container { width: 90%; max-width: 1100px; margin: auto; }

nav {
    padding: 20px 0;
    border-bottom: 1px solid #333;
    position: sticky; top: 0; background: var(--bg); z-index: 100;
}

.logo img {
    height: 40px;
    width: auto;
}

.hero-logo {
    height: 90px;
    margin-bottom: 20px;
}


nav .container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-weight: 800; font-size: 1.5rem; letter-spacing: 1px; color: var(--primary); }

nav ul { display: flex; list-style: none; }

nav ul li { margin-left: 20px; }

nav ul li a { color: var(--text); text-decoration: none; font-size: 0.9rem; }

header { padding: 100px 0; text-align: center; }

header h1 { font-size: 3.5rem; margin-bottom: 20px; }

header p { font-size: 1.2rem; color: var(--text-dim); margin-bottom: 30px; }

.btn {
    background: var(--primary); color: #000;
    padding: 12px 30px; text-decoration: none;
    border-radius: 5px; font-weight: 600;
}

section { padding: 80px 0; }

h2 { font-size: 2.5rem; margin-bottom: 20px; text-align: center; }

.dark { background: #0a0a0a; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }

.card {
    background: var(--card-bg); padding: 30px;
    border-radius: 10px; border: 1px solid #333;
}

.contact-info { text-align: center; margin-top: 20px; }

footer { padding: 40px 0; text-align: center; border-top: 1px solid #333; color: var(--text-dim); }

footer a { color: var(--primary); text-decoration: none; }
