/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Share+Tech+Mono&display=swap');

/* Modern styling for Virtual Life */
:root {
  --black: #000000;
  --deep-purple-bg: #0a0015;
  --ai-primary: #ff00ff;
  --ai-secondary: #00d4ff;
  --ai-accent: #ff6b00;
  --ai-glow: #ff00aa;
  --neural-purple: #2a0845;
  --data-cyan: #00ffff;
  --grid-purple: #1a0033;
  --light-gray: #e0d0ff;
  --white: #FFFFFF;
  --text-glow: #ff00ff;
  --border-purple: #6600cc;
  --neon-blue: #00d4ff;
  --electric-purple: #9945ff;
  --magenta-pink: #ff0099;
  --ai-cyan: #00d4ff;
  --ai-magenta: #ff00ff;
  --ai-orange: #ff6b00;
  --hologram-blue: #0099ff;
}

/* Smooth Glitch Animation - No harsh flickers */
@keyframes glitch {
  0% {
    text-shadow: 0.02em 0 0 rgba(0, 245, 255, 0.7),
      -0.02em -0.01em 0 rgba(255, 0, 153, 0.7),
      0.01em -0.02em 0 rgba(189, 0, 255, 0.7);
  }

  25% {
    text-shadow: 0.01em 0.01em 0 rgba(0, 245, 255, 0.7),
      -0.01em -0.02em 0 rgba(255, 0, 153, 0.7),
      0.02em -0.01em 0 rgba(189, 0, 255, 0.7);
  }

  50% {
    text-shadow: -0.02em 0 0 rgba(0, 245, 255, 0.7),
      0.02em 0.01em 0 rgba(255, 0, 153, 0.7),
      -0.01em 0.02em 0 rgba(189, 0, 255, 0.7);
  }

  75% {
    text-shadow: -0.01em -0.01em 0 rgba(0, 245, 255, 0.7),
      0.01em 0.02em 0 rgba(255, 0, 153, 0.7),
      -0.02em 0.01em 0 rgba(189, 0, 255, 0.7);
  }

  100% {
    text-shadow: 0.02em 0 0 rgba(0, 245, 255, 0.7),
      -0.02em -0.01em 0 rgba(255, 0, 153, 0.7),
      0.01em -0.02em 0 rgba(189, 0, 255, 0.7);
  }
}

/* Scan line effect */
@keyframes scanline {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #0a0015 0%, #1a0033 100%);
  color: var(--light-gray);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  transition: background-color 0.5s ease;
  position: relative;
  overflow-x: hidden;
}

/* Scanline overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 50%,
      rgba(0, 200, 255, 0.025) 50%);
  background-size: 100% 4px;
  z-index: 9999;
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Orbitron', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

h1.display-4 {
  font-weight: 700;
  font-size: 4rem;
}

/* Hero Shimmer Effect - Unique Animation */
.hero-shimmer {
  position: relative;
  font-weight: 700;
  font-size: 4rem;
  background: linear-gradient(135deg,
      #00d4ff 0%,
      #ff00ff 20%,
      #00ffff 40%,
      #ff6b00 60%,
      #00d4ff 80%,
      #ff00ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroShimmer 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.4);
  text-stroke: 1px rgba(0, 0, 0, 0.4);
}

/* Black outline for better readability */
.hero-shimmer::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-text-stroke: 0px rgba(0, 0, 0, 0.6);
  text-stroke: 0px rgba(0, 0, 0, 0.6);
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

@keyframes heroShimmer {

  0%,
  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5)) brightness(1);
  }

  25% {
    background-position: 50% 50%;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.7)) brightness(1.1);
  }

  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 25px rgba(255, 107, 0, 0.6)) brightness(1.05);
  }

  75% {
    background-position: 50% 50%;
    filter: drop-shadow(0 0 35px rgba(0, 255, 255, 0.8)) brightness(1.15);
  }
}






