:root {
    --bg: #0b0e14;
    --card: #161b22;
    --accent: #6366f1; /* Indigo from your logo */
    --text: #e6edf3;
}

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

nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    background: rgba(11, 14, 20, 0.9);
    position: fixed;
    width: 90%;
    z-index: 1000;
}

.logo { font-weight: bold; font-size: 1.5rem; color: var(--accent); }

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; }

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1e293b 0%, #0b0e14 100%);
}

.hero h1 { font-size: 3.5rem; margin-bottom: 10px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.2rem; max-width: 700px; opacity: 0.8; }

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.services { padding: 100px 5%; text-align: center; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: var(--card);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #30363d;
    transition: 0.3s;
}

.card:hover { border-color: var(--accent); transform: translateY(-5px); }

.contact { padding: 100px 5%; background: #0d1117; }
.contact-container { display: flex; flex-wrap: wrap; gap: 50px; justify-content: center; }
.info { flex: 1; min-width: 300px; }
form { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 15px; }

input, textarea {
    padding: 15px;
    background: var(--bg);
    border: 1px solid #30363d;
    color: white;
    border-radius: 5px;
}

footer { text-align: center; padding: 40px; font-size: 0.8rem; opacity: 0.6; }