/* ================================================================
   WEB CRAFTERS IT SOLUTIONS — PREMIUM ANIMATIONS & MODERN POLISH
   Professional Agency-Grade Design Enhancement
   ================================================================ */

/* ---- Google Fonts Enhancement ---- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================================
   PREMIUM CSS CUSTOM PROPERTIES OVERRIDES
   ============================================================ */
:root {
  /* Vibrant gradient palette */
  --gradient-primary: linear-gradient(135deg, #6B00CC 0%, #9B30FF 60%, #C060FF 100%);
  --gradient-hero: linear-gradient(135deg, #0a0015 0%, #1a003a 40%, #0d0028 100%);
  --gradient-aurora: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f64f59 50%, #c0392b 75%, #667eea 100%);
  --gradient-vibrant: linear-gradient(135deg, #6B00CC, #FF6B2B, #9B30FF);
  
  /* Enhanced shadows */
  --shadow-luxury: 0 25px 80px rgba(107,0,204,0.2), 0 8px 32px rgba(107,0,204,0.15);
  --shadow-neon: 0 0 20px rgba(155,48,255,0.5), 0 0 60px rgba(107,0,204,0.3), 0 0 100px rgba(107,0,204,0.1);
  --shadow-card: 0 4px 24px rgba(107,0,204,0.08), 0 1px 4px rgba(0,0,0,0.04);
  
  /* Smooth easing */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-sharp: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Timing */
  --dur-fast: 0.2s;
  --dur-med: 0.4s;
  --dur-slow: 0.7s;
  --dur-xslow: 1.1s;
}

/* ============================================================
   GLOBAL BODY ENHANCEMENTS
   ============================================================ */
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* Premium selection color */
::selection {
  background: rgba(107,0,204,0.2);
  color: #3d0080;
}

/* ============================================================
   ANIMATED BACKGROUND — GLOBAL PARTICLES CANVAS
   ============================================================ */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ============================================================
   PREMIUM PAGE LOADER
   ============================================================ */
.page-loader {
  background: linear-gradient(135deg, #0a0015 0%, #1a003a 50%, #0d0028 100%) !important;
  z-index: 99999 !important;
}

.page-loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(107,0,204,0.3) 0%, transparent 70%);
  animation: loader-glow 2s ease-in-out infinite alternate;
}

@keyframes loader-glow {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

.loader-logo img {
  filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(155,48,255,0.8)) drop-shadow(0 0 60px rgba(107,0,204,0.5)) !important;
  animation: logo-load 2s ease-in-out infinite !important;
  width: 160px !important;
}

@keyframes logo-load {
  0%, 100% { transform: scale(1) translateY(0); filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(155,48,255,0.6)); }
  50% { transform: scale(1.06) translateY(-4px); filter: brightness(0) invert(1) drop-shadow(0 0 40px rgba(155,48,255,0.9)) drop-shadow(0 0 80px rgba(107,0,204,0.6)); }
}

.loader-bar {
  width: 240px !important;
  height: 2px !important;
  background: rgba(255,255,255,0.08) !important;
  overflow: visible !important;
}

.loader-progress {
  background: linear-gradient(90deg, #6B00CC, #9B30FF, #FF6B2B) !important;
  background-size: 200% !important;
  animation: loader-bar 1.8s ease-in-out forwards, loader-shimmer 1.5s linear infinite !important;
  box-shadow: 0 0 12px rgba(155,48,255,0.8), 0 0 24px rgba(107,0,204,0.5) !important;
  border-radius: 2px;
}

@keyframes loader-shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================================
   PREMIUM NAVBAR
   ============================================================ */
.navbar {
  background: rgba(255,255,255,0.75) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(107,0,204,0.08) !important;
  transition: all 0.4s var(--ease-smooth) !important;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 4px 32px rgba(107,0,204,0.12), 0 1px 0 rgba(107,0,204,0.06) !important;
}

.nav-link {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.25s ease !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-bounce) !important;
  transform-origin: center;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1) !important;
}

