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

@theme {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-arabic: "Cairo", sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  
  --color-brand-bg: #030307;
  --color-brand-card: rgba(10, 10, 18, 0.7);
  --color-brand-card-hover: rgba(20, 20, 32, 0.85);
  --color-brand-gold: #E5C158;
  --color-brand-teal: #14B8A6;
  --color-brand-purple: #8B5CF6;
  --color-brand-silver: #94A3B8;
  
  --animate-pulse-slow: pulse 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  --animate-float: float 8s ease-in-out infinite;
  --animate-glow: glow 10s ease-in-out infinite alternate;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes glow {
  0% { filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.1)); }
  100% { filter: drop-shadow(0 0 35px rgba(20, 184, 166, 0.25)); }
}

/* Custom Base Configurations */
html {
  scroll-behavior: smooth;
  background-color: var(--color-brand-bg);
  color: #F8FAFC;
  overflow-x: hidden;
}

/* Base Body Font adjustments based on Language */
body.font-arabic {
  font-family: var(--font-arabic), "Cairo", sans-serif;
}
body.font-sans {
  font-family: var(--font-sans), ui-sans-serif, sans-serif;
}

/* Floating Space Canvas for starry skies */
#space-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Deep Cosmic Aurora Ambient glow effects */
.nebula-purple {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0) 70%);
}
.nebula-blue {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
}
.nebula-teal {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, rgba(20, 184, 166, 0) 75%);
}

/* Awwwards Custom Floating Cursor styling */
.custom-cursor {
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(20, 184, 166, 0.6);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.25s, height 0.25s, background-color 0.25s, border-color 0.25s;
  mix-blend-mode: screen;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: #14B8A6;
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
}

.custom-cursor.active {
  width: 55px;
  height: 55px;
  background-color: rgba(20, 184, 166, 0.1);
  border-color: rgba(139, 92, 246, 0.8);
}

/* Text Selection colors */
::selection {
  background-color: rgba(139, 92, 246, 0.4);
  color: #FFF;
}

/* Custom scrollbar matching dark mode theme */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #030307;
}
::-webkit-scrollbar-thumb {
  background: #11111E;
  border-radius: 4px;
  border: 1px solid #030307;
}
::-webkit-scrollbar-thumb:hover {
  background: #1C1C2E;
}

/* Elegant glassmorphism classes */
.glass-panel {
  background: rgba(4, 4, 8, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.glass-card {
  background: rgba(10, 10, 18, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

.glass-card:hover {
  border-color: rgba(20, 184, 166, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -12px rgba(139, 92, 246, 0.15);
}

/* Interactive custom card border glow layout */
.glow-card {
  position: relative;
}
.glow-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.glow-card:hover::before {
  opacity: 1;
}

/* Dynamic Direction Utilities for layouts and padding shifts */
html[dir="rtl"] .ltr-only {
  display: none !important;
}
html[dir="ltr"] .rtl-only {
  display: none !important;
}

/* Micro interaction for active links */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-brand-teal);
  transition: width 0.3s ease;
}
html[dir="rtl"] .nav-link::after {
  left: auto;
  right: 0;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Swiper custom modifications */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: var(--color-brand-teal) !important;
  width: 24px !important;
  border-radius: 6px !important;
}

/* Loading Preloader overlay */
#pageLoader {
  position: fixed;
  inset: 0;
  background: #030307;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
  overflow: hidden;
}

#pageLoader.loaded {
  opacity: 0;
  visibility: hidden;
}

/* Cosmic Loader Animations */
.clip-path-beam {
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}
.animate-twinkle {
  animation: twinkle 3s infinite ease-in-out;
}

@keyframes float-ufo {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2.5deg); }
}
.animate-float {
  animation: float-ufo 3.5s infinite ease-in-out;
}

@keyframes beam-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}
.animate-beam-pulse {
  animation: beam-pulse 2s infinite ease-in-out;
}

@keyframes astronaut-abduction {
  0%, 100% { transform: translateY(0px) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}
.animate-astronaut-abduction {
  animation: astronaut-abduction 4s infinite ease-in-out;
}

@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes spin-reverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}
.animate-spin-slow {
  animation: spin-slow 25s linear infinite;
}
.animate-spin-reverse {
  animation: spin-reverse 35s linear infinite;
}

/* Progress bar indicator */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, #14B8A6, #8B5CF6);
  z-index: 100;
  width: 0%;
}

/* Tech Grid Item Glow */
.tech-glow-item {
  transition: all 0.3s ease;
}
.tech-glow-item:hover {
  text-shadow: 0 0 8px rgba(20, 184, 166, 0.5);
  box-shadow: 0 0 15px -3px rgba(20, 184, 166, 0.2);
  border-color: rgba(20, 184, 166, 0.4);
}

