/* Custom styling for MH-Tec-Service Landing Page */
:root {
  --primary-navy: #0b1329;
  --secondary-navy: #152244;
  --accent-amber: #f59e0b;
  --accent-cyan: #0284c7;
  --accent-emerald: #10b981;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Subtle glow effects */
.glow-amber {
  box-shadow: 0 0 35px -5px rgba(245, 158, 11, 0.25);
}
.glow-blue {
  box-shadow: 0 0 35px -5px rgba(2, 132, 199, 0.25);
}
.glow-emerald {
  box-shadow: 0 0 35px -5px rgba(16, 185, 129, 0.25);
}

/* Glassmorphism backgrounds */
.glass-panel {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Hero background grid pattern */
.bg-grid-pattern {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* Pulse animation for live badge */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.15); }
}

.live-pulse {
  animation: pulse-dot 2s infinite ease-in-out;
}

/* Modal styles */
.modal-backdrop {
  background-color: rgba(11, 19, 41, 0.85);
  backdrop-filter: blur(4px);
}

/* Tab active state transition */
.step-tab {
  transition: all 0.25s ease-in-out;
}