/* Override old active underline */
.nav-link.active::after {
  bottom: 0;
  left: 16px;
  right: 16px;
  width: auto;
  transform: scaleX(1);
}

/* ============================================================
   HERO SECTION — CINEMATIC REDESIGN
   ============================================================ */
.hero {
  background: var(--gradient-hero) !important;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  background: var(--gradient-hero) !important;
}

/* Animated aurora bg layer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 120% 80% at 70% 40%, rgba(107,0,204,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0,200,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 10%, rgba(255,107,43,0.1) 0%, transparent 60%);
  animation: aurora-shift 12s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes aurora-shift {
  0% { 
    background: 
      radial-gradient(ellipse 120% 80% at 70% 40%, rgba(107,0,204,0.35) 0%, transparent 60%),
      radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0,200,255,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 60% 60% at 90% 10%, rgba(255,107,43,0.1) 0%, transparent 60%);
  }
  50% {
    background: 
      radial-gradient(ellipse 100% 100% at 60% 60%, rgba(155,48,255,0.4) 0%, transparent 65%),
      radial-gradient(ellipse 70% 70% at 10% 60%, rgba(0,150,255,0.15) 0%, transparent 60%),
      radial-gradient(ellipse 80% 50% at 85% 30%, rgba(255,100,43,0.12) 0%, transparent 55%);
  }
  100% {
    background: 
      radial-gradient(ellipse 110% 90% at 75% 35%, rgba(107,0,204,0.3) 0%, transparent 65%),
      radial-gradient(ellipse 90% 60% at 25% 75%, rgba(0,220,200,0.1) 0%, transparent 60%),
      radial-gradient(ellipse 70% 70% at 95% 15%, rgba(255,150,43,0.1) 0%, transparent 60%);
  }
}

/* Enhanced grid */
.hero-grid {
  background-image:
    linear-gradient(rgba(155,48,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155,48,255,0.06) 1px, transparent 1px) !important;
  background-size: 50px 50px !important;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%) !important;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%) !important;
  animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}

/* Hero text colors for dark bg */
.hero .hero-heading {
  color: #ffffff !important;
  text-shadow: 0 2px 40px rgba(155,48,255,0.3);
}

.hero .hero-heading .highlight {
  background: linear-gradient(135deg, #C060FF 0%, #FF6B2B 50%, #FFD700 100%) !important;
  background-size: 200% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: text-shimmer 4s ease-in-out infinite !important;
}

@keyframes text-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero .hero-text {
  color: rgba(255,255,255,0.75) !important;
}

.hero .hero-badge {
  background: rgba(155,48,255,0.15) !important;
  border: 1px solid rgba(155,48,255,0.4) !important;
  color: #C080FF !important;
  backdrop-filter: blur(10px);
}

.hero .hero-stat-number {
  color: #ffffff !important;
}

.hero .hero-stat-number span {
  color: #C060FF !important;
}

.hero .hero-stat-label {
  color: rgba(255,255,255,0.55) !important;
}

.hero .hero-divider {
  background: rgba(255,255,255,0.15) !important;
}

/* Hero mockup enhanced */
.hero-mockup-main {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(155,48,255,0.2) !important;
  box-shadow: 
    0 0 0 1px rgba(155,48,255,0.1),
    0 20px 80px rgba(107,0,204,0.4),
    0 0 100px rgba(107,0,204,0.2) !important;
  animation: mockup-glow 4s ease-in-out infinite !important;
}

@keyframes mockup-glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(155,48,255,0.1), 0 20px 80px rgba(107,0,204,0.4), 0 0 100px rgba(107,0,204,0.2); }
  50% { box-shadow: 0 0 0 1px rgba(155,48,255,0.25), 0 20px 100px rgba(107,0,204,0.5), 0 0 140px rgba(107,0,204,0.3); }
}

/* Float cards enhanced */
.hero-float-card {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 8px 32px rgba(107,0,204,0.3) !important;
}

