/* ==========================================================================
   M IT SOLUTIONS - ENTERPRISE DESIGN SYSTEM
   Modern White-Theme Aesthetic with Mint / Emerald Cyber Accents
   ========================================================================== */

:root {
  /* Brand Core Colors */
  --color-primary: #00875A;
  --color-primary-rgb: 0, 135, 90;
  --color-primary-light: #10B981;
  --color-primary-glow: #00D285;
  --color-primary-dark: #004D40;
  --color-primary-surface: #ECFDF5;
  --color-primary-surface-2: #D1FAE5;

  /* Neutral Backgrounds (White & Crisp Slate Tints) */
  --bg-pure-white: #FFFFFF;
  --bg-subtle-1: #F8FAFC;
  --bg-subtle-2: #F1F5F9;
  --bg-subtle-3: #E2E8F0;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-card-hover: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.85);

  /* Deep Contrast Dark Tones (Used for Hero badges, CTAs & Tech Footer) */
  --bg-dark-hero: #09131C;
  --bg-dark-primary: #0B131F;
  --bg-dark-secondary: #0F172A;
  --bg-dark-card: #1E293B;
  --bg-dark-border: rgba(255, 255, 255, 0.08);

  /* Typography Colors */
  --text-main: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  --text-primary: #00875A;
  --text-primary-vibrant: #059669;

  /* Borders & Dividers */
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;
  --border-accent: rgba(16, 185, 129, 0.25);
  --border-accent-glow: rgba(0, 210, 133, 0.45);

  /* Shadows & Elevations */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px -1px rgba(15, 23, 42, 0.06), 0 1px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 32px -8px rgba(15, 23, 42, 0.1), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 28px 50px -12px rgba(15, 23, 42, 0.14), 0 12px 24px -6px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 10px 30px -5px rgba(0, 210, 133, 0.35);
  --shadow-inner-glow: inset 0 0 16px rgba(0, 210, 133, 0.12);

  /* Typography Settings */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Layout & Spacing */
  --container-max: 1280px;
  --container-wide: 1440px;
  --ticker-height: 38px;
  --header-height: 72px;
  --total-nav-height: 110px;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 450ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset & Core Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-pure-white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Security & IP Asset Protection */
img, canvas, svg, .hero-badge-overlay, .ticker-badge, .btn, .service-preview-thumb {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Ambient Background Mesh Gradients */
.bg-ambient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}

.blob-1 {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(0, 210, 133, 0.05) 70%, transparent 100%);
}

.blob-2 {
  top: 40%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 135, 90, 0.18) 0%, rgba(16, 185, 129, 0.03) 70%, transparent 100%);
}

.blob-3 {
  top: 80%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 210, 133, 0.15) 0%, transparent 70%);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Container Structure */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

/* Section Wrapper */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-sm {
  padding: 60px 0;
}

.section-bg-subtle {
  background-color: var(--bg-subtle-1);
}

.section-bg-white {
  background-color: var(--bg-pure-white);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--color-primary-surface);
  color: var(--color-primary);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag .dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-primary-glow);
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 400;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-subtle-1);
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 6px;
  border: 2px solid var(--bg-subtle-1);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-light);
}

/* Selection */
::selection {
  background-color: rgba(16, 185, 129, 0.2);
  color: var(--color-primary-dark);
}


