/* VIDX Technologies Custom CSS - Premium Theme Utilities */

:root {
  --primary-glow: radial-gradient(rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0));
  --secondary-glow: radial-gradient(rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0));
  --dark-bg: #070a13;
  --dark-surface: #0f172a;
  --primary-cyan: #06b6d4;
  --primary-blue: #2563eb;
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --font-heading: 'Poppins', 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

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

.glass-panel-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel-hover:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.2);
  transform: translateY(-4px);
}

.glass-navbar {
  background: rgba(7, 10, 19, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-input {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transition: all 0.2s ease-in-out;
}

.glass-input:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
  background: rgba(15, 23, 42, 0.7);
}

/* Custom Tech Background Grid */
.tech-grid {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
}

/* Glow effects */
.glow-cyan {
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.25);
}

.glow-blue {
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.25);
}

/* Continuous Logo Marquee Scroll */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pulse-light {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

.pulse-indicator {
  animation: pulse-light 2s infinite ease-in-out;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

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

/* Lead Generation Sticky Actions */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .sticky-bar {
    top: 50%;
    bottom: auto;
    right: 20px;
    left: auto;
    width: auto;
    background: transparent;
    backdrop-filter: none;
    border-top: none;
    transform: translateY(-50%);
  }
}

/* Dynamic slider animation support */
.fade-slider-item {
  transition: opacity 0.5s ease-in-out;
}