.float-card-label {
  color: rgba(255,255,255,0.5) !important;
}

.float-card-value {
  color: #ffffff !important;
}

/* ============================================================
   HERO SECTION BUTTONS (on dark bg)
   ============================================================ */
.hero .btn-secondary {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(155,48,255,0.5) !important;
}

/* ============================================================
   PREMIUM BUTTON UPGRADES
   ============================================================ */
.btn {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s ease !important;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
}

.btn:active {
  transform: translateY(0) scale(0.98) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #7C00F0 0%, #9B30FF 50%, #C060FF 100%) !important;
  box-shadow: 0 6px 30px rgba(107,0,204,0.5), 0 2px 8px rgba(107,0,204,0.3) !important;
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(107,0,204,0.7), 0 4px 16px rgba(107,0,204,0.4) !important;
}

/* Ripple effect on buttons */
.btn::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  height: 0 !important;
  background: rgba(255,255,255,0.15) !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease !important;
  opacity: 0 !important;
}

.btn:active::before {
  width: 300px !important;
  height: 300px !important;
  opacity: 1 !important;
}

/* ============================================================
   GLASS CARDS — PREMIUM UPGRADE
   ============================================================ */
.glass-card {
  background: #ffffff !important;
  border: 1px solid rgba(107,0,204,0.08) !important;
  border-radius: 20px !important;
  box-shadow: var(--shadow-card) !important;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s ease, border-color 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,0,204,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 60px rgba(107,0,204,0.18), 0 6px 20px rgba(107,0,204,0.1) !important;
  border-color: rgba(107,0,204,0.2) !important;
}

.glass-card:hover::before {
  opacity: 1;
}

/* ============================================================
   SERVICE CARDS — PREMIUM
   ============================================================ */
.service-card {
  border-radius: 24px !important;
  overflow: hidden;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s ease !important;
}

.service-card::before {
  height: 4px !important;
  background: var(--gradient-primary) !important;
  box-shadow: 0 0 20px rgba(107,0,204,0.4) !important;
}

.service-icon {
  border-radius: 16px !important;
  transition: transform 0.4s var(--ease-bounce), background 0.3s ease, box-shadow 0.3s ease !important;
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: inherit;
  filter: blur(8px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
  opacity: 0.5;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg) !important;
  box-shadow: var(--shadow-neon) !important;
}

/* ============================================================
   SECTION TITLES — ANIMATED GRADIENT
   ============================================================ */
.section-title {
  position: relative;
  line-height: 1.15;
}

.section-title span {
  background: linear-gradient(135deg, #6B00CC 0%, #9B30FF 30%, #FF6B2B 60%, #6B00CC 100%) !important;
  background-size: 300% 100% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: gradient-sweep 5s ease infinite !important;
  display: inline-block;
}

@keyframes gradient-sweep {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================================
   SECTION LABEL — PREMIUM PILL
   ============================================================ */
.section-label {
  background: linear-gradient(135deg, rgba(107,0,204,0.1), rgba(155,48,255,0.06)) !important;
  border: 1px solid rgba(107,0,204,0.2) !important;
  border-radius: 999px !important;
  padding: 7px 20px 7px 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
}

.section-label::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-15deg);
  animation: shimmer 4s ease-in-out infinite;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS — ENHANCED
   ============================================================ */
.reveal {
  opacity: 0 !important;
  transform: translateY(40px) !important;
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth) !important;
}

.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.reveal-left {
  opacity: 0 !important;
  transform: translateX(-50px) !important;
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth) !important;
}

.reveal-left.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.reveal-right {
  opacity: 0 !important;
  transform: translateX(50px) !important;
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth) !important;
}

.reveal-right.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.reveal-delay-1 { transition-delay: 0.15s !important; }
.reveal-delay-2 { transition-delay: 0.3s !important; }
.reveal-delay-3 { transition-delay: 0.45s !important; }
.reveal-delay-4 { transition-delay: 0.6s !important; }
.reveal-delay-5 { transition-delay: 0.75s !important; }