/* Navbar Enhancements */
.navbar {
  background: rgba(10, 0, 21, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(255, 0, 255, 0.3);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

.navbar-brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ai-primary) !important;
  position: relative;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ai-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover::after {
  opacity: 1;
}

.navbar-logo-wrapper {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navbar-logo-wrapper:hover {
  transform: scale(1.1);
}

.navbar-brand img {
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 5px var(--ai-primary));
  position: relative;
  z-index: 2;
}

.logo-pulse-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 0;
  animation: logoPulse 2s infinite;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

@keyframes logoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 255, 0.7);
    transform: translate(-50%, -50%);
  }
  
  70% {
    box-shadow: 0 0 0 15px rgba(255, 0, 255, 0);
    transform: translate(-50%, -50%);
  }
  
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 255, 0);
    transform: translate(-50%, -50%);
  }
}

.nav-link {
  font-family: 'Share Tech Mono', monospace;
  color: var(--light-gray) !important;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--ai-primary), var(--ai-secondary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--ai-primary) !important;
  text-shadow: 0 0 10px var(--ai-primary);
}

.nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Particle Animation */
@keyframes particle-float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0;
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

/* AI Sentient Hero Section */
.hero {
  background:
    url('sentient.png') center/cover no-repeat,
    radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(255, 107, 0, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 50% 70%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #0a0015 0%, #1a0033 50%, #2a0845 100%);
  background-blend-mode: screen, normal, normal, normal, normal;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Animated Fluid Background */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.3) 0%, transparent 50%);
  animation: fluidMotion 20s ease-in-out infinite;
  pointer-events: none;
  filter: blur(40px);
}

@keyframes fluidMotion {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  25% {
    transform: rotate(90deg) scale(1.1);
  }

  50% {
    transform: rotate(180deg) scale(1);
  }

  75% {
    transform: rotate(270deg) scale(1.1);
  }
}

/* Additional overlay for depth */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(10, 0, 21, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}


.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, rgba(10, 0, 21, 0.95), rgba(26, 0, 51, 0.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 30px rgba(255, 0, 255, 0.6),
    0 0 60px rgba(255, 107, 0, 0.4);
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
}

.hero h1::after {
  content: attr(data-text);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--ai-primary);
  text-shadow:
    0 0 20px var(--ai-primary),
    0 0 40px var(--ai-primary),
    0 0 60px var(--ai-primary);
  opacity: 0;
  animation: glitch 3s infinite;
  width: 100%;
  text-align: center;
}

.hero p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--light-gray);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease-out;
}

/* Hero buttons enhancement */
.hero .btn {
  position: relative;
  z-index: 1;
  margin: 0 10px;
}

.hero .btn::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple), var(--magenta-pink));
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero .btn:hover::after {
  opacity: 1;
}

/* Additional particle effects for hero section */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--neon-blue);
  pointer-events: none;
  opacity: 0;
}

@keyframes float-up {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-100px) translateX(var(--x)) scale(0);
    opacity: 0;
  }
}

/* Sections Styling */
section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(10, 0, 21, 0.95), rgba(26, 0, 51, 0.95));
  transform: translateY(30px);
  transition: all 1s ease;
}

section:nth-child(odd) {
  background: linear-gradient(180deg, rgba(26, 0, 51, 0.95), rgba(42, 8, 69, 0.95));
}

section h2 {
  color: var(--ai-primary);
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--ai-primary), var(--ai-secondary));
  box-shadow: 0 0 10px var(--ai-primary);
  transition: width 0.3s ease;
}

section h2:hover::after {
  width: 100%;
}

/* Services Section Background Fix */
#services {
  position: relative;
  overflow: hidden;
}

.services-bg-wrapper {
  animation: floatBackground 30s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes floatBackground {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-5%, 5%) scale(1.05);
  }

  50% {
    transform: translate(5%, -5%) scale(1.1);
  }

  75% {
    transform: translate(-3%, -3%) scale(1.05);
  }
}

/* Service Cards */
.service-card {
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.03), rgba(0, 255, 224, 0.03)),
    rgba(1, 10, 15, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  backdrop-filter: blur(20px) saturate(1.5);
  box-shadow:
    0 4px 20px rgba(0, 212, 255, 0.1),
    inset 0 1px 0 rgba(0, 212, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(90deg,
      transparent,
      transparent 2px,
      rgba(0, 245, 255, 0.03) 2px,
      rgba(0, 245, 255, 0.03) 4px),
    repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(189, 0, 255, 0.03) 2px,
      rgba(189, 0, 255, 0.03) 4px);
  pointer-events: none;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple), var(--magenta-pink));
  z-index: -1;
  border-radius: 16px;
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.3);
  border-color: transparent;
}

