/**
 * SarasCore Website - Modern CSS with Light/Dark Theme
 * Contemporary Design with Professional Aesthetics
 */

/* CSS Variables for Light/Dark Theme */
:root {
  /* Electric Future Palette (Behance Inspired) */
  --primary-color: #00A3FF;
  /* Electric Blue */
  --primary-light: #64D2FF;
  --primary-glow: rgba(0, 163, 255, 0.6);
  --primary-dark: #0077CC;

  --secondary-color: #A960FF;
  /* Neon Purple */
  --secondary-glow: rgba(169, 96, 255, 0.6);
  --accent-color: #FF00E5;
  /* Cyber Pink */

  /* Deep Space Backgrounds */
  --bg-primary: #01061C;
  /* Deepest Space */
  --bg-secondary: #0A1029;
  /* Deep Nebula */
  --bg-tertiary: #131B38;
  /* Panel Dark */

  /* Glassmorphism */
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(1, 6, 28, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.15);

  --bg-hero: radial-gradient(circle at 50% 0%, #121E3E 0%, #01061C 70%);

  /* Precision Text */
  --text-primary: #FFFFFF;
  --text-secondary: #B4C0D4;
  --text-muted: #6C7D9C;
  --text-highlight: #00A3FF;

  /* Borders & Shadows */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.05);

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
  --shadow-glow: 0 0 20px rgba(0, 163, 255, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00A3FF 0%, #0077CC 100%);
  --gradient-glow: linear-gradient(135deg, #00A3FF 0%, #A960FF 100%);
  --gradient-glass: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.0) 100%);

  /* Tech Typography */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;

  /* Animation Variables */
  --transition-fast: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Engineered Shapes */
  --border-radius-sm: 4px;
  --border-radius-lg: 12px;
  --clip-path-card: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  /* Resetting clip path for glass cards */
  --clip-path-btn: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

[data-theme="light"] {
  --bg-primary: #f0f2f5;
  --text-primary: #1a1a1a;
}

/* Global Styles */
* {
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
  position: relative;
}

/* Dynamic floating geometric background elements */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 136, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(0, 204, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: subtleBackgroundFloat 30s ease-in-out infinite;
}

/* Animated geometric shapes */
.dynamic-shape {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  will-change: transform;
}

.dynamic-shape.circle {
  border-radius: 50%;
}

.dynamic-shape.triangle {
  width: 0;
  height: 0;
  background: none;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid var(--primary-color);
}

.dynamic-shape.square {
  border-radius: 2px;
}

.dynamic-shape:nth-child(1) {
  top: 10%;
  left: 15%;
  width: 60px;
  height: 60px;
  background: rgba(0, 136, 255, 0.1);
  animation: enhancedFloatGeometric 8s ease-in-out infinite;
  animation-delay: 0s;
}

.dynamic-shape:nth-child(2) {
  top: 20%;
  right: 20%;
  width: 40px;
  height: 40px;
  background: rgba(0, 204, 255, 0.1);
  animation: enhancedFloatGeometric 10s ease-in-out infinite;
  animation-delay: 2s;
}

.dynamic-shape:nth-child(3) {
  top: 60%;
  left: 10%;
  width: 30px;
  height: 30px;
  background: rgba(16, 185, 129, 0.1);
  animation: enhancedFloatGeometric 12s ease-in-out infinite;
  animation-delay: 4s;
}

.dynamic-shape:nth-child(4) {
  top: 70%;
  right: 25%;
  width: 50px;
  height: 50px;
  background: rgba(245, 158, 11, 0.1);
  animation: enhancedFloatGeometric 9s ease-in-out infinite;
  animation-delay: 1s;
}

.dynamic-shape:nth-child(5) {
  top: 40%;
  left: 70%;
  width: 35px;
  height: 35px;
  background: rgba(138, 43, 226, 0.1);
  animation: enhancedFloatGeometric 11s ease-in-out infinite;
  animation-delay: 3s;
}

.dynamic-shape:nth-child(6) {
  top: 80%;
  left: 60%;
  width: 25px;
  height: 25px;
  background: rgba(239, 68, 68, 0.1);
  animation: enhancedFloatGeometric 7s ease-in-out infinite;
  animation-delay: 5s;
}

/* Subtle background floating animation */
@keyframes subtleBackgroundFloat {

  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.03;
  }

  50% {
    transform: translateY(-20px) scale(1.02);
    opacity: 0.05;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* Specialized Headers only get uppercase */
.section-title,
.hero-title,
.brand-text,
.btn {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* =================================================================
   REVOLUTIONARY HOLOGRAPHIC 3D SPATIAL NAVIGATION
   ================================================================= */

/* Revolutionary Navigation Container */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: linear-gradient(135deg,
      rgba(0, 136, 255, 0.03) 0%,
      rgba(0, 204, 255, 0.02) 30%,
      rgba(138, 43, 226, 0.03) 70%,
      rgba(0, 136, 255, 0.04) 100%);
  backdrop-filter: blur(30px) saturate(200%) hue-rotate(200deg);
  -webkit-backdrop-filter: blur(30px) saturate(200%) hue-rotate(200deg);
  border-radius: 0 0 0px 0px;
  box-shadow:
    0 20px 60px rgba(0, 136, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 100px rgba(0, 136, 255, 0.05);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Revolutionary Holographic Background Effects */
.navbar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 136, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 204, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    conic-gradient(from 0deg at 50% 50%, transparent 0%, rgba(0, 136, 255, 0.15) 25%, transparent 50%, rgba(0, 204, 255, 0.15) 75%, transparent 100%);
  animation: advancedHolographicRotation 25s linear infinite;
  z-index: -2;
}

.navbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 400%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.05) 25%,
      rgba(0, 136, 255, 0.1) 50%,
      rgba(0, 204, 255, 0.1) 60%,
      rgba(255, 255, 255, 0.05) 75%,
      transparent 100%);
  animation: advancedHolographicSweep 12s linear infinite;
  z-index: -1;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

/* Revolutionary Logo with Holographic Projection */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  margin-left: 2.5rem;
  margin-right: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  /* backdrop-filter: blur(20px);  */
}