/* Zoom reveal variant */
.reveal-zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-bounce);
}

.reveal-zoom.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   PROCESS STEPS — PREMIUM CONNECTED TIMELINE
   ============================================================ */
.process-step {
  position: relative;
  z-index: 1;
}

.process-number {
  width: 64px !important;
  height: 64px !important;
  background: linear-gradient(135deg, #6B00CC, #C060FF) !important;
  position: relative;
  box-shadow: 0 8px 32px rgba(107,0,204,0.5), 0 0 0 6px rgba(107,0,204,0.1) !important;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.3s ease !important;
}

.process-step:hover .process-number {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 40px rgba(107,0,204,0.7), 0 0 0 8px rgba(107,0,204,0.15) !important;
}

.process-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(rgba(107,0,204,0.4) 0%, rgba(155,48,255,0.4) 50%, transparent 100%);
  animation: spin-border 4s linear infinite;
  z-index: -1;
}

@keyframes spin-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.process-step h4 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

/* ============================================================
   TESTIMONIAL CARDS — LUXURY
   ============================================================ */
.testimonial-card {
  border-radius: 24px !important;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s ease !important;
  overflow: hidden;
  position: relative;
}

.testimonial-card::before {
  font-size: 9rem !important;
  opacity: 0.07 !important;
  top: -20px !important;
  left: 20px !important;
}

.testimonial-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 24px 64px rgba(107,0,204,0.2) !important;
}

.testimonial-text {
  font-size: 1rem !important;
  line-height: 1.9 !important;
  font-style: normal !important;
  color: #4a5568 !important;
}

.testimonial-stars {
  font-size: 1.1rem !important;
  letter-spacing: 4px !important;
  background: linear-gradient(135deg, #FFB300, #FF6B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-avatar-placeholder {
  background: linear-gradient(135deg, #6B00CC, #C060FF) !important;
  box-shadow: 0 4px 16px rgba(107,0,204,0.4) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* ============================================================
   BLOG CARDS — EDITORIAL
   ============================================================ */
.blog-card {
  border-radius: 24px !important;
  overflow: hidden !important;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s ease !important;
}

.blog-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 24px 60px rgba(107,0,204,0.18) !important;
}

.blog-thumbnail {
  position: relative;
  overflow: hidden;
}

.blog-thumbnail img {
  transition: transform 0.7s var(--ease-smooth) !important;
}

.blog-card:hover .blog-thumbnail img {
  transform: scale(1.1) !important;
}

.blog-title {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

.blog-body {
  padding: 28px !important;
}

/* ============================================================
   WHY CHOOSE US — ENHANCED
   ============================================================ */
.why-item {
  border-radius: 20px !important;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s ease !important;
  position: relative;
  overflow: hidden;
}

.why-item:hover {
  transform: translateY(-6px) !important;
}

.why-icon {
  border-radius: 16px !important;
  width: 56px !important;
  height: 56px !important;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.3s ease !important;
}

.why-item:hover .why-icon {
  transform: scale(1.15) rotate(-8deg) !important;
  animation: none !important;
}

/* ============================================================
   ABOUT STAT CARDS — UPGRADE
   ============================================================ */
.about-stat-card {
  border-radius: 20px !important;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s ease !important;
  overflow: hidden;
  position: relative;
}

.about-stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,0,204,0.04), rgba(155,48,255,0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 50px rgba(107,0,204,0.2) !important;
}

.about-stat-card:hover::after {
  opacity: 1;
}

.about-stat-icon {
  border-radius: 14px !important;
  width: 58px !important;
  height: 58px !important;
  font-size: 1.6rem !important;
  box-shadow: 0 4px 16px rgba(107,0,204,0.15) !important;
  transition: transform 0.4s var(--ease-bounce) !important;
}

.about-stat-card:hover .about-stat-icon {
  transform: scale(1.2) rotate(-10deg) !important;
}

/* ============================================================
   MARQUEE SECTIONS — POLISH
   ============================================================ */
.marquee-section {
  background: linear-gradient(135deg, rgba(107,0,204,0.04), rgba(155,48,255,0.03), rgba(107,0,204,0.04)) !important;
  padding: 36px 0 !important;
  position: relative;
  overflow: hidden !important;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, white, transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, white, transparent);
}

.marquee-item {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #4a5568 !important;
  padding: 8px 20px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(107,0,204,0.1);
  box-shadow: 0 2px 8px rgba(107,0,204,0.06);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.marquee-item:hover {
  border-color: rgba(107,0,204,0.3);
  background: rgba(107,0,204,0.05);
  box-shadow: 0 4px 16px rgba(107,0,204,0.15);
}

.marquee-item i {
  color: #6B00CC !important;
  font-size: 1.1rem !important;
}

.marquee-track {
  gap: 16px !important;
  align-items: center;
  animation: marquee 25s linear infinite !important;
}

/* Tech marquee */
.tech-marquee-section {
  padding: 40px 0 !important;
  position: relative;
  overflow: hidden !important;
}

.tech-marquee-section::before,
.tech-marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.tech-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, white, transparent);
}

