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

:root {
  --font-sans: 'Outfit', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --color-bg-dark: #090e1a;      /* Deep Midnight Navy */
  --color-bg-darker: #030712;    /* Ultra Deep Dark */
  --color-primary: #06b6d4;      /* Cyber Teal/Cyan */
  --color-secondary: #10b981;    /* Vibrant Mint/Green */
  --color-accent: #3b82f6;       /* Tech Blue */
  --color-text-main: #f8fafc;    /* Slate-50 */
  --color-text-muted: #94a3b8;   /* Slate-400 */
  --glass-bg: rgba(9, 14, 26, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 182, 212, 0.5);
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-darker);
  color: var(--color-text-main);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
}

/* Glassmorphism Styles */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.glass-navbar {
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.glass-navbar.scrolled {
  background: rgba(3, 7, 18, 0.9);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

/* Text Gradients */
.text-gradient-cyan {
  background: linear-gradient(135deg, #a5f3fc 0%, #06b6d4 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-mint {
  background: linear-gradient(135deg, #a7f3d0 0%, #10b981 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animated Neon Glows */
.shadow-glow-cyan {
  box-shadow: 0 0 20px -5px rgba(6, 182, 212, 0.15);
}

.shadow-glow-cyan:hover {
  box-shadow: 0 0 25px 2px rgba(6, 182, 212, 0.35);
  border-color: rgba(6, 182, 212, 0.5) !important;
}

.shadow-glow-mint {
  box-shadow: 0 0 20px -5px rgba(16, 185, 129, 0.15);
}

.shadow-glow-mint:hover {
  box-shadow: 0 0 25px 2px rgba(16, 185, 129, 0.35);
  border-color: rgba(16, 185, 129, 0.5) !important;
}

/* Glowing Background Blobs */
.blob-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  animation: float-blob 22s infinite alternate ease-in-out;
}

.blob-cyan {
  background-color: var(--color-primary);
  top: -150px;
  right: -50px;
}

.blob-mint {
  background-color: var(--color-secondary);
  bottom: 15%;
  left: -150px;
  animation-delay: -6s;
}

.blob-blue {
  background-color: var(--color-accent);
  top: 45%;
  right: -120px;
  animation-delay: -12s;
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -40px) scale(1.15);
  }
  100% {
    transform: translate(-40px, 60px) scale(0.9);
  }
}

/* Custom interactive grids */
.grid-bg {
  background-image: radial-gradient(rgba(6, 182, 212, 0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

/* Advanced Card Style (Sharp, Border-glow) */
.sharp-card {
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.sharp-card:hover {
  transform: translateY(-4px) scale(1.01);
  background: rgba(9, 14, 26, 0.85);
}

.sharp-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: width 0.35s ease;
}

.sharp-card:hover::after {
  width: 100%;
}

/* Button cyber neon styling */
.cyber-btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  transition: all 0.3s ease;
}
.cyber-btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
  transform: translateY(-1px);
}

.cyber-btn-secondary {
  border: 1px solid rgba(6, 182, 212, 0.3);
  background: rgba(6, 182, 212, 0.03);
  transition: all 0.3s ease;
}
.cyber-btn-secondary:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

/* Timeline glow line track */
.timeline-track-glow {
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

/* Testimonial Quote element */
.quote-mark {
  font-family: serif;
  color: rgba(6, 182, 212, 0.05);
  font-size: 150px;
  line-height: 0.5;
  pointer-events: none;
}