.service-card:hover::after {
  opacity: 0.5;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(0, 200, 255, 0.2),
      transparent);
  transition: 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card h3 {
  color: var(--neon-blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

.service-card p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Section Styles */
.contact-section {
  padding: 4rem 0;
  background: rgba(17, 24, 39, 0.8);
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.contact-info,
.contact-form {
  background: rgba(17, 24, 39, 0.9);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--neon-blue);
  position: relative;
  overflow: hidden;
}

.contact-info::before,
.contact-form::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(0, 200, 255, 0.1),
      transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.contact-info:hover::before,
.contact-form:hover::before {
  transform: translateX(50%);
}

.contact-info h3,
.contact-form h3 {
  color: var(--neon-blue);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
  position: relative;
}

.contact-info p {
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.contact-info i {
  color: var(--neon-blue);
  font-size: 1.2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.contact-form input,
.contact-form textarea {
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid var(--neon-blue);
  border-radius: 5px;
  padding: 0.8rem;
  color: var(--white);
  font-family: inherit;
  width: 100%;
  margin-bottom: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.contact-form button {
  background: var(--neon-blue);
  color: #000;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: 0.5s;
}

.contact-form button:hover {
  background: #fff;
  box-shadow: 0 0 20px var(--neon-blue);
}

.contact-form button:hover::before {
  left: 100%;
}

/* Footer Enhancement */
footer {
  background: var(--deep-navy);
  color: var(--light-gray);
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 200, 255, 0.1);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  animation: shine 3s infinite;
}

footer a {
  color: var(--neon-blue) !important;
  transition: all 0.3s ease;
  position: relative;
}

footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--neon-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

footer a:hover {
  color: var(--electric-purple) !important;
  text-shadow: 0 0 10px var(--electric-purple);
}

footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Game Styling */
.game-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  border: 1px solid rgba(0, 200, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.1);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.game-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.1), transparent);
  animation: shine 3s infinite;
}

#gameCanvas {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 200, 255, 0.3);
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.2);
  border-radius: 10px;
}

.game-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.game-controls button {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  padding: 8px 20px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.game-controls button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(0, 200, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.game-controls button:hover {
  background: rgba(0, 200, 255, 0.1);
  border-color: var(--neon-blue);
  color: var(--white);
  text-shadow: 0 0 10px var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.3);
}

.game-controls button:hover::before {
  transform: translateX(100%);
}

.game-controls span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  section {
    padding: 60px 0;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .service-card {
    margin-bottom: 1.5rem;
  }
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader {
  width: 100px;
  height: 100px;
  position: relative;
  perspective: 800px;
}

.inner-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--neon-blue);
  border-left-color: var(--electric-purple);
  border-right-color: var(--magenta-pink);
  animation: spin 1s linear infinite;
}

.inner-loader::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--magenta-pink);
  border-left-color: var(--neon-blue);
  border-right-color: var(--electric-purple);
  animation: spin 0.5s linear infinite reverse;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* AI Neural Canvas Styles */
#neuralCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}

#dataStreamCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.4;
  pointer-events: none;
}

/* Aurora Borealis Effect */
.aurora-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.aurora {
  position: absolute;
  width: 200%;
  height: 200%;
  opacity: 0.15;
  filter: blur(60px);
  mix-blend-mode: screen;
}

.aurora-1 {
  background: linear-gradient(45deg, transparent, var(--neon-blue), transparent);
  animation: aurora1 20s ease-in-out infinite;
}

.aurora-2 {
  background: linear-gradient(-45deg, transparent, var(--electric-purple), transparent);
  animation: aurora2 25s ease-in-out infinite;
}

.aurora-3 {
  background: linear-gradient(90deg, transparent, var(--hot-pink), transparent);
  animation: aurora3 30s ease-in-out infinite;
}

@keyframes aurora1 {

  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  50% {
    transform: translate(-30%, -60%) rotate(180deg);
  }
}

@keyframes aurora2 {

  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  50% {
    transform: translate(-60%, -40%) rotate(-180deg);
  }
}