.tech-marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, white, transparent);
}

.tech-badge {
  background: #fff !important;
  border: 1px solid rgba(107,0,204,0.12) !important;
  border-radius: var(--radius-full) !important;
  padding: 12px 24px !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  box-shadow: 0 2px 12px rgba(107,0,204,0.08) !important;
  transition: all 0.3s var(--ease-bounce) !important;
}

.tech-badge:hover {
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 8px 24px rgba(107,0,204,0.2) !important;
  border-color: var(--primary) !important;
}

/* ============================================================
   FOOTER — DARK PREMIUM UPGRADE
   ============================================================ */
.footer {
  background: linear-gradient(160deg, #06000F 0%, #0F002A 40%, #15003D 70%, #09001B 100%) !important;
  position: relative;
  overflow: hidden;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(107,0,204,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 2;
}

.footer-social:hover {
  transform: translateY(-6px) scale(1.1) !important;
  box-shadow: 0 12px 30px rgba(107,0,204,0.4) !important;
}

.footer-link {
  transition: all 0.3s ease !important;
  position: relative;
}

.footer-link:hover {
  color: #C060FF !important;
  transform: translateX(8px) !important;
}

/* ============================================================
   CTA SECTION — ULTRA PREMIUM
   ============================================================ */
.cta-box {
  background: linear-gradient(135deg, rgba(107,0,204,0.15) 0%, rgba(155,48,255,0.1) 50%, rgba(255,107,43,0.1) 100%) !important;
  border: 1px solid rgba(107,0,204,0.25) !important;
  border-radius: 32px !important;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(107,0,204,0.05) 0%,
    transparent 25%,
    rgba(155,48,255,0.05) 50%,
    transparent 75%,
    rgba(107,0,204,0.05) 100%
  );
  animation: cta-rotate 20s linear infinite;
  pointer-events: none;
}

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

/* ============================================================
   FLOATING WHATSAPP & CALL BUTTONS — PREMIUM
   ============================================================ */
.whatsapp-btn {
  box-shadow: 0 8px 30px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.4) !important;
  transition: all 0.3s var(--ease-bounce) !important;
}

.whatsapp-btn:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 12px 40px rgba(37,211,102,0.8) !important;
}

.call-btn {
  box-shadow: 0 8px 30px rgba(107,0,204,0.6), 0 0 0 0 rgba(107,0,204,0.4) !important;
  transition: all 0.3s var(--ease-bounce) !important;
}

.call-btn:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 12px 40px rgba(107,0,204,0.8) !important;
}

/* ============================================================
   CONTACT FORM — PREMIUM
   ============================================================ */
.contact-form {
  border-radius: 28px !important;
  box-shadow: 0 24px 80px rgba(107,0,204,0.12) !important;
  transition: box-shadow 0.3s ease !important;
}