/* Futuristic Career Timeline Section Styles & Space Theme */
#futuristic-timeline-section {
  position: relative;
  background: #030307;
  overflow: hidden;
}

/* Cinematic Dark Vignette Transition from Previous Section */
.cinematic-vignette {
  position: absolute;
  top: 0;
  inset-x: 0;
  height: 150px;
  background: linear-gradient(to bottom, #030307 0%, transparent 100%);
  pointer-events: none;
  z-index: 10;
}

/* SVG Noise Texture Overlay for Premium Grain */
.noise-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

/* CSS Shooting Stars with Random Speeds */
.shooting-star {
  position: absolute;
  top: 15%;
  left: 60%;
  width: 140px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.8), transparent);
  transform: rotate(-35deg);
  animation: shootingStarAnim 8s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

@keyframes shootingStarAnim {
  0% {
    transform: translateX(100px) translateY(-70px) rotate(-35deg) scale(0);
    opacity: 0;
  }
  3% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(-35deg) scale(1.2);
  }
  10% {
    transform: translateX(-300px) translateY(210px) rotate(-35deg) scale(0);
    opacity: 0;
  }
  100% {
    transform: translateX(-300px) translateY(210px) rotate(-35deg) scale(0);
    opacity: 0;
  }
}

/* Cosmic Dust Particles */
.cosmic-dust-particle {
  position: absolute;
  background-color: #FFF;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
  animation: floatCosmicDust 16s ease-in-out infinite alternate;
  pointer-events: none;
  opacity: 0.25;
  z-index: 1;
}

@keyframes floatCosmicDust {
  0% {
    transform: translateY(0) translateX(0) scale(0.8);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-40px) translateX(30px) scale(1.4);
    opacity: 0.5;
  }
  100% {
    transform: translateY(20px) translateX(-20px) scale(0.9);
    opacity: 0.2;
  }
}

/* Continuous Pulse Animations for Custom-Themed Glowing Nodes */
.glowing-node {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #05050b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

/* Theme-Specific Node Color Palettes */
.theme-cyan .glowing-node {
  border: 2px solid rgba(6, 182, 212, 0.6);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.35);
}
.theme-cyan .glowing-node::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(6, 182, 212, 0.2);
  animation: nodePulse 3.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.theme-cyan .glowing-node::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(6, 182, 212, 0.1);
  animation: nodePulse 3.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 1.75s;
}

.theme-purple .glowing-node {
  border: 2px solid rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.35);
}
.theme-purple .glowing-node::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(139, 92, 246, 0.2);
  animation: nodePulse 3.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.theme-purple .glowing-node::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.1);
  animation: nodePulse 3.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 1.75s;
}

.theme-blue .glowing-node {
  border: 2px solid rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.35);
}
.theme-blue .glowing-node::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  animation: nodePulse 3.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.theme-blue .glowing-node::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.1);
  animation: nodePulse 3.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 1.75s;
}

.theme-orange .glowing-node {
  border: 2px solid rgba(249, 115, 22, 0.6);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.35);
}
.theme-orange .glowing-node::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(249, 115, 22, 0.2);
  animation: nodePulse 3.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.theme-orange .glowing-node::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.1);
  animation: nodePulse 3.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 1.75s;
}

@keyframes nodePulse {
  0% {
    transform: scale(0.9);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.35;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Interactive Card Elements & 3D Tilt Wrapper */
.timeline-card-wrapper {
  perspective: 1500px;
  will-change: transform;
}

.timeline-card-glass {
  background: rgba(8, 8, 16, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  border-radius: 24px;
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

/* Highlight soft top light reflection */
.timeline-card-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
}

/* Customize Neon Borders and Deep Shadows per Theme Hover */
.theme-cyan:hover .timeline-card-glass {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 35px 70px -15px rgba(6, 182, 212, 0.15), 0 0 40px -5px rgba(6, 182, 212, 0.1);
}
.theme-purple:hover .timeline-card-glass {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 35px 70px -15px rgba(139, 92, 246, 0.15), 0 0 40px -5px rgba(139, 92, 246, 0.1);
}
.theme-blue:hover .timeline-card-glass {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 35px 70px -15px rgba(59, 130, 246, 0.15), 0 0 40px -5px rgba(59, 130, 246, 0.1);
}
.theme-orange:hover .timeline-card-glass {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 35px 70px -15px rgba(249, 115, 22, 0.15), 0 0 40px -5px rgba(249, 115, 22, 0.1);
}

/* Neon glow border backdrops */
.timeline-neon-border {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
}

/* Particles Floating Inside Cards */
.card-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 24px;
  pointer-events: none;
  opacity: 0.25;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.timeline-card-glass:hover .card-particles {
  opacity: 0.55;
}

.card-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: cardParticleFloat 7s ease-in-out infinite;
}

@keyframes cardParticleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
  50% { transform: translateY(-20px) translateX(12px); opacity: 0.8; }
}

/* Radial Cosmic BG */
.bg-radial-gradient-cosmic {
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.04) 0%, rgba(3, 3, 7, 0) 75%);
}

