:root {
  --spacing-unit: 4px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  scroll-behavior: smooth;
  background-color: #074378; /* slate-950 */
}
.bg-indigo-600{
  background-color: #20afe4 !important;
}
.bg-slate-950, .bg-slate-900{
  background-color: #04335c !important;
}
.text-indigo-600, .text-indigo-400{
  color:  #20afe4 !important;
}
.group:hover .group-hover\:bg-indigo-600 {
    --tw-bg-opacity: 1;
    background-color: #074378 !important;
}
.mono {
  font-family: "JetBrains Mono", monospace;
}

.glass-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
}
#servicesMegaMenuWrap.hidden{
  display: none !important
}


/* Used by the AI chat panel (React version referenced glass-panel) */
.glass-panel {
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gradient-indigo {
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
}

.text-gradient {
  background: linear-gradient(to right, #818cf8, #2dd4bf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.platform-preview-glow {
  box-shadow: 0 0 100px -20px rgba(79, 70, 229, 0.3);
}

/* Scrollbar helpers (React version referenced scrollbar-hide / no-scrollbar) */
.scrollbar-hide {
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none; /* Firefox */
}
.scrollbar-hide::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* AI / Offensive Security Animations */
@keyframes scan-beam {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  5% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  95% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

@keyframes drift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, -15px) rotate(5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes data-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.4;
  }
}

@keyframes path-flow {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.animate-scan-beam {
  animation: scan-beam 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.animate-drift {
  animation: drift 15s ease-in-out infinite;
}

.animate-data-pulse {
  animation: data-pulse 6s ease-in-out infinite;
}

.neural-path {
  stroke-dasharray: 100;
  animation: path-flow 20s linear infinite;
}

/* Tiny utility animation classes referenced by the original UI */
@keyframes dropdown-in-4 {
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropdown-in-2 {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in.fade-in.slide-in-from-top-4 {
  animation: dropdown-in-4 300ms ease-out both;
}

.animate-in.fade-in.slide-in-from-top-2 {
  animation: dropdown-in-2 300ms ease-out both;
}

