/* ============================================
   FUTURISTIC DESIGN SYSTEM - SOLUCIONES TECHMAN
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors - Vibrant Futuristic Palette */
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #38bdf8;
  --secondary: #8b5cf6;
  --accent: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-blue: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Orbitron', 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.25);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #e2e8f0;
  background: #0f172a;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #667eea 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
  top: 50%;
  right: -10%;
  animation-delay: 7s;
}

.orb-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  bottom: -20%;
  left: 30%;
  animation-delay: 14s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

/* ===== NAVBAR ===== */
.glass-nav {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  transition: all var(--transition-base);
}

.glass-nav.scrolled {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: var(--shadow-lg);
}

.logo-container {
  position: relative;
  display: inline-block;
}

.logo-img {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  transition: transform var(--transition-base);
}

.logo-container:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(15px);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.logo-container:hover .logo-glow {
  opacity: 1;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.text-gradient {
  background: linear-gradient(135deg, #667eea 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link-modern {
  position: relative;
  color: #cbd5e1 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color var(--transition-fast);
}

.nav-link-modern::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-blue);
  transition: width var(--transition-base);
}

.nav-link-modern:hover {
  color: #fff !important;
}

.nav-link-modern:hover::before {
  width: 80%;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: -12rem 0;
}

.hero-badge {
  align-items: center;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 50px;
  color: #a5b4fc;
  font-size: 0.9rem;
  font-weight: 500;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}

.text-gradient-hero {
  background: linear-gradient(135deg, #667eea 0%, #06b6d4 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 600px;
}

.highlight-text {
  color: #06b6d4;
  font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn-primary-gradient {
  background: var(--gradient-blue);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.6);
}

.btn-outline-light-modern {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.btn-outline-light-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: white;
}

/* ===== STATS ===== */
.stat-card {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #94a3b8;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0.6;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% {
    top: 8px;
    opacity: 1;
  }

  100% {
    top: 30px;
    opacity: 0;
  }
}

.arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  animation: arrow-down 2s ease-in-out infinite;
}

@keyframes arrow-down {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(10px);
  }
}

/* ===== SECTIONS ===== */
.services-section,
.features-section,
.contact-section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 50px;
  color: #a5b4fc;
  font-size: 0.9rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 2;
  transition: transform var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.bg-gradient-blue {
  background: var(--gradient-blue);
}

.bg-gradient-purple {
  background: var(--gradient-purple);
}

.bg-gradient-green {
  background: var(--gradient-green);
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
}

.service-card:hover .icon-glow {
  opacity: 0.6;
}

.glow-blue {
  background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
}

.glow-purple {
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
}

.glow-green {
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.service-description {
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  color: #cbd5e1;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-features i {
  color: #06b6d4;
  font-size: 1.1rem;
}

.service-hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(102, 126, 234, 0.1), transparent);
  transition: height var(--transition-base);
}

.service-card:hover .service-hover-effect {
  height: 100%;
}

/* ===== FEATURE BOXES ===== */
.feature-box {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.feature-box i {
  font-size: 3rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.feature-box h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-box p {
  color: #94a3b8;
  margin: 0;
  font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

.contact-info-box {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.contact-info-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.4);
}

.contact-info-box h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info-box p {
  color: #94a3b8;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: white;
}

.btn-email {
  background: var(--gradient-purple);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
  color: white;
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 1.5rem;
  margin-top: 5rem;
}

.footer-brand h4 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-brand p {
  color: #94a3b8;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: #06b6d4;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--gradient-blue);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.9rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-blue);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }

  .floating-card {
    display: none;
  }

  .hero-logo {
    width: 200px;
    height: 200px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 2rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .scroll-indicator {
    display: none;
  }
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 2rem;
}

.py-5 {
  margin-top: 10rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* ===== SPECTACULAR NEW EFFECTS ===== */

/* Particle Canvas */
#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Aurora Effect */
.aurora-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  animation: aurora 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes aurora {

  0%,
  100% {
    transform: translateX(-100%);
    opacity: 0.3;
  }

  50% {
    transform: translateX(100%);
    opacity: 0.6;
  }
}

/* Typing Effect */
.typing-effect {
  position: relative;
  display: inline-block;
}

.typing-effect::after {
  content: '|';
  position: absolute;
  right: -10px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* Neon Pulse Effect */
.neon-pulse {
  animation: neon-pulse 2s ease-in-out infinite;
}

@keyframes neon-pulse {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(6, 182, 212, 0.5),
      0 0 10px rgba(6, 182, 212, 0.3),
      0 0 15px rgba(6, 182, 212, 0.2);
  }

  50% {
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.8),
      0 0 20px rgba(6, 182, 212, 0.6),
      0 0 30px rgba(6, 182, 212, 0.4);
  }
}

/* Neon Border Cards */
.neon-border {
  position: relative;
  overflow: hidden;
}

.neon-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #06b6d4, #8b5cf6, #ec4899, #06b6d4);
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: neon-border-rotate 8s linear infinite;
}

.neon-border:hover::before {
  opacity: 0.7;
}

@keyframes neon-border-rotate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.neon-border-card {
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.neon-border-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.neon-border-card:hover::before {
  opacity: 1;
}

/* Holographic Buttons */
.holographic-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.holographic-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 70%);
  transform: rotate(45deg);
  animation: holographic-shine 3s linear infinite;
}

@keyframes holographic-shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.holographic-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.6),
    0 0 20px rgba(118, 75, 162, 0.4);
}