.nav-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0;
  transition: all 0.6s ease;
  animation: holographicShimmer 4s ease-in-out infinite;
}

.nav-brand:hover::before {
  opacity: 1;
}

.nav-brand:hover {
  transform: translateY(-5px) scale(1.02);

}

.logo {
  width: 60px;
  height: auto;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 20px rgba(0, 136, 255, 0.5));
  z-index: 2;
  position: relative;
}

.nav-brand:hover .logo {
  filter: drop-shadow(0 0 30px rgba(0, 136, 255, 0.8));
  transform: scale(1.15) rotate(5deg);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.brand-text::after {
  content: '_';
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Revolutionary Orbital Navigation System (Removed from Header) */
.nav-menu {
  display: none;
}

/* =================================================================
   FLOATING HOLOGRAPHIC DOCK
   ================================================================= */
.dock-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 163, 255, 0.2);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  width: auto;
  max-width: 90vw;
}

.dock-container:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(0, 163, 255, 0.3);
  transform: translateX(-50%) translateY(-5px);
}

.dock-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  align-items: center;
}

.dock-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-secondary);
  padding: 0.75rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  min-width: 60px;
  position: relative;
}

.dock-link i {
  font-size: 1.5rem;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  color: var(--text-muted);
}

.dock-link span {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  position: absolute;
  bottom: -20px;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.8);
  padding: 2px 8px;
  border-radius: 4px;
  pointer-events: none;
}

.dock-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px) scale(1.1);
}

.dock-link:hover i {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

.dock-link:hover span {
  opacity: 1;
  transform: translateY(0);
}

.dock-link.active {
  background: rgba(0, 163, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 163, 255, 0.4);
}

.dock-link.active i {
  color: white;
}

/* Mobile Adjustments for Dock */
@media (max-width: 768px) {
  .dock-container {
    bottom: 1rem;
    padding: 0.5rem;
    border-radius: 20px;
    width: 95%;
    justify-content: space-around;
  }

  .dock-menu {
    width: 100%;
    justify-content: space-between;
  }

  .dock-link {
    min-width: auto;
    padding: 0.5rem;
  }

  .dock-link i {
    font-size: 1.2rem;
    margin-bottom: 0;
  }

  .dock-link span {
    display: none;
    /* Hide labels on mobile to save space */
  }

  .dock-link:hover {
    transform: translateY(-2px) scale(1.05);
  }
}

.nav-link {
  position: relative;
  padding: 0.9rem 1.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: block;
  letter-spacing: 0.3px;
}

/* Revolutionary Orbital Hover Effects */
.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,
      rgba(0, 136, 255, 0.15) 0%,
      rgba(0, 204, 255, 0.2) 25%,
      rgba(138, 43, 226, 0.15) 50%,
      rgba(0, 204, 255, 0.2) 75%,
      rgba(0, 136, 255, 0.15) 100%);
  opacity: 0;
  transition: all 0.6s ease;
  animation: orbitalGlow 3s ease-in-out infinite;
}

