/* Kinetic-Box Custom Styles */
:root {
    --industrial-blue: #0D47A1;
    --protection-orange: #FF6D00;
    --precision-gray: #455A64;
    --environment-green: #00C853;
    --dark-bg: #121212;
    --light-text: #f8f9fa;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f4f7f9;
    color: #333;
}

.mono-font {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.bg-industrial-blue { background-color: var(--industrial-blue); }
.text-industrial-blue { color: var(--industrial-blue); }
.bg-protection-orange { background-color: var(--protection-orange); }
.text-protection-orange { color: var(--protection-orange); }
.bg-precision-gray { background-color: var(--precision-gray); }
.text-precision-gray { color: var(--precision-gray); }

/* Navbar */
.navbar {
    background-color: var(--industrial-blue);
    border-bottom: 3px solid var(--protection-orange);
}
.navbar-brand, .nav-link {
    color: white !important;
    font-weight: 600;
}
.nav-link:hover {
    color: var(--protection-orange) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--industrial-blue) 0%, #0a2e66 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--protection-orange);
    padding: 20px;
}

/* Cards & Modules */
.card-modular {
    border: none;
    border-radius: 0;
    border-top: 4px solid var(--industrial-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.card-modular:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: var(--precision-gray);
    color: white;
    padding: 50px 0;
}

/* Dashboard Elements */
.dashboard-card {
    background: #1e1e1e;
    color: #00ff00;
    font-family: 'JetBrains Mono', monospace;
    padding: 15px;
    border: 1px solid #333;
}
