:root {
    --bg-midnight: #0a0f1c;
    --indigo-accent: #6366f1;
    --indigo-hover: #4f46e5;
    --text-muted: #94a3b8;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-midnight);
    color: #ffffff;
    overflow-x: hidden;
}

/* Typography & Custom Colors */
.text-indigo { color: var(--indigo-accent); }
.text-light-muted { color: var(--text-muted); }
.text-gradient {
    background: linear-gradient(to right, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tracking-wider { letter-spacing: 0.1em; }

/* Glassmorphism Navbar */
.custom-nav {
    background: rgba(10, 15, 28, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    padding: 1.2rem 0;
}
.custom-nav.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 15, 28, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--indigo-accent) !important; }

/* Premium Buttons */
.btn-primary-custom {
    background-color: var(--indigo-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.btn-primary-custom:hover {
    background-color: var(--indigo-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
    color: #fff;
}
.btn-outline-light {
    border-radius: 8px;
    font-weight: 600;
    border-width: 2px;
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background-color: #fff;
    color: var(--bg-midnight);
    transform: translateY(-2px);
}

/* Elite Badge */
.badge-custom {
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.6em 1.2em;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
}

/* Hero Section Settings */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* accounts for fixed navbar */
}
.hero-title {
    letter-spacing: -1px;
    line-height: 1.2;
}

/* Animated Glowing Orbs Background */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.4;
    animation: float 10s infinite alternate ease-in-out;
}
.orb-1 {
    background: #4f46e5;
    width: 450px;
    height: 450px;
    top: -10%;
    left: -10%;
}
.orb-2 {
    background: #c084fc;
    width: 350px;
    height: 350px;
    bottom: 5%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 60px) scale(1.1); }
}/* Inner Page Header */
.page-header {
    height: 40vh;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(10, 15, 28, 1), rgba(10, 15, 28, 0));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
/* Service / Expertise Cards */
.service-card {
    background: rgba(10, 15, 28, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.service-card:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
}

/* Vetting Process Steps */
.process-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}
.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--indigo-accent);
}
.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(to bottom, #818cf8, #3730a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}.form-control:focus, .form-select:focus {
    background: transparent !important;
    color: white !important;
    border-color: var(--indigo-accent) !important;
    box-shadow: none;
}
option { background-color: var(--bg-midnight); }