/* General Styling */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0b0e11;
    color: white;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    align-items: center;
}
.logo { font-size: 24px; font-weight: bold; }
.logo span { color: #00d2ff; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: white; }
.btn-sm { background: #00d2ff; padding: 10px 20px; border-radius: 20px; color: #0b0e11 !important; }

/* Hero */
.hero { text-align: center; padding: 100px 20px; }
.hero h1 { font-size: 48px; }
.highlight { color: #00d2ff; }
.btn-lg { padding: 15px 30px; font-size: 18px; background: #00d2ff; border: none; border-radius: 30px; cursor: pointer; }

/* Features */
.features { display: flex; justify-content: center; gap: 30px; padding: 50px; }
.card { background: #1a1f26; padding: 30px; border-radius: 10px; text-align: center; width: 200px; }
.card h3 { color: #00d2ff; }