@keyframes aurora3 {

  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  50% {
    transform: translate(-40%, -50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Fix specific hero content container */
#home>div.container.text-center.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto 2rem;
  animation: float 4s ease-in-out infinite;
  transition: transform 0.3s ease;
  width: 120px;
  height: 120px;
}

.logo-container:hover {
  transform: scale(1.05);
}

.hero-logo {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.8)) drop-shadow(0 0 60px rgba(255, 107, 0, 0.5));
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.8)) drop-shadow(0 0 60px rgba(255, 107, 0, 0.5));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 40px rgba(255, 0, 255, 1)) drop-shadow(0 0 80px rgba(255, 107, 0, 0.7));
    transform: scale(1.02);
  }
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0.5;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.shape {
  position: absolute;
  background: linear-gradient(45deg, var(--neon-blue), var(--electric-purple));
  opacity: 0.1;
  animation: float-shape 20s infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  border-radius: 50%;
  animation-duration: 25s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-duration: 20s;
  background: linear-gradient(45deg, var(--hot-pink), var(--golden-yellow));
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 50%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-duration: 30s;
  background: linear-gradient(45deg, var(--neon-green), var(--cyan-blue));
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 20%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-duration: 22s;
  background: linear-gradient(45deg, var(--golden-yellow), var(--bright-orange));
}

.shape-5 {
  width: 180px;
  height: 180px;
  top: 70%;
  right: 30%;
  border-radius: 50%;
  animation-duration: 35s;
  background: radial-gradient(circle, var(--electric-purple), transparent);
}

@keyframes float-shape {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  33% {
    transform: translateY(-30px) rotate(120deg) scale(1.1);
  }

  66% {
    transform: translateY(30px) rotate(240deg) scale(0.9);
  }
}

/* Smooth Glitch Effect - Reduced intensity */
.glitch-text {
  position: relative;
  color: var(--white);
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(0, 245, 255, 0.5),
    0 0 20px rgba(0, 245, 255, 0.3),
    0 0 30px rgba(189, 0, 255, 0.2);
}

/* AI Neural Network Nodes */
\n.neural-nodes {
  \n position: absolute;
  \n width: 100%;
  \n height: 100%;
  \n z-index: 1;
  \n
}

\n\n.node {
  \n position: absolute;
  \n width: 12px;
  \n height: 12px;
  \n background: radial-gradient(circle, var(--ai-magenta) 0%, var(--ai-orange) 100%);
  \n border-radius: 50%;
  \n box-shadow: \n 0 0 30px var(--ai-magenta), \n 0 0 60px rgba(255, 107, 0, 0.5), \n inset 0 0 15px rgba(255, 255, 255, 0.8);
  \n animation: nodePulse 3s ease-in-out infinite;
  \n
}

\n\n.node::before {
  \n content: '';
  \n position: absolute;
  \n top: -15px;
  \n left: -15px;
  \n right: -15px;
  \n bottom: -15px;
  \n border: 2px solid rgba(255, 0, 255, 0.5);
  \n border-radius: 50%;
  \n animation: nodeRing 2s ease-in-out infinite;
  \n
}

\n\n.node-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
  background: radial-gradient(circle, var(--ai-magenta) 0%, var(--ai-cyan) 100%);
}

\n.node-2 {
  top: 30%;
  left: 85%;
  animation-delay: 0.5s;
  background: radial-gradient(circle, var(--ai-orange) 0%, var(--ai-magenta) 100%);
}

\n.node-3 {
  top: 60%;
  left: 25%;
  animation-delay: 1s;
  background: radial-gradient(circle, var(--ai-cyan) 0%, var(--ai-orange) 100%);
}

\n.node-4 {
  top: 70%;
  left: 75%;
  animation-delay: 1.5s;
  background: radial-gradient(circle, var(--ai-magenta) 0%, var(--ai-cyan) 100%);
}

\n.node-5 {
  top: 40%;
  left: 50%;
  animation-delay: 2s;
  background: radial-gradient(circle, var(--ai-orange) 0%, var(--ai-magenta) 100%);
}

\n.node-6 {
  top: 80%;
  left: 40%;
  animation-delay: 2.5s;
  background: radial-gradient(circle, var(--ai-cyan) 0%, var(--ai-magenta) 100%);
}