.nav-link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 136, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover::after {
  width: 150%;
  height: 150%;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 25px 50px rgba(0, 136, 255, 0.3),
    0 0 30px rgba(0, 204, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  background: rgba(0, 136, 255, 0.08);
}

/* Revolutionary Active State with Orbital Effect */
.nav-link.active {
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(45deg,
      rgba(0, 136, 255, 0.15),
      rgba(0, 204, 255, 0.18),
      rgba(138, 43, 226, 0.15));

  box-shadow:
    0 20px 40px rgba(0, 136, 255, 0.3),
    0 0 25px rgba(0, 204, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-4px) scale(1.02);
}

.nav-link.active::after {
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 204, 255, 0.3) 0%, transparent 70%);
  animation: activeOrbital 2s linear infinite;
}

/* Revolutionary Holographic Controls */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

/* Holographic Get Started Button */
.nav-actions .btn-primary {
  position: relative;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  text-decoration: none;
  border-radius: 18px;
  background: linear-gradient(45deg, rgba(0, 136, 255, 0.8), rgba(0, 204, 255, 0.9));
  backdrop-filter: blur(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.3px;
  box-shadow:
    0 10px 30px rgba(0, 136, 255, 0.3),
    0 0 20px rgba(0, 204, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-actions .btn-primary::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.6s ease;
}

.nav-actions .btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(45deg, rgba(0, 136, 255, 0.9), rgba(0, 204, 255, 1));
  box-shadow:
    0 20px 40px rgba(0, 136, 255, 0.4),
    0 0 30px rgba(0, 204, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);

}

.nav-actions .btn-primary:hover::before {
  left: 100%;
}

.nav-actions .btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.theme-toggle,
.mobile-menu-toggle {
  position: relative;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.theme-toggle::before,
.mobile-menu-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(0, 136, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: -1;
}

.theme-toggle:hover::before,
.mobile-menu-toggle:hover::before {
  opacity: 1;
}

.theme-toggle:hover,
.mobile-menu-toggle:hover {
  background: rgba(0, 136, 255, 0.15);

  color: white;
  transform: scale(1.2) rotate(10deg);
  box-shadow:
    0 20px 40px rgba(0, 136, 255, 0.4),
    0 0 30px rgba(0, 204, 255, 0.3);
}

.theme-toggle:active,
.mobile-menu-toggle:active {
  transform: scale(0.95) rotate(-5deg);
}

/* Revolutionary Orbital Animations */
@keyframes advancedHolographicRotation {
  0% {
    transform: rotate(0deg) scale(1);
    filter: hue-rotate(0deg) brightness(1);
  }

  25% {
    transform: rotate(90deg) scale(1.05);
    filter: hue-rotate(90deg) brightness(1.1);
  }

  50% {
    transform: rotate(180deg) scale(1);
    filter: hue-rotate(180deg) brightness(1.2);
  }

  75% {
    transform: rotate(270deg) scale(0.95);
    filter: hue-rotate(270deg) brightness(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
    filter: hue-rotate(360deg) brightness(1);
  }
}

@keyframes holographicRotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes advancedHolographicSweep {
  0% {
    left: -150%;
    transform: translateY(0) skewX(-5deg);
    opacity: 0.6;
  }

  50% {
    left: 50%;
    transform: translateY(-10px) skewX(0deg);
    opacity: 1;
  }

  100% {
    left: 150%;
    transform: translateY(0) skewX(5deg);
    opacity: 0.6;
  }
}

@keyframes holographicSweep {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

@keyframes holographicShimmer {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes holographicTextShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes orbitalGlow {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.5);
  }
}

@keyframes activeOrbital {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Modern Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  /* More padding to account for cut corners */
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;

  /* Angled Corners */
  clip-path: var(--clip-path-btn);
  background: var(--bg-tertiary);
  color: var(--primary-color);
  border-right: 2px solid var(--primary-color);
  margin-top: 1rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: rgba(0, 243, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.btn-primary:hover {
  background: rgba(0, 243, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 243, 255, 0.6);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #000;
  box-shadow: 0 0 30px var(--primary-color);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero Section */
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-hero);
  color: white;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Enhanced dynamic background elements for hero */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  /* Larger glow area */
  height: 140%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 163, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(169, 96, 255, 0.08) 0%, transparent 50%);
  filter: blur(80px);
  /* Softer blur */
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content {
  text-align: center;
  max-width: 1100px;
  /* Wider to allow text to breathe */
  margin: 0 auto;
}

.hero-title {
  font-size: 2.2rem;
  /* Mobile first size */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 15px rgba(0, 163, 255, 0.4));
  padding: 0 0.5rem;
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: block;
  margin-top: 0.5rem;
  font-size: 1em;
  filter: drop-shadow(0 0 20px rgba(0, 163, 255, 0.6));
}

@media (min-width: 768px) {
  .gradient-text {
    font-size: 1.1em;
    filter: drop-shadow(0 0 40px rgba(0, 163, 255, 0.8));
  }
}

.gradient-text::after {
  content: attr(data-text);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(15px);
  opacity: 0.8;
}

@media (min-width: 768px) {
  .gradient-text::after {
    filter: blur(25px);
  }
}

.hero-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    line-height: 1.8;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-actions .btn {
  width: 100%;
  max-width: 300px;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 5rem;
  }

  .hero-actions .btn {
    width: auto;
  }
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .hero-stats {
    flex-direction: row;
    justify-content: space-around;
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }
}

.stat {
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
}

.stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .stat {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 15px rgba(0, 163, 255, 0.8);
}

@media (min-width: 768px) {
  .stat h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 163, 255, 0.8);
  }
}