/* Moving Light Ray effect */
.light-ray {
  position: absolute;
  width: 140vw;
  height: 100vh;
  top: -40%;
  left: -20%;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.035) 0%, rgba(3, 3, 7, 0) 75%);
  transform: rotate(-15deg);
  pointer-events: none;
  animation: slowRayMove 24s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes slowRayMove {
  0% { transform: rotate(-15deg) translateY(-8%); }
  100% { transform: rotate(-11deg) translateY(8%); }
}

/* Lens Depth Blur Vignette */
.depth-blur-vignette {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  height: 180px;
  background: linear-gradient(to top, #030307 0%, transparent 100%);
  pointer-events: none;
  z-index: 10;
}

/* Orbit rotation for orbital rings around icons */
.orbit-container {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-circle {
  position: absolute;
  border: 1px dashed rgba(20, 184, 166, 0.25);
  border-radius: 50%;
  animation: orbitRotate 16s linear infinite;
  pointer-events: none;
}
.orbit-circle-1 {
  width: 66px;
  height: 66px;
}
.orbit-circle-2 {
  width: 54px;
  height: 54px;
  border-style: dotted;
  animation-duration: 10s;
  animation-direction: reverse;
}

.orbit-planet {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #14B8A6;
  box-shadow: 0 0 8px #14B8A6;
}
.orbit-planet-1 {
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-planet-2 {
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8B5CF6;
  box-shadow: 0 0 8px #8B5CF6;
}

@keyframes orbitRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Glowing space section grid background with moving lines */
.space-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 55px 55px;
  background-position: center center;
  mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
  pointer-events: none;
  z-index: 1;
}

/* Premium Glass Card with high blur */
.services-glass-card {
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 10;
}

/* Under-card glow backdrops */
.card-glow-bg {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 241, 149, 0.12) 0%, transparent 70%);
  filter: blur(20px);
  bottom: -30px;
  right: -30px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

/* Services premium hover effects */
.services-glass-card:hover {
  transform: translateY(-12px) scale(1.03) !important;
  border-color: rgba(20, 241, 149, 0.35) !important;
  box-shadow: 
    0 20px 40px rgba(20, 241, 149, 0.08),
    0 0 35px rgba(20, 241, 149, 0.18),
    0 0 60px rgba(139, 92, 246, 0.12) !important;
}

.services-glass-card:hover .card-glow-bg {
  opacity: 1;
  transform: scale(1.3);
}

.services-glass-card:hover .orbit-icon-rotate {
  transform: rotate(360deg);
  color: #fff !important;
}

.orbit-icon-rotate {
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s ease;
}

/* Logo Marquee */
.logo-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.logo-marquee-container::before,
.logo-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #030307 0%, transparent 100%);
}
.logo-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #030307 0%, transparent 100%);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: logoMarqueeScroll 45s linear infinite;
}

@keyframes logoMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Particles explosion */
.particle-explosion-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.1, 0.8, 0.3, 1), opacity 0.8s ease;
}

/* Interactive Click Ripple */
.card-ripple-effect {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(20, 241, 149, 0.35);
  pointer-events: none;
  z-index: 99;
  animation: rippleAnim 0.6s linear;
}

@keyframes rippleAnim {
  to {
    transform: scale(4.5);
    opacity: 0;
  }
}

/* Cursor trail / hover glow circle */
.cursor-glow-circle {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, rgba(139, 92, 246, 0.02) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  filter: blur(45px);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* Shooting Stars Visuals */
.shooting-star {
  position: absolute;
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.7), transparent);
  transform: rotate(-35deg);
  pointer-events: none;
  z-index: 1;
  animation: shoot 12s linear infinite;
  opacity: 0;
}

@keyframes shoot {
  0% { transform: translate(-100px, -100px) rotate(-35deg); opacity: 0; }
  1% { opacity: 1; }
  5% { transform: translate(300px, 180px) rotate(-35deg); opacity: 0; }
  100% { transform: translate(300px, 180px) rotate(-35deg); opacity: 0; }
}