\n\n@keyframes nodePulse {

  \n 0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
    filter: blur(0px);
  }

  \n 50% {
    transform: scale(1.8);
    opacity: 1;
    filter: blur(2px);
  }

  \n
}

\n\n@keyframes nodeRing {

  \n 0%,
  100% {
    transform: scale(1);
    opacity: 0;
  }

  \n 50% {
    transform: scale(2.5);
    opacity: 0.7;
  }

  \n
}

\n\n

/* Neural Connections SVG */
\n.neural-connections {
  \n position: absolute;
  \n top: 0;
  \n left: 0;
  \n width: 100%;
  \n height: 100%;
  \n z-index: 0;
  \n pointer-events: none;
  \n
}

\n\n

/* AI Grid Overlay */
\n.ai-grid-overlay {
  \n position: absolute;
  \n top: 0;
  \n left: 0;
  \n width: 100%;
  \n height: 100%;
  \n background-image: \n repeating-linear-gradient(\n 0deg, \n transparent, \n transparent 2px, \n rgba(255, 0, 255, 0.02) 2px, \n rgba(255, 0, 255, 0.02) 4px\n), \n repeating-linear-gradient(\n 90deg, \n transparent, \n transparent 2px, \n rgba(255, 107, 0, 0.02) 2px, \n rgba(255, 107, 0, 0.02) 4px\n);
  \n z-index: 1;
  \n opacity: 0.5;
  \n animation: gridPulse 4s ease-in-out infinite;
  \n
}

\n\n@keyframes gridPulse {

  \n 0%,
  100% {
    opacity: 0.3;
  }

  \n 50% {
    opacity: 0.6;
  }

  \n
}

\n\n

/* AI Text Effect */
\n.ai-text {
  \n font-family: 'Orbitron', sans-serif;
  \n font-weight: 700;
  \n background: linear-gradient(\n 90deg, \n var(--ai-magenta) 0%, \n var(--ai-orange) 25%, \n var(--ai-cyan) 50%, \n var(--ai-magenta) 75%, \n var(--ai-orange) 100%\n);
  \n background-size: 200% auto;
  \n -webkit-background-clip: text;
  \n -webkit-text-fill-color: transparent;
  \n background-clip: text;
  \n animation: aiGradient 3s linear infinite;
  \n position: relative;
  \n text-transform: uppercase;
  \n letter-spacing: 3px;
  \n
}

\n\n.ai-text::after {
  \n content: attr(data-text);
  \n position: absolute;
  \n left: 0;
  \n top: 0;
  \n z-index: -1;
  \n background: none;
  \n -webkit-text-fill-color: transparent;
  \n text-shadow: \n 0 0 40px rgba(255, 0, 255, 0.6), \n 0 0 80px rgba(255, 107, 0, 0.4), \n 0 0 120px rgba(0, 212, 255, 0.3);
  \n
}

\n\n@keyframes aiGradient {
  \n to {
    background-position: 200% center;
  }

  \n
}

\n\n

/* Data Stream Text */
\n.data-stream {
  \n font-family: 'Share Tech Mono', monospace;
  \n color: var(--ai-cyan);
  \n text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
  \n position: relative;
  \n animation: dataFlow 2s ease-in-out infinite;
  \n
}

\n\n@keyframes dataFlow {

  \n 0%,
  100% {
    opacity: 0.8;
  }

  \n 50% {
    opacity: 1;
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.9);
  }

  \n
}

"


/* Override AI text for proper centering */
.ai-text {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.data-stream {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
}

/* Canvas positioning */
#neuralCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 1;
  mix-blend-mode: screen;
}

#dataStreamCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Outline Button Styles */
.btn-outline-light {
  border: 2px solid transparent !important;
  background: linear-gradient(135deg, rgba(10, 0, 21, 0.9), rgba(10, 0, 21, 0.9)) padding-box,
    linear-gradient(135deg, #ff00ff, #ff6b00, #00d4ff) border-box !important;
  color: #ffffff !important;
  padding: 15px 40px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: all 0.4s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.btn-outline-light:hover {
  background: linear-gradient(135deg, #ff00ff, #ff6b00, #00d4ff) !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow:
    0 10px 40px rgba(255, 0, 255, 0.7),
    0 15px 60px rgba(255, 107, 0, 0.5) !important;
}

/* Typewriter Effect */
.typewriter {
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
  animation: typing 3.5s steps(44, end), blink-caret 0.75s step-end infinite;
  border-right: 3px solid var(--ai-primary);
  display: inline-block;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {

  0%,
  100% {
    border-color: rgba(0, 245, 255, 0.8);
  }

  50% {
    border-color: rgba(0, 245, 255, 0.2);
  }
}

/* Enhanced Buttons */
.btn-glow {
  position: relative;
  background: linear-gradient(135deg, #ff00ff, #ff6b00, #00d4ff);
  border: none;
  color: white;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 15px 40px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  box-shadow:
    0 0 30px rgba(255, 0, 255, 0.6),
    0 0 60px rgba(255, 107, 0, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-glow:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, #ff00ff, #00d4ff, #ff6b00);
  box-shadow:
    0 10px 50px rgba(255, 0, 255, 0.9),
    0 20px 80px rgba(255, 107, 0, 0.7);
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-glow:hover::before {
  left: 100%;
}

.btn-pulse {
  animation: pulse 2s infinite;
  border: 2px solid var(--neon-blue);
  background: transparent;
  color: var(--neon-blue);
  transition: all 0.3s ease;
}

.btn-pulse:hover {
  background: var(--neon-blue);
  color: var(--black);
  box-shadow: 0 0 30px var(--neon-blue);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 245, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(0, 245, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 245, 255, 0);
  }
}

/* Service Card Animations */
.service-card {
  opacity: 0;
  transform: translateY(50px) rotateX(10deg);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.service-card:nth-child(1) {
  transition-delay: 0.1s;
}

.service-card:nth-child(2) {
  transition-delay: 0.2s;
}

.service-card:nth-child(3) {
  transition-delay: 0.3s;
}

.service-card:nth-child(4) {
  transition-delay: 0.4s;
}

.service-card:hover {
  transform: translateY(-15px) rotateX(-5deg) scale(1.05);
  background:
    linear-gradient(135deg, rgba(255, 20, 147, 0.3), rgba(0, 245, 255, 0.3)),
    rgba(10, 14, 39, 0.9);
  box-shadow:
    0 30px 60px rgba(0, 245, 255, 0.5),
    0 0 100px rgba(189, 0, 255, 0.3),
    inset 0 0 30px rgba(255, 255, 255, 0.1);
  border-color: var(--hot-pink);
}

.service-card i {
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 0 20px var(--neon-blue));
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.service-card:hover i {
  transform: scale(1.3) rotate(360deg) translateY(-5px);
  filter: drop-shadow(0 0 30px var(--hot-pink));
  animation: iconPulse 0.5s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1.3) rotate(360deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.4) rotate(360deg);
    opacity: 0.9;
  }
}

/* Smooth Neon Glow Text Effect - Gentle pulsing */
.neon-glow {
  text-shadow:
    0 0 10px var(--neon-blue),
    0 0 20px var(--neon-blue),
    0 0 30px var(--neon-blue),
    0 0 40px var(--electric-purple);
  animation: neonPulse 4s ease-in-out infinite;
}

@keyframes neonPulse {

  0%,
  100% {
    text-shadow:
      0 0 10px rgba(0, 245, 255, 0.8),
      0 0 20px rgba(0, 245, 255, 0.6),
      0 0 30px rgba(0, 245, 255, 0.4),
      0 0 40px rgba(189, 0, 255, 0.3);
    opacity: 1;
  }

  50% {
    text-shadow:
      0 0 15px rgba(0, 245, 255, 0.9),
      0 0 25px rgba(0, 245, 255, 0.7),
      0 0 35px rgba(0, 245, 255, 0.5),
      0 0 45px rgba(189, 0, 255, 0.4);
    opacity: 0.95;
  }
}

/* Cyber Text Effect */
.cyber-text {
  background: linear-gradient(90deg,
      var(--neon-blue) 0%,
      var(--electric-purple) 25%,
      var(--hot-pink) 50%,
      var(--neon-green) 75%,
      var(--neon-blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cyberShine 3s linear infinite;
}

@keyframes cyberShine {
  to {
    background-position: 200% center;
  }
}

/* Fade In Section Animation */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax Section */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Contact Section Enhanced */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center,
      rgba(0, 245, 255, 0.1) 0%,
      transparent 70%);
  animation: contactPulse 4s ease-in-out infinite;
}

@keyframes contactPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Enhanced About Section */
#about {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(189, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
    var(--deep-navy);
}

#about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {

  0%,
  100% {
    opacity: 0.5;
    transform: scaleX(0.5);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Holographic Button Effect */
.btn-glow::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
      var(--neon-blue),
      var(--electric-purple),
      var(--hot-pink),
      var(--neon-green),
      var(--neon-blue));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: holographicRotate 3s linear infinite;
}

@keyframes holographicRotate {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

/* Icon Shimmer Animation for Insights */
@keyframes iconShimmer {
  0% {
    color: var(--ai-primary);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  }

  25% {
    color: var(--ai-cyan);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
  }

  50% {
    color: var(--ai-orange);
    text-shadow: 0 0 25px rgba(255, 107, 0, 0.9);
  }

  75% {
    color: var(--ai-magenta);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
  }

  100% {
    color: var(--ai-primary);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  }
}

.insight-icon-shimmer {
  animation: iconShimmer 3s ease-in-out infinite;
  display: inline-block;
}

.btn-glow:hover::after {
  opacity: 1;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 200, 255, 0.1);
  border: 2px solid var(--neon-blue);
  border-radius: 50%;
  color: var(--neon-blue);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  backdrop-filter: blur(5px);
}

.scroll-to-top:hover {
  background: var(--neon-blue);
  color: var(--black);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.5);
  transform: translateY(0) scale(1.1);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Enhanced Section Animations */
section.aos-animate {
  transform: translateY(0);
}

/* Enhanced Button Hover Effects */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/* Enhanced Text Animations */
h1::before,
h2::before,
h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

h1:hover::before,
h2:hover::before,
h3:hover::before {
  transform: translateX(100%);
}

/* Beautiful Explore Solutions Button */
.btn-explore {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, 
    rgba(255, 0, 255, 0.1) 0%, 
    rgba(0, 212, 255, 0.1) 100%);
  border: 2px solid transparent;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

.btn-explore::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ff00ff, #00d4ff, #ff6b00);
  opacity: 0;
  z-index: -2;
  transition: opacity 0.4s ease;
}

.btn-explore::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    transparent 30%, 
    rgba(255, 255, 255, 0.2) 50%, 
    transparent 70%);
  transform: translateX(-100%) skewX(-30deg);
  transition: transform 0.6s ease;
  z-index: -1;
}