.contact-form:hover {
  box-shadow: 0 32px 100px rgba(107,0,204,0.18) !important;
}

.form-control {
  background: rgba(107,0,204,0.03) !important;
  border: 1.5px solid rgba(107,0,204,0.1) !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  font-size: 0.95rem !important;
}

.form-control:focus {
  background: rgba(107,0,204,0.05) !important;
  border-color: rgba(107,0,204,0.5) !important;
  box-shadow: 0 0 0 4px rgba(107,0,204,0.1), 0 4px 16px rgba(107,0,204,0.1) !important;
  transform: translateY(-1px);
}

.contact-icon {
  border-radius: 16px !important;
  transition: all 0.4s var(--ease-bounce) !important;
}

.contact-info-item:hover .contact-icon {
  transform: scale(1.2) rotate(-8deg) !important;
  box-shadow: 0 8px 24px rgba(107,0,204,0.4) !important;
}

/* ============================================================
   SCROLL TO TOP — PREMIUM
   ============================================================ */
.scroll-top-btn {
  border-radius: 14px !important;
  width: 48px !important;
  height: 48px !important;
  box-shadow: 0 8px 30px rgba(107,0,204,0.5) !important;
  transition: all 0.4s var(--ease-bounce) !important;
}

.scroll-top-btn:hover {
  transform: translateY(-6px) scale(1.1) !important;
  box-shadow: 0 16px 40px rgba(107,0,204,0.7) !important;
}

/* ============================================================
   CURSOR ENHANCEMENT — PREMIUM MAGNETIC CURSOR
   ============================================================ */
#custom-cursor {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(107,0,204,0.7);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease, opacity 0.3s ease;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

#custom-cursor.is-hovering {
  transform: translate(-50%, -50%) scale(2.5);
  background: rgba(107,0,204,0.1);
  border-color: rgba(107,0,204,0.4);
}

#cursor-dot {
  width: 6px;
  height: 6px;
  background: #6B00CC;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 100000;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease;
}

/* ============================================================
   PARTICLE FLOATING DOTS — HERO ENHANCEMENT
   ============================================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(155,48,255,0.4);
  animation: particle-float 10s ease-in-out infinite;
}

@keyframes particle-float {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.4; }
  25% { transform: translateY(-30px) translateX(15px) scale(1.1); opacity: 0.6; }
  50% { transform: translateY(-15px) translateX(-10px) scale(0.9); opacity: 0.3; }
  75% { transform: translateY(-40px) translateX(20px) scale(1.05); opacity: 0.5; }
}

/* ============================================================
   SECTION BACKGROUNDS — DEPTH
   ============================================================ */
.section-dark {
  background: #F8F5FF !important;
}

.section-gradient {
  background: linear-gradient(135deg, rgba(107,0,204,0.04) 0%, rgba(155,48,255,0.03) 50%, rgba(255,107,43,0.02) 100%) !important;
}

/* ============================================================
   PORTFOLIO ITEMS
   ============================================================ */
.portfolio-item {
  border-radius: 20px !important;
  box-shadow: var(--shadow-card) !important;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s ease !important;
}

.portfolio-item:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 24px 60px rgba(107,0,204,0.25) !important;
}

/* ============================================================
   FILTER TABS
   ============================================================ */
.filter-tab {
  transition: all 0.3s var(--ease-bounce) !important;
  border-radius: 999px !important;
}

.filter-tab:hover,
.filter-tab.active {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(107,0,204,0.3) !important;
}

/* ============================================================
   NUMBER COUNTER ANIMATION ENHANCEMENT
   ============================================================ */
.hero-stat-number .counter,
.stat-number .counter {
  display: inline-block;
  animation: counter-pop 0.6s var(--ease-bounce) forwards;
}

