/* --- SHIELDTECH SERVICES GLOBAL CSS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --clr-bg: #030712;
  --clr-card-bg: rgba(17, 24, 39, 0.6);
  --clr-card-border: rgba(59, 130, 246, 0.2);
  --clr-card-border-hover: rgba(6, 182, 212, 0.6);
  --clr-blue: #3b82f6;
  --clr-cyan: #06b6d4;
  --clr-purple: #8b5cf6;
  --clr-accent: #60a5fa;
  --clr-text-main: #f9fafb;
  --clr-text-muted: #9ca3af;
  --cursor-glow: rgba(59, 130, 246, 0.15);
  --font-title: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Manrope', sans-serif;
}

/* Base Settings */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: default;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Custom Interactive Cursor Glow */
.cursor-glow {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--cursor-glow) 0%, rgba(3, 7, 18, 0) 70%);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  transition: width 0.3s ease, height 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--clr-bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--clr-blue), var(--clr-purple));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr-cyan);
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  letter-spacing: -0.02em;
}

/* Glassmorphism Styles */
.glass-panel {
  background: var(--clr-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--clr-card-border);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
  border-color: var(--clr-card-border-hover);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.25);
  transform: translateY(-4px);
}

/* Animated Border Container */
.glow-border-wrap {
  position: relative;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--clr-blue), var(--clr-purple), var(--clr-cyan), var(--clr-blue));
  background-size: 300% 300%;
  padding: 1px;
  animation: borderGlow 6s ease infinite;
}

@keyframes borderGlow {
  0% { background-position: 0% 50% }
  50% { background-position: 100% 50% }
  100% { background-position: 0% 50% }
}

/* Premium Buttons */
.btn-premium {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 2;
  cursor: pointer !important;
}
.btn-premium * {
  cursor: pointer !important;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: all 0.5s ease;
}

.btn-premium:hover::before {
  left: 100%;
}

/* Hero Particles Container */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* PWA Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Utilities */
.neon-glow-text {
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.6), 0 0 20px rgba(6, 182, 212, 0.2);
}

.ambient-light-blue {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(3, 7, 18, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.ambient-light-purple {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(3, 7, 18, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

/* Form inputs styling */
input, textarea, select {
  cursor: text !important;
}
input[type="checkbox"], input[type="radio"], option {
  cursor: pointer !important;
}

/* Testimonial card scroll styles */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