.btn-explore .btn-text {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #00d4ff, #ff00ff, #00d4ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 3s linear infinite;
}

.btn-explore .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.btn-explore .btn-icon i {
  font-size: 0.9rem;
  color: #00d4ff;
  transition: transform 0.3s ease;
}

@keyframes textShine {
  to {
    background-position: 200% center;
  }
}

.btn-explore:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 
    0 10px 30px rgba(255, 0, 255, 0.5),
    0 20px 60px rgba(0, 212, 255, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 0, 255, 0.5);
}

.btn-explore:hover::before {
  opacity: 0.3;
}

.btn-explore:hover::after {
  transform: translateX(100%) skewX(-30deg);
}

.btn-explore:hover .btn-icon {
  background: linear-gradient(135deg, #ff00ff, #00d4ff);
  transform: rotate(90deg);
}

.btn-explore:hover .btn-icon i {
  color: white;
  transform: translateX(2px);
}

/* Glow animation on hover */
.btn-explore:hover {
  animation: btnGlow 1s ease-in-out infinite alternate;
}

@keyframes btnGlow {
  from {
    box-shadow: 
      0 10px 30px rgba(255, 0, 255, 0.5),
      0 20px 60px rgba(0, 212, 255, 0.3),
      inset 0 0 20px rgba(255, 255, 255, 0.1);
  }
  to {
    box-shadow: 
      0 15px 40px rgba(255, 0, 255, 0.7),
      0 30px 80px rgba(0, 212, 255, 0.5),
      inset 0 0 30px rgba(255, 255, 255, 0.2);
  }
}

/* Full width variant for forms */
.btn-explore.w-100 {
  justify-content: center;
}

.btn-explore.btn-lg {
  padding: 20px 40px;
  font-size: 1.2rem;
}