﻿/* =======================
   METALLIC CORPORATE BLUE THEME
   ======================= */

/* BRAND COLORS */
:root {
    --m-blue: #0A1A2F;
    --m-blue-light: #133B73;
    --m-blue-bright: #1A73E8;
    --m-gray: #E5E7EB;
    --m-white: #ffffff;
}

/* GLOBAL */
body {
    background: linear-gradient(180deg, #0A1A2F, #0D223C);
    color: var(--m-white);
}

/* =======================
   NAVBAR
   ======================= */
.navbar {
    background: linear-gradient(90deg, #0A1A2F, #133B73);
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.45);
}

    .navbar .nav-link,
    .navbar-brand {
        color: #fff !important;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

        .navbar .nav-link:hover {
            color: var(--m-blue-bright) !important;
        }

/* =======================
   BRAND LOGO
   ======================= */
.brand-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
}

    /* Artistic O */
    .brand-logo .logo-o {
        color: #ff4c4c;
        text-shadow: 0 0 6px rgba(255,76,76,0.6);
    }

    /* NEXGEN subscript */
    .brand-logo .brand-sub {
        font-family: 'Segoe UI', sans-serif;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 2px;
        color: #7EC8FF;
        margin-left: 8px;
        position: relative;
        top: 6px;
        text-transform: uppercase;
        animation: nexgenGlow 3s ease-in-out infinite;
    }

/* ===============================
   PROFESSIONAL NAV DROPDOWNS
   =============================== */

.nav-dropdown .dropdown-menu {
    background: linear-gradient(135deg, #0A1A2F, #133B73);
    border-radius: 14px;
    padding: 12px 0;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 12px 35px rgba(0,0,0,0.55);
    min-width: 260px;
    margin-top: 12px;
    backdrop-filter: blur(6px);
    animation: dropdownFade 0.25s ease-out;
}

.nav-dropdown .dropdown-item {
    color: #e8f1ff;
    padding: 10px 22px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

    .nav-dropdown .dropdown-item:hover {
        background: linear-gradient(90deg, rgba(126,200,255,0.18), rgba(126,200,255,0.05));
        color: #7EC8FF;
        transform: translateX(4px);
    }

.nav-dropdown .dropdown-divider {
    border-color: rgba(255,255,255,0.15);
    margin: 8px 18px;
}

/* Hover open support */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* ===================
   MEGA DROPDOWN
   =================== */

.mega-dropdown .dropdown-menu.mega-menu {
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    padding: 35px 50px;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(135deg, #0A1A2F, #133B73);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 35px rgba(0,0,0,0.55);
    margin-top: 0.5rem;
}

.mega-menu h6 {
    color: #4D9CFF;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.mega-menu .dropdown-item {
    color: #ffffff !important;
    padding: 6px 0;
    font-size: 0.9rem;
}

    .mega-menu .dropdown-item:hover {
        color: #1A73E8 !important;
        transform: translateX(5px);
    }

/* =======================
   BUTTONS
   ======================= */
.btn-primary {
    background: linear-gradient(90deg, #1A73E8, #4D9CFF);
    border: none;
    color: #fff;
    box-shadow: 0 4px 12px rgba(26,115,232,0.35);
}

    .btn-primary:hover {
        background: linear-gradient(90deg, #135DC0, #1A73E8);
        transform: translateY(-1px);
    }

/* =======================
   CARDS
   ======================= */
.card {
    background: #11243F;
    border: 1px solid #1A73E8;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    color: var(--m-white);
}

.card-title {
    color: #4D9CFF;
    font-weight: 600;
}

/* =======================
   FOOTER
   ======================= */
footer {
    background: #0A1A2F;
    color: #ddd;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    footer a {
        color: #4D9CFF;
    }

/* =======================
   ANIMATIONS
   ======================= */

@keyframes nexgenGlow {
    0% {
        text-shadow: 0 0 4px rgba(126,200,255,0.25);
        opacity: 0.85;
    }

    50% {
        text-shadow: 0 0 10px rgba(126,200,255,0.75), 0 0 18px rgba(126,200,255,0.45);
        opacity: 1;
    }

    100% {
        text-shadow: 0 0 4px rgba(126,200,255,0.25);
        opacity: 0.85;
    }
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
