/* =========================================================
   GLOBAL RESET
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background: #0d0d0d;
    color: white;
    font-family: 'Inter', sans-serif;

    overflow-x: clip;
    overflow-y: visible !important;
}

/* =========================================================
   NAVBAR — ROYAL PURPLE
========================================================= */
.navbar {
    background-color: #111 !important;
    border-bottom: 2px solid #5A00B5; /* deeper purple */
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
}

.navbar-brand span {
    font-weight: 700;
    font-size: 20px;
    color: #C06BFF; /* electric purple */
}

.nav-link {
    color: #E8D6FF !important; /* soft pale purple */
    font-weight: 600;
}

.nav-link:hover {
    color: #9D4BFF !important; /* neon purple */
}

/* Dropdown */
.dropdown-menu {
    background: #141414;
    border: 1px solid #5A00B5;
}

.dropdown-item {
    color: #E8D6FF;
}

.dropdown-item:hover {
    background: #5A00B5;
    color: white;
}

/* =========================================================
   HEADINGS — STRONG PURPLE
========================================================= */
h1, h2, h3, h4, h5, h6 {
    color: #C06BFF; /* electric purple */
    font-weight: 800;
    text-transform: uppercase;
}

/* =========================================================
   LINKS
========================================================= */
a {
    color: #9D4BFF;
    text-decoration: none;
}

a:hover {
    color: #C06BFF;
}

/* =========================================================
   CARDS / PANELS — DEEP PURPLE TRIMS
========================================================= */
.card,
.feature-card,
.comp-card {
    background: #141414;
    border: 1px solid #5A00B5; /* royal purple */
    border-radius: 12px;
    box-shadow: 0 0 14px rgba(157,75,255,0.45); /* neon purple glow */
}

/* =========================================================
   PURPLE GLOW EFFECT
========================================================= */
.purple-glow:hover,
.comp-card:hover {
    transform: scale(1.02);
    border-color: #9D4BFF; /* neon purple */
    box-shadow: 0 0 18px rgba(157,75,255,0.55);
    transition: 0.25s ease;
}

/* =========================================================
   FOOTER — ROYAL PURPLE TRIM
========================================================= */
.footer-eul {
    background: #111;
    border-top: 2px solid #5A00B5;
}

.footer-title {
    color: #C06BFF;
    font-weight: 800;
}

.footer-heading {
    color: #C06BFF;
    font-weight: 700;
}

.footer-link {
    display: block;
    color: #E8D6FF;
    margin-bottom: 6px;
}

.footer-link:hover {
    color: #9D4BFF;
}

.footer-text {
    color: #ccc;
}

/* =========================================================
   DIVIDERS + TRIMS — PURPLE GRADIENTS
========================================================= */
.section-divider {
    height: 3px;
    width: 100%;
    background: radial-gradient(circle, rgba(157,75,255,0.5), transparent);
    margin: 25px 0;
}

.thick-line {
    height: 5px;
    width: 100%;
    background: linear-gradient(to right, #5A00B5, #9D4BFF, #C06BFF, #5A00B5);
}

/* =========================================================
   UTILITY
========================================================= */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}
/* GLOBAL HERO TEXT OVERRIDE */
.hero .page-title,
.hero .subtitle {
    color: white !important;
    text-shadow: 0 0 12px rgba(0,0,0,0.6);
}