@keyframes counter-pop {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================================================
   HERO ORBS — ENHANCED
   ============================================================ */
.hero-orb-1 {
  background: radial-gradient(circle, rgba(155,48,255,0.6) 0%, transparent 70%) !important;
  width: 700px !important;
  height: 700px !important;
  opacity: 0.5 !important;
  filter: blur(100px) !important;
}

.hero-orb-2 {
  background: radial-gradient(circle, rgba(0,200,255,0.4) 0%, transparent 70%) !important;
  width: 500px !important;
  height: 500px !important;
  opacity: 0.4 !important;
  filter: blur(100px) !important;
}

.hero-orb-3 {
  background: radial-gradient(circle, rgba(255,107,43,0.35) 0%, transparent 70%) !important;
  width: 400px !important;
  height: 400px !important;
  opacity: 0.35 !important;
  filter: blur(80px) !important;
}

/* ============================================================
   HERO TECH BADGES — DARK BG VERSION
   ============================================================ */
.hero-tech-badge {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3) !important;
}

.hero-tech-badge span {
  color: rgba(255,255,255,0.9);
}

/* ============================================================
   TOAST NOTIFICATION — PREMIUM
   ============================================================ */
.toast {
  border-radius: 16px !important;
  box-shadow: 0 16px 50px rgba(0,0,0,0.15) !important;
  backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
}

.toast.success {
  border-left: 4px solid #10B981 !important;
}
.toast.error {
  border-left: 4px solid #EF4444 !important;
}

/* ============================================================
   PAGE HERO BANNERS
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, #06000F 0%, #0F002A 50%, #15003D 100%) !important;
  position: relative;
}

.page-hero h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 30px rgba(107,0,204,0.4);
}

.page-hero p {
  color: rgba(255,255,255,0.7) !important;
}

.page-hero .section-label {
  background: rgba(155,48,255,0.15) !important;
  border-color: rgba(155,48,255,0.35) !important;
  color: #C080FF !important;
}

.page-hero .breadcrumb {
  color: rgba(255,255,255,0.5) !important;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.7) !important;
}

.page-hero .breadcrumb a:hover {
  color: #C060FF !important;
}

/* ============================================================
   ABOUT SECTION — HERO OVERVIEW
   ============================================================ */
.why-grid .reveal-left .section-label {
  color: var(--secondary) !important;
}

/* ============================================================
   SCROLLBAR — PREMIUM
   ============================================================ */
::-webkit-scrollbar {
  width: 5px !important;
}

::-webkit-scrollbar-track {
  background: #f8f5ff !important;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #6B00CC, #9B30FF) !important;
  border-radius: 10px !important;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #8B2BE8, #C060FF) !important;
}

/* ============================================================
   STATISTIC SECTION — ENHANCED
   ============================================================ */
.stats-grid {
  gap: 28px !important;
}

.stat-item {
  border-radius: 24px !important;
  padding: 48px 28px !important;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s ease !important;
}

.stat-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 60px rgba(107,0,204,0.2) !important;
}

.stat-number {
  font-size: 3.5rem !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 900 !important;
}

/* ============================================================
   ACCORDION — PREMIUM
   ============================================================ */
.accordion-item {
  border-radius: 16px !important;
  box-shadow: 0 2px 12px rgba(107,0,204,0.06) !important;
  transition: all 0.3s ease !important;
}

.accordion-item.open {
  box-shadow: 0 8px 32px rgba(107,0,204,0.15) !important;
  border-color: rgba(107,0,204,0.3) !important;
}

.accordion-header {
  border-radius: 16px;
  transition: background 0.3s ease !important;
}

.accordion-item.open .accordion-header {
  background: rgba(107,0,204,0.04) !important;
}

/* ============================================================
   PREMIUM GLOW ANIMATION ADDITIONS
   ============================================================ */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(107,0,204,0.3); }
  50% { box-shadow: 0 0 40px rgba(107,0,204,0.6); }
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fade-up-stagger {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SKIP TO CONTENT ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 12px 12px;
  z-index: 10000;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    text-align: center !important;
  }
  
  #custom-cursor,
  #cursor-dot {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .marquee-section::before,
  .marquee-section::after,
  .tech-marquee-section::before,
  .tech-marquee-section::after {
    width: 60px;
  }
  
  .stat-number {
    font-size: 2.5rem !important;
  }
}