/* Tech Cards */
.tech-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1rem;
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
}

.tech-card i {
  font-size: 3rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
  transition: transform var(--transition-base);
}

.tech-card span {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.tech-card:hover i {
  transform: scale(1.2) rotate(360deg);
}

/* Technologies Section */
.technologies-section {
  position: relative;
  z-index: 1;
}

/* Enhanced Service Cards with Neon */
.service-card.neon-border-card {
  background: rgba(15, 23, 42, 0.6);
}

/* Responsive Tech Cards */
@media (max-width: 768px) {
  .tech-card {
    padding: 1.5rem 0.75rem;
  }

  .tech-card i {
    font-size: 2.5rem;
  }

  .tech-card span {
    font-size: 0.8rem;
  }
}

/* ===== HERO LOGO ORBIT ANIMATION ===== */
.hero-logo-container {
  padding: 4rem 0 2rem;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-orbit-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.central-logo {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: float-slow-new 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.6));
}

@keyframes float-slow-new {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.logo-glow-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, rgba(6, 182, 212, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.orbiting-card {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  z-index: 5;
  transition: all 0.3s ease;
}

.orbiting-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.orbiting-card i {
  font-size: 1.75rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.orbit-1 {
  animation: orbit-1 12s linear infinite;
}

.orbit-2 {
  animation: orbit-2 12s linear infinite;
}

.orbit-3 {
  animation: orbit-3 12s linear infinite;
}

.orbit-4 {
  animation: orbit-4 12s linear infinite;
}

@keyframes orbit-1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(220px) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(220px) rotate(-360deg);
  }
}

@keyframes orbit-2 {
  0% {
    transform: translate(-50%, -50%) rotate(90deg) translateX(220px) rotate(-90deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(450deg) translateX(220px) rotate(-450deg);
  }
}

@keyframes orbit-3 {
  0% {
    transform: translate(-50%, -50%) rotate(180deg) translateX(220px) rotate(-180deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(540deg) translateX(220px) rotate(-540deg);
  }
}

@keyframes orbit-4 {
  0% {
    transform: translate(-50%, -50%) rotate(270deg) translateX(220px) rotate(-270deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(630deg) translateX(220px) rotate(-630deg);
  }
}

.hero-buttons {
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .logo-orbit-wrapper {
    width: 350px;
    height: 350px;
  }

  .hero-logo {
    width: 150px;
    height: 150px;
  }

  .logo-glow-pulse {
    width: 180px;
    height: 180px;
  }

  .orbiting-card {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .orbiting-card i {
    font-size: 1.25rem;
  }

  @keyframes orbit-1 {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg);
    }

    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg);
    }
  }

  @keyframes orbit-2 {
    0% {
      transform: translate(-50%, -50%) rotate(90deg) translateX(150px) rotate(-90deg);
    }

    100% {
      transform: translate(-50%, -50%) rotate(450deg) translateX(150px) rotate(-450deg);
    }
  }

  @keyframes orbit-3 {
    0% {
      transform: translate(-50%, -50%) rotate(180deg) translateX(150px) rotate(-180deg);
    }

    100% {
      transform: translate(-50%, -50%) rotate(540deg) translateX(150px) rotate(-540deg);
    }
  }

  @keyframes orbit-4 {
    0% {
      transform: translate(-50%, -50%) rotate(270deg) translateX(150px) rotate(-270deg);
    }

    100% {
      transform: translate(-50%, -50%) rotate(630deg) translateX(150px) rotate(-630deg);
    }
  }
}