/* Aegis Global Insurance & Actuarial Hyper-Network Custom Styles */

:root {
    --space-blue: #030F26;
    --amber-gold: #D4AF37;
    --life-blue: #00E5FF;
    --defense-white: #F8FAFC;
    --dark-bg: #010814;
    --card-bg: rgba(3, 15, 38, 0.8);
    --border-gold: rgba(212, 175, 55, 0.3);
}

body {
    background-color: var(--dark-bg);
    color: var(--defense-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--amber-gold);
}

.mono-data {
    font-family: 'JetBrains Mono', monospace;
    color: var(--life-blue);
}

/* Navbar Customization */
.navbar {
    background-color: rgba(3, 15, 38, 0.95);
    border-bottom: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--amber-gold) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--defense-white) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--amber-gold) !important;
}

/* Card & Section Styles */
.aegis-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aegis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
    border-color: var(--life-blue);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--amber-gold);
    margin: 1rem auto;
}

/* Buttons */
.btn-aegis {
    background: transparent;
    border: 1px solid var(--amber-gold);
    color: var(--amber-gold);
    padding: 0.8rem 2rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
}

.btn-aegis:hover {
    background: var(--amber-gold);
    color: var(--space-blue);
}

.btn-aegis-glow {
    background: var(--life-blue);
    border: none;
    color: var(--space-blue);
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

/* Footer */
footer {
    background: var(--space-blue);
    border-top: 1px solid var(--border-gold);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    color: var(--amber-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--space-blue);
}
::-webkit-scrollbar-thumb {
    background: var(--amber-gold);
}