.stat p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .stat p {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ai-animation {
  position: relative;
  width: 300px;
  height: 300px;
}

.neural-network {
  position: relative;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  animation: pulse 2s infinite;
}

.node:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.node:nth-child(2) {
  top: 40%;
  left: 20%;
  animation-delay: 0.5s;
}

.node:nth-child(3) {
  top: 60%;
  left: 40%;
  animation-delay: 1s;
}

.node:nth-child(4) {
  top: 30%;
  right: 20%;
  animation-delay: 1.5s;
}

.node:nth-child(5) {
  top: 70%;
  right: 30%;
  animation-delay: 2s;
}

.connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8));
  animation: flow 3s infinite;
}

.connection:nth-child(6) {
  top: 25%;
  left: 35%;
  width: 30%;
  transform: rotate(15deg);
  animation-delay: 0s;
}

.connection:nth-child(7) {
  top: 50%;
  left: 25%;
  width: 40%;
  transform: rotate(45deg);
  animation-delay: 1s;
}

.connection:nth-child(8) {
  top: 65%;
  left: 45%;
  width: 35%;
  transform: rotate(-20deg);
  animation-delay: 2s;
}

/* Floating Particles */
.floating-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  will-change: transform, opacity;
}

/* Section Styles */
section {
  padding: 6rem 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  /* Account for fixed navbar */
}

.hero-content {
  border-left: 2px solid var(--primary-color);
  padding-left: 2rem;
  background: linear-gradient(90deg, rgba(0, 243, 255, 0.05), transparent);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  text-transform: uppercase;
  color: #fff;
}

.hero-title span {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Grid Layouts */
.about-grid,
.services-grid,
.products-grid,
.testimonials-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {

  .about-grid,
  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 2fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Modern Cards */
.service-card,
.product-card,
.testimonial-card,
.stat-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  background: var(--bg-card);
}

.service-card.premium {
  border: 2px solid var(--primary-color);
  position: relative;
}

.service-card.premium::before {
  background: var(--gradient-secondary);
}

.service-card.premium::after {
  content: 'Premium';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Service Cards */
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-lg);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Problem-Solution Services Section */
.services {
  background: var(--bg-secondary);
}

.problem-solution-container {
  margin-top: 3rem;
}

.problem-solution-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  clip-path: var(--clip-path-card);
  position: relative;
  transition: all 0.4s ease;
}

