/* --- Brand Variables --- */
:root {
    --araxam-navy: #0f172a;      /* Deep authoritative blue */
    --araxam-blue: #2563eb;      /* Vibrant action blue */
    --araxam-light: #f8fafc;     /* Soft background gray */
    --araxam-text: #334155;      /* Accessible dark gray text */
}

/* --- General Styles --- */
body {
    font-family: 'Inter', sans-serif;
    color: var(--araxam-text);
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, .navbar-brand {
    font-weight: 800;
    color: var(--araxam-navy);
    letter-spacing: -0.02em;
}

/* --- Navbar Customization --- */
.navbar {
    padding: 1rem 0;
    background-color: var(--araxam-navy) !important;
    border-bottom: 3px solid var(--araxam-blue);
}

.navbar-brand {
    font-size: 1.5rem;
    color: #ffffff !important;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 600;
    color: rgba(255,255,255,0.8) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--araxam-blue) !important;
}

/* --- Hero Section --- */
.bg-primary {
    background-color: var(--araxam-navy) !important;
    background-image: linear-gradient(135deg, var(--araxam-navy) 0%, #1e293b 100%);
    padding: 80px 0;
}

/* --- Cards & Content --- */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background-color: var(--araxam-blue);
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

/* --- Footer --- */
footer {
    background-color: var(--araxam-light);
    color: #64748b;
    font-size: 0.9rem;
}