/* ==========================================================================
   Aerovion Industries - Clean Uniform Industrial Styling
   Brand Palette:
   - Primary Aerovion Cyan: #00A3E0
   - Logo Dark Charcoal/Slate: #1E293B & #222B35
   - Clean Background: #F8FAFC & #FFFFFF
   - Border Slate: #E2E8F0
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --brand-cyan: #00A3E0;
  --brand-cyan-hover: #0082B4;
  --brand-cyan-light: #E0F2FE;
  --brand-dark: #1E293B;
  --brand-charcoal: #222B35;
  --brand-bg: #F8FAFC;
  --brand-card: #FFFFFF;
  --brand-border: #E2E8F0;
  --text-main: #1E293B;
  --text-muted: #64748B;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--brand-bg);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
}

/* Uniform Light Card Styling matching Company Profile */
.card-light {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 163, 224, 0.02);
  transition: all 0.25s ease;
}

.card-light:hover {
  border-color: rgba(0, 163, 224, 0.35);
  box-shadow: 0 10px 20px -5px rgba(0, 163, 224, 0.08);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #00A3E0;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0084B8;
}

/* Accessibility focus states */
input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible {
  outline: 2px solid #00A3E0;
  outline-offset: 2px;
}