/* Technical Corner Markings - Top Left */
.problem-solution-item::before {
  content: 'SYS.0' counter(section-counter);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--primary-color);
  opacity: 0.7;
}

/* Technical Corner Markings - Bottom Right Bracket */
.problem-solution-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.problem-solution-item:hover {
  background: rgba(0, 188, 212, 0.05);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.problem-solution-item:hover::after {
  width: 100%;
  height: 100%;
  border-color: var(--primary-dark);
  border-width: 1px;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .problem-solution-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .solution-arrow {
    transform: rotate(90deg);
    margin: 1rem auto;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .problem-text {
    font-size: 1rem;
  }

  .solution-title {
    font-size: 1.25rem;
  }

  .solution-description {
    font-size: 0.9rem;
  }

  .solution-features {
    justify-content: center;
  }

  .solution-price {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .problem-solution-item {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }

  .problem-text {
    font-size: 0.95rem;
  }

  .solution-title {
    font-size: 1.125rem;
  }

  .solution-features {
    gap: 0.25rem;
  }

  .solution-feature {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
}

.problem-section {
  text-align: right;
}

@media (max-width: 768px) {
  .problem-section {
    text-align: center;
  }
}

.problem-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 1rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .problem-label {
    justify-content: center;
  }
}

.problem-label i {
  font-size: 1rem;
}

.problem-text {
  font-size: 1.125rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.problem-description {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.solution-arrow {
  font-size: 2rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  box-shadow: var(--shadow-md);
}

.solution-section {
  text-align: left;
}

@media (max-width: 768px) {
  .solution-section {
    text-align: center;
  }
}

.solution-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
  margin-bottom: 1rem;
}

.solution-label i {
  font-size: 1rem;
}

.solution-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.solution-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.solution-feature {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  border: 1px solid var(--border-light);
}

.solution-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.solution-price i {
  font-size: 1rem;
}

/* Legacy styles for backward compatibility */
.services-list {
  display: none;
}

.service-item {
  display: none;
}

.service-price {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Product Cards */
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--text-primary);
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.product-features span {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Testimonial Cards */
.testimonial-card {
  padding: 2rem;
}

.testimonial-content {
  margin-bottom: 2rem;
}

.quote-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h4 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.company-badge {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  display: inline-block;
}

.rating {
  color: var(--secondary-color);
}

/* About Section */
.about {
  background: var(--bg-secondary);
}

.about-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-features {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  text-align: center;
}

.feature i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
  background: var(--bg-secondary);
}

.trusted-partners {
  margin-top: 4rem;
  text-align: center;
}

.trusted-partners h3 {
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.partner-logo {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  box-shadow: var(--shadow-sm);
}

.logo-placeholder {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
  gap: 4rem;
}

.contact-info h3 {
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-secondary);
  margin: 0;
}

.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  margin-right: 1rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Forms */
.contact-form {
  background: var(--bg-card);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius-md);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all var(--transition-fast);
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group select:focus+label,
.form-group select:valid+label,
.form-group textarea:not(:placeholder-shown)+label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: var(--primary-color);
  background: var(--bg-primary);
  padding: 0 0.25rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  position: static;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
  }
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
    justify-items: start;
  }
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-section ul li {
  margin: 0;
}

.footer-section ul li a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CTA Sections */
.services-cta,
.products-cta {
  text-align: center;
  background: var(--gradient-primary);
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--border-radius-xl);
  margin-top: 4rem;
}

.services-cta h3,
.products-cta p {
  color: white;
}

.services-cta h3 {
  margin-bottom: 1rem;
}

.services-cta p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Animation Classes */
.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-in {
  animation: slideInUp 0.8s ease-out forwards;
  opacity: 1;
  transform: translateY(0);
}

/* Modern Hover Effects */
.service-card,
.product-card {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Ripple Effect */
.btn {
  position: relative;
  overflow: hidden;
}

/* Mouse Trail Effect */
.mouse-trail {
  pointer-events: none;
  z-index: 9999;
}

/* Floating Elements */
.floating-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
  will-change: transform, opacity;
}

@keyframes floatElement {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.1;
  }

  90% {
    opacity: 0.1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
}

/* Theme Transition Effect */
.theme-transitioning * {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

/* Modern Form Effects */
.form-group.focused input,
.form-group.focused textarea {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input:focus+label,
.form-group textarea:focus+label {
  color: var(--primary-color);
}

/* Enhanced Loading Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@keyframes flow {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-10px) translateX(-10px);
    opacity: 0.4;
  }

  75% {
    transform: translateY(-15px) translateX(5px);
    opacity: 0.8;
  }
}

/* Dynamic Background Shift Animation */
@keyframes dynamicBackgroundShift {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }

  25% {
    transform: scale(1.1) rotate(2deg);
    opacity: 1;
  }

  50% {
    transform: scale(0.9) rotate(-1deg);
    opacity: 0.9;
  }

  75% {
    transform: scale(1.05) rotate(1deg);
    opacity: 1;
  }
}

/* Enhanced Floating Geometric Shapes */
@keyframes enhancedFloatGeometric {

  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-30px) translateX(15px) rotate(90deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-20px) translateX(-10px) rotate(180deg);
    opacity: 0.5;
  }

  75% {
    transform: translateY(-40px) translateX(8px) rotate(270deg);
    opacity: 0.8;
  }
}