/* ============================================================
   PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   ADDITIONAL PREMIUM POLISH
   ============================================================ */

/* bg-alt variable fix */
:root {
  --bg-alt: #F8F5FF;
}

/* Service areas section */
section[style*="bg-alt"] {
  background: #F8F5FF !important;
}

/* Areas tags enhanced */
section span[style*="999px"] {
  transition: all 0.3s ease;
  cursor: default;
}

section span[style*="999px"]:hover {
  background: rgba(107,0,204,0.08) !important;
  border-color: rgba(107,0,204,0.3) !important;
  transform: translateY(-2px);
}

/* ============================================================
   ENHANCED SECTION H2 + TITLES CONSISTENCY
   ============================================================ */
h2, h3 {
  letter-spacing: -0.02em;
}

/* ============================================================
   HERO SECTION CONTENT POSITION
   ============================================================ */
.hero-content {
  position: relative;
  z-index: 2;
}

/* ============================================================
   ANIMATED UNDERLINE LINKS
   ============================================================ */
.footer-link {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
}

.footer-link::before {
  content: '→';
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   CONTACT FORM SUBMIT BUTTON UPGRADE  
   ============================================================ */
.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 1rem !important;
  padding: 16px 32px !important;
  border-radius: 14px !important;
  letter-spacing: 0.05em;
}

/* ============================================================
   ACCORDION PREMIUM
   ============================================================ */
.accordion-header {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ============================================================
   BLOG READ MORE LINK
   ============================================================ */
.blog-read-more {
  font-weight: 700 !important;
  position: relative !important;
  padding-bottom: 2px !important;
}

.blog-read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.blog-read-more:hover::after {
  width: 100%;
}

/* ============================================================
   SERVICE CARD TEXT UPGRADES
   ============================================================ */
.service-card h3 {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}

/* ============================================================
   WHY ITEM H4 UPGRADE
   ============================================================ */
.why-item h4,
.process-step h4 {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}

/* ============================================================
   HERO BADGE DOT PULSE FIX
   ============================================================ */
.hero-badge-dot {
  background: #C060FF !important;
  box-shadow: 0 0 8px rgba(192,96,255,0.8);
}

/* ============================================================
   STAT ICONS ADDITIONAL PREMIUM
   ============================================================ */
.stat-icon {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   MOBILE MENU PREMIUM
   ============================================================ */
.nav-menu.open {
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

/* ============================================================
   NAV TOGGLE UPGRADE
   ============================================================ */
.nav-toggle span {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  height: 2.5px !important;
  border-radius: 3px !important;
}

/* ============================================================
   PROCESS NUMBER FONT
   ============================================================ */
.process-number {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.2rem !important;
}

/* ============================================================
   HERO PARAGRAPH ENHANCEMENT ON DARK BG
   ============================================================ */
.hero .hero-text {
  font-size: 1.1rem !important;
  line-height: 1.9 !important;
}

/* ============================================================
   PAGE HERO PARALLAX HINT LINES
   ============================================================ */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(107,0,204,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(0,200,255,0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

/* ============================================================
   CONTACT PAGE — WHITESPACE & SOCIAL ICON FIXES
   ============================================================ */

/* Reduce page-hero bottom padding on contact page */
.page-hero {
  padding-bottom: 48px !important;
}

/* Social icons on light bg — make them visible by default */
.contact-grid .footer-social {
  background: rgba(107,0,204,0.08) !important;
  border: 1.5px solid rgba(107,0,204,0.18) !important;
  color: #6B00CC !important;
  border-radius: 10px;
}

.contact-grid .footer-social:hover {
  background: linear-gradient(135deg,#6B00CC,#9B30FF) !important;
  color: #ffffff !important;
  border-color: transparent !important;
}
