/* 🌙 Premium Dark Mode */
body {
    background: #0c0c0d;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* 🏆 Navigation Bar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #121214;
    padding: 20px 50px;
    border-bottom: 2px solid #1f1f22;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00aaff;
}

.logo span {
    color: #ff007f;
}

/* 🎨 Navigation */
nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: #bbb;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

nav a.active, nav a:hover {
    background: #00aaff;
    color: #000;
}

/* 🚀 Features Hero Section */
.features-hero {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, #0c0c0d, #16161a);
}

.features-content h1 {
    font-size: 42px;
    color: #00aaff;
    margin-bottom: 10px;
}

.features-content p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 10px auto;
}

/* 🔥 Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

/* 🛠 Feature Box */
.feature-box {
    background: #1a1a1d;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.4);
    text-align: center;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.8);
}

.feature-box h3 {
    color: #00aaff;
    font-size: 20px;
}

.feature-box p {
    font-size: 16px;
    color: #ccc;
    margin-top: 10px;
}

/* 🚀 Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #121214;
    color: #bbb;
}