/* Additional Dynamic Particles Animation */
@keyframes dynamicParticles {

  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.4;
  }

  33% {
    transform: translateY(-25px) translateX(12px) scale(1.1);
    opacity: 0.8;
  }

  66% {
    transform: translateY(-15px) translateX(-8px) scale(0.9);
    opacity: 0.6;
  }
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Revolutionary Holographic Mobile Menu */
@media (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
  }

  .nav-menu::before {
    display: none;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu.active .nav-link {
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-30px);
  }

  .nav-menu.active .nav-link:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-menu.active .nav-link:nth-child(2) {
    animation-delay: 0.15s;
  }

  .nav-menu.active .nav-link:nth-child(3) {
    animation-delay: 0.2s;
  }

  .nav-menu.active .nav-link:nth-child(4) {
    animation-delay: 0.25s;
  }

  .nav-menu.active .nav-link:nth-child(5) {
    animation-delay: 0.3s;
  }

  .nav-menu.active .nav-link:nth-child(6) {
    animation-delay: 0.35s;
  }

  .nav-menu.active .nav-link:nth-child(7) {
    animation-delay: 0.4s;
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Print Styles */
@media print {

  .navbar,
  .theme-toggle,
  .mobile-menu-toggle,
  .hero-actions,
  .contact-form {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  section {
    padding: 2rem 0;
  }
}

/* Web Design Section Styles */
.web-design {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.web-design-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .web-design-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

.design-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.design-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.card-visual {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.visual-tech {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.visual-corp {
  background: linear-gradient(135deg, #10b981, #059669);
}

.visual-ecom {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.card-tags {
  list-style: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.card-tags li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.card-tags li i {
  color: var(--primary-color);
}

.geo-seo-badge {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 95, 70, 0.1));
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.geo-icon {
  font-size: 3rem;
  color: var(--primary-color);
}

.geo-text h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* Blog Section Styles */
.blog {
  background: var(--bg-secondary);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: rgba(5, 5, 10, 0.8);
  border: 1px solid var(--border-color);
  clip-path: var(--clip-path-card);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
  border-color: var(--primary-color);
}

.blog-card::before {
  content: "ACCESSING...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
  font-family: var(--font-display);
  font-size: 1.2rem;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
  z-index: 10;
  text-shadow: 0 0 10px var(--primary-color);
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card:hover .blog-image {
  opacity: 0.2;
}

.blog-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.blog-visual {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-visual {
  transform: scale(1.1);
}

.visual-ai {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.visual-eco {
  background: linear-gradient(135deg, #10b981, #059669);
}

.visual-trans {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.blog-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-meta i {
  margin-right: 0.25rem;
  color: var(--primary-color);
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex: 1;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more:hover {
  gap: 0.75rem;
}


/* Spotlight Hover Effect */
.problem-solution-item,
.service-card,
.design-card,
.blog-card {
  background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0),
      rgba(255, 255, 255, 0.03),
      transparent 40%), var(--bg-card);
}