:root {
  --primary: #0038b8;
  --secondary: #ffd200;
}

body,
html {
  font-family: "Figtree", sans-serif !important;
}

/* Force override for all elements if necessary */
* {
  font-family: inherit;
}

.hero-gradient {
  background: radial-gradient(circle at top right, #0046e6, #0038b8, #001d5e);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.dark .glass-card-light {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-search {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.glass-card-pricing {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}

.dark .glass-card-pricing {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card-pricing-popular {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--primary);
  box-shadow: 0 20px 25px -5px rgba(0, 56, 184, 0.1), 0 8px 10px -6px rgba(0, 56, 184, 0.1);
}

.dark .glass-card-pricing-popular {
  background: rgba(15, 23, 42, 0.8);
  border: 2px solid var(--secondary);
  box-shadow: 0 20px 25px -5px rgba(255, 210, 0, 0.1), 0 8px 10px -6px rgba(255, 210, 0, 0.1);
}

.glow-shadow-pricing {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.dark .glow-shadow-pricing {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5), 0 4px 6px -4px rgba(0,0,0,0.5);
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.no-scrollbar::-webkit-scrollbar,
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar,
.hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Added from layouts */
.services-bg {
  background-color: var(--background-light);
  background-image:
    radial-gradient(
      circle at 0% 0%,
      rgba(0, 56, 184, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(255, 210, 0, 0.08) 0%,
      transparent 50%
    );
}

.dark .services-bg {
  background-color: var(--background-dark);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(0, 56, 184, 0.2) 0%, transparent 50%),
    radial-gradient(
      circle at 100% 100%,
      rgba(255, 210, 0, 0.1) 0%,
      transparent 50%
    );
}

.glass-hero {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark .glass-hero {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-sphere {
  filter: blur(80px);
  z-index: -1;
}

.glass-input {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.dark .glass-input {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-icon {
  background: rgba(255, 210, 0, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 210, 0, 0.3);
}

.bg-pattern {
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(0, 56, 184, 0.05) 1px,
    transparent 0
  );
  background-size: 24px 24px;
}

.dark .bg-pattern {
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(255, 210, 0, 0.03) 1px,
    transparent 0
  );
}

.terminal-cursor {
  width: 10px;
  height: 18px;
  background-color: #6b9cff;
  display: inline-block;
  animation: blink 0.9s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  50.01%,
  100% {
    opacity: 0;
  }
}

/* SVG Hero Illustration Animations */
.svg-float-medium {
  animation: svgFloatMedium 2.5s ease-in-out infinite;
  transform-origin: center;
}
.svg-float-slow {
  animation: svgFloatSlow 3s ease-in-out infinite;
  transform-origin: center;
}
.svg-pulse-glow {
  animation: svgPulseGlow 2s ease-in-out infinite;
}
.svg-led-blink {
  animation: svgLedBlink 2s ease-in-out infinite;
}
.svg-shield-pulse {
  animation: svgShieldPulse 2s ease-in-out infinite;
}
.svg-envelope-float {
  animation: svgEnvelopeFloat 3s ease-in-out infinite;
}
.svg-notification-pop {
  animation: svgNotificationPop 2s ease-in-out infinite;
}
@keyframes svgFloatMedium {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes svgFloatSlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes svgPulseGlow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}
@keyframes svgLedBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes svgShieldPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.25;
  }
}
@keyframes svgEnvelopeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-2deg);
  }
}
@keyframes svgNotificationPop {
  0%,
  80%,
  100% {
    transform: scale(1);
  }
  90% {
    transform: scale(1.2);
  }
}

/* From Uiverse.io by david-mohseni */
.loader {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 10px;
}

.loader div {
  width: 8%;
  height: 24%;
  background: var(--primary);
  position: absolute;
  left: 50%;
  top: 30%;
  opacity: 0;
  border-radius: 50px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  animation: fade458 1s linear infinite;
}

.dark .loader div {
  background: var(--secondary);
}

@keyframes fade458 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.25;
  }
}

.loader .bar1 {
  transform: rotate(0deg) translate(0, -130%);
  animation-delay: 0s;
}

.loader .bar2 {
  transform: rotate(30deg) translate(0, -130%);
  animation-delay: -1.1s;
}

.loader .bar3 {
  transform: rotate(60deg) translate(0, -130%);
  animation-delay: -1s;
}

.loader .bar4 {
  transform: rotate(90deg) translate(0, -130%);
  animation-delay: -0.9s;
}

.loader .bar5 {
  transform: rotate(120deg) translate(0, -130%);
  animation-delay: -0.8s;
}

.loader .bar6 {
  transform: rotate(150deg) translate(0, -130%);
  animation-delay: -0.7s;
}

.loader .bar7 {
  transform: rotate(180deg) translate(0, -130%);
  animation-delay: -0.6s;
}

.loader .bar8 {
  transform: rotate(210deg) translate(0, -130%);
  animation-delay: -0.5s;
}

.loader .bar9 {
  transform: rotate(240deg) translate(0, -130%);
  animation-delay: -0.4s;
}

.loader .bar10 {
  transform: rotate(270deg) translate(0, -130%);
  animation-delay: -0.3s;
}

.loader .bar11 {
  transform: rotate(300deg) translate(0, -130%);
  animation-delay: -0.2s;
}

.loader .bar12 {
  transform: rotate(330deg) translate(0, -130%);
  animation-delay: -0.1s;
}
