/* =========================
   GLOBAL RESET
========================= */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #020617;
    color: white;
}

/* =========================
   LAYOUT SYSTEM
========================= */
.container {
    width: 85%;
    max-width: 1100px;
    margin: 0 auto;
}

/* =========================
   HEADER (STABLE VERSION)
========================= */
.header {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    background: #020617;
}

/* IMPORTANT FIX */
.header-container {
    display: flex;
    align-items: center;
}

/* LOGO */
.logo {
    font-size: 30px;
    font-weight: 600;
    color: white;
}

/* NAVBAR (FORCED RIGHT ALIGN) */
.navbar {
    margin-left: auto;   /* 🔥 THIS fixes your alignment issue */
    display: flex;
}

/* LINKS */
.navbar a {
    margin-left: 25px;
    text-decoration: none;
    color: #94a3b8;
    font-size: 16px;
    transition: 0.3s ease;
}

/* HOVER */
.navbar a:hover {
    color: #22c55e;
}

/* ACTIVE */
.navbar a.active {
    color: #22c55e;
}

/* =========================
   SECTION TITLE (CLEAN)
========================= */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
}

/* REMOVE GREEN LINE */
.section-title::before,
.section-title::after {
    display: none !important;
}