:root {
  --primary: #DED9F6;
  --primary-dark: #C3B4E5;
  --secondary: #592986;
  --accent: #A083C9;
  --light: #f8fafc;
  --gray: #94a3b8;
  --dark: #592986;
  --text-color: #E0E0E0;
}

[data-theme="dark"] {
  /* Dark theme variables */
  --light-purple: #2D2640;
  --medium-light-purple: #3D2E58;
  --medium-purple: #4D3777;
  --medium-dark-purple: #3A2359;
  --dark-purple: #281A3D;
  --accent-purple: #8A5FFF;
  --text-color: #E0E0E0;
  --bg-color: linear-gradient(135deg, #1D1A2F 0%, #261F3C 100%);
  --card-bg: rgba(30, 30, 40, 0.9);
  --section-bg: linear-gradient(135deg, #261F3C 0%, #372C54 100%);
  --tech-stack-bg: linear-gradient(135deg, #372C54 0%, #3A2359 100%);
  --tech-icon-color: #A083C9;
  --tech-text-color: #E0E0E0;
  --services-bg: linear-gradient(135deg, #261F3C 0%, #372C54 100%);
}

[data-theme="dark"] .hero-section{
  background: var(--bg-color);
}


[data-theme="dark"] .counter{
  background: var(--bg-color);
}

[data-theme="dark"] .hero-content{
  color: var(--text-color);
}

[data-theme="dark"] .landing-tech-icon {
  color: var(--tech-icon-color, rgba(160, 131, 201, 0.3)) !important;
  opacity: 0.15;
}

[data-theme="dark"] .particle {
  background: rgba(255, 255, 255, 0.1);
}



body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: #ECE7F5;
  color: var(--dark);
  overflow-x: hidden;
}



/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, #A083C9 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  color: black;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-cta {
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(37, 99, 235, 0.2);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: floatAnimation 8s infinite ease-in-out;
}

@keyframes floatAnimation {

  0%,
  100% {
      transform: translateY(0) translateX(0);
  }

  50% {
      transform: translateY(-20px) translateX(10px);
  }
}

.landing-tech-icon {
  color: var(--text-color) !important;
  position: absolute;
  opacity: 0.1;
  animation: rotateAnimation 30s linear infinite;
  transition: color 0.3s ease, opacity 0.3s ease;
}

@keyframes rotateAnimation {
  from {
      transform: rotate(0deg);
  }

  to {
      transform: rotate(360deg);
  }
}

/* Robotic Hand Reaching Digital Globe Scene */
.hero-image {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
}

.robo-hand-scene {
  position: relative;
  width: 500px;
  height: 500px;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
  animation: sceneFloat 6s ease-in-out infinite;
}

@keyframes sceneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Holographic Device + HUD */
.holo-device-container {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.holo-device {
  position: relative;
  width: 420px;
  height: 420px;
  transform-style: preserve-3d;
}

.device-screen {
  position: absolute;
  left: 50%;
  top: 90px;
  transform: translateX(-50%) rotateX(-12deg);
  width: 320px;
  height: 200px;
  border-radius: 14px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(138, 95, 255, 0.10));
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.45),
    0 0 70px rgba(0, 212, 255, 0.18),
    inset 0 0 40px rgba(0, 212, 255, 0.10);
  overflow: hidden;
}

.screen-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(0, 212, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.7;
  transform: translateZ(1px);
  animation: hudGridShift 10s linear infinite;
}

@keyframes hudGridShift {
  0% { background-position: 0 0; }
  100% { background-position: 44px 44px; }
}

.screen-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 35% 35%, rgba(0, 255, 255, 0.25), transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(138, 95, 255, 0.20), transparent 62%);
  filter: blur(2px);
  opacity: 0.9;
  animation: screenGlow 3.6s ease-in-out infinite;
}

@keyframes screenGlow {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.device-base {
  position: absolute;
  left: 50%;
  top: 275px;
  transform: translateX(-50%) rotateX(64deg);
  transform-origin: 50% 0;
  width: 360px;
  height: 140px;
  border-radius: 18px;
  border: 1px solid rgba(138, 95, 255, 0.32);
  background: linear-gradient(135deg, rgba(138, 95, 255, 0.10), rgba(0, 212, 255, 0.06));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.55),
    inset 0 0 40px rgba(138, 95, 255, 0.10);
  overflow: hidden;
}

.base-keys {
  position: absolute;
  inset: 18px 26px;
  border-radius: 12px;
  background-image:
    linear-gradient(0deg, rgba(0, 212, 255, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.10) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.55;
}

.base-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 40%, rgba(0, 212, 255, 0.20), transparent 65%);
  filter: blur(6px);
  opacity: 0.8;
  animation: baseGlow 3.6s ease-in-out infinite;
}

@keyframes baseGlow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.9; }
}

/* HUD layer */
.hud-layer {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  width: 520px;
  height: 420px;
  pointer-events: none;
  z-index: 2;
}

.hud-panel {
  position: absolute;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(138, 95, 255, 0.06));
  box-shadow: 0 0 35px rgba(0, 212, 255, 0.12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: hudCycle 6s ease-in-out infinite;
}

@keyframes hudCycle {
  0% { opacity: 0; transform: translateY(18px) scale(0.96); }
  15% { opacity: 1; transform: translateY(0) scale(1); }
  70% { opacity: 1; transform: translateY(-3px) scale(1.01); }
  100% { opacity: 0; transform: translateY(-18px) scale(0.98); }
}

.hud-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  transform: translateX(-120%);
  animation: hudSweep 3.5s linear infinite;
  opacity: 0.45;
}

@keyframes hudSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.hud-panel-1 { left: 18px; top: 30px; width: 190px; height: 110px; animation-delay: 0s; }
.hud-panel-2 { right: 28px; top: 60px; width: 210px; height: 120px; animation-delay: 0.8s; }
.hud-panel-3 { left: 40px; bottom: 110px; width: 210px; height: 130px; animation-delay: 1.6s; }
.hud-panel-4 { right: 40px; bottom: 95px; width: 190px; height: 105px; animation-delay: 2.4s; }

.hud-title {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 80px;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(0, 255, 255, 0.85), rgba(138, 95, 255, 0.55));
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.35);
}

.hud-bars {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 40px;
  bottom: 14px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(0, 212, 255, 0.20) 0,
    rgba(0, 212, 255, 0.20) 10px,
    transparent 10px,
    transparent 18px
  );
  opacity: 0.65;
}

.hud-chip {
  position: absolute;
  left: 14px;
  top: 16px;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: inset 0 0 18px rgba(0, 212, 255, 0.15);
}

.hud-lines {
  position: absolute;
  left: 86px;
  right: 14px;
  top: 20px;
  bottom: 14px;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(138, 95, 255, 0.18) 0,
    rgba(138, 95, 255, 0.18) 2px,
    transparent 2px,
    transparent 12px
  );
  opacity: 0.8;
}

.hud-graph {
  position: absolute;
  inset: 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.06), transparent);
}

.hud-graph::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(0,255,255,0.25) 35%, transparent 70%),
    linear-gradient(0deg, transparent 0%, rgba(138,95,255,0.22) 45%, transparent 80%);
  opacity: 0.75;
  animation: graphDrift 4s ease-in-out infinite;
}

@keyframes graphDrift {
  0%, 100% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
}

.hud-dots {
  position: absolute;
  left: 20px;
  bottom: 18px;
  width: 120px;
  height: 10px;
  border-radius: 10px;
  background-image: radial-gradient(circle, rgba(0,255,255,0.8) 2px, transparent 3px);
  background-size: 14px 10px;
  opacity: 0.85;
}

.hud-gauge {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(0, 212, 255, 0.28);
  box-shadow: inset 0 0 18px rgba(0, 212, 255, 0.10);
}

.hud-gauge::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid rgba(138, 95, 255, 0.22);
  border-left-color: transparent;
  border-top-color: transparent;
  transform: rotate(35deg);
}

.hud-label {
  position: absolute;
  left: 100px;
  top: 28px;
  width: 70px;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(138, 95, 255, 0.75), rgba(0, 255, 255, 0.55));
  opacity: 0.9;
}

.hud-ping {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.6);
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.5);
  animation: ping 2.4s ease-out infinite;
  opacity: 0.8;
}

.hud-ping-1 { left: 255px; top: 165px; animation-delay: 0.4s; }
.hud-ping-2 { left: 310px; top: 132px; animation-delay: 1.2s; background: rgba(138, 95, 255, 0.55); box-shadow: 0 0 18px rgba(138, 95, 255, 0.45); }

@keyframes ping {
  0% { transform: scale(0.8); opacity: 0.2; }
  40% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Dark Theme Adjustments */
[data-theme="dark"] .hud-panel {
  border-color: rgba(0, 212, 255, 0.22);
  box-shadow: 0 0 45px rgba(0, 212, 255, 0.14);
}

[data-theme="dark"] .device-screen {
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.60),
    0 0 85px rgba(0, 212, 255, 0.22),
    inset 0 0 55px rgba(0, 212, 255, 0.12);
}

.advanced-robot {
  position: relative;
  width: 450px;
  height: 550px;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  animation: robotHover 5s ease-in-out infinite;
}

@keyframes robotHover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Robot Head Unit */
.robot-head-unit {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
}

.head-top {
  width: 140px;
  height: 30px;
  margin: 0 auto;
  background: linear-gradient(135deg, #6B4AC4, #4A2F8F);
  border-radius: 15px 15px 0 0;
  border: 3px solid #3A2359;
  box-shadow: 0 -5px 15px rgba(138, 95, 255, 0.3), inset 0 2px 5px rgba(255, 255, 255, 0.1);
}

.head-main {
  position: relative;
  width: 160px;
  height: 100px;
  background: linear-gradient(135deg, #8A5FFF 0%, #592986 100%);
  border: 4px solid #3A2359;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 
              inset 0 5px 15px rgba(255, 255, 255, 0.1),
              inset 0 -5px 15px rgba(0, 0, 0, 0.3);
}

/* Visor Display - Serious Face */
.visor-display {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(0, 157, 255, 0.7));
  border: 2px solid #003d5c;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6), inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.visor-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.8), transparent);
}

.visor-line:nth-child(1) { top: 10px; }
.visor-line:nth-child(2) { top: 19px; }
.visor-line:nth-child(3) { top: 28px; }

.scan-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: visorScan 3s linear infinite;
}

@keyframes visorScan {
  0% { left: -100%; }
  100% { left: 100%; }
}

.head-panel {
  position: absolute;
  top: 15px;
  width: 15px;
  height: 70px;
  background: linear-gradient(135deg, rgba(107, 74, 196, 0.5), rgba(58, 35, 89, 0.7));
  border: 2px solid #3A2359;
  border-radius: 4px;
}

.left-panel { left: 5px; }
.right-panel { right: 5px; }

.head-neck {
  width: 80px;
  height: 25px;
  margin: 5px auto 0;
  background: linear-gradient(135deg, #4A2F8F, #3A2359);
  border: 3px solid #3A2359;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), inset 0 2px 5px rgba(255, 255, 255, 0.1);
}

/* Robot Torso */
.robot-torso {
  position: absolute;
  top: 155px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 200px;
  background: linear-gradient(135deg, #8A5FFF 0%, #4A2F8F 50%, #592986 100%);
  border: 5px solid #3A2359;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
              inset 0 8px 20px rgba(255, 255, 255, 0.1),
              inset 0 -8px 20px rgba(0, 0, 0, 0.4);
}

/* Chest Reactor Core */
.chest-plate {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}

.core-reactor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, #00ffff 0%, #00d4ff 40%, #8A5FFF 100%);
  border-radius: 50%;
  border: 3px solid #003d5c;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.8),
              0 0 50px rgba(138, 95, 255, 0.5),
              inset 0 0 20px rgba(255, 255, 255, 0.5);
  animation: reactorPulse 2s ease-in-out infinite;
}

@keyframes reactorPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 30px rgba(0, 255, 255, 0.8); }
  50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 50px rgba(0, 255, 255, 1), 0 0 80px rgba(138, 95, 255, 0.8); }
}

.reactor-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  animation: reactorRing 4s linear infinite;
}

.ring-1 { width: 65px; height: 65px; }
.ring-2 { width: 80px; height: 80px; animation-delay: -1.3s; }
.ring-3 { width: 95px; height: 95px; animation-delay: -2.6s; }

@keyframes reactorRing {
  0% { transform: translate(-50%, -50%) rotate(0deg); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) rotate(360deg); opacity: 0.8; }
}

.torso-panel {
  position: absolute;
  top: 20px;
  width: 40px;
  height: 160px;
  background: linear-gradient(135deg, rgba(107, 74, 196, 0.4), rgba(58, 35, 89, 0.6));
  border: 2px solid #3A2359;
  border-radius: 8px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.panel-left { left: 10px; }
.panel-right { right: 10px; }

.status-light {
  position: absolute;
  bottom: 20px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #00ffff, #0099ff);
  border-radius: 50%;
  border: 2px solid #003d5c;
  animation: statusBlink 2s ease-in-out infinite;
}

.s1 { left: 85px; animation-delay: 0s; }
.s2 { left: 114px; animation-delay: 0.7s; }
.s3 { right: 85px; animation-delay: 1.4s; }

@keyframes statusBlink {
  0%, 100% { opacity: 0.3; box-shadow: 0 0 5px rgba(0, 212, 255, 0.3); }
  50% { opacity: 1; box-shadow: 0 0 15px rgba(0, 212, 255, 0.9); }
}

/* Robot Arms */
.robot-arm-unit {
  position: absolute;
  top: 180px;
}

.left-arm-unit { left: 15px; }
.right-arm-unit { right: 15px; }

.shoulder-joint {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, #6B4AC4, #4A2F8F);
  border: 4px solid #3A2359;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

.upper-arm {
  position: relative;
  width: 55px;
  height: 90px;
  margin: 5px auto;
  background: linear-gradient(135deg, #8A5FFF, #4A2F8F);
  border: 3px solid #3A2359;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), inset 0 3px 10px rgba(255, 255, 255, 0.1);
}

.arm-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 60px;
  background: linear-gradient(135deg, rgba(107, 74, 196, 0.4), rgba(58, 35, 89, 0.5));
  border: 2px solid #3A2359;
  border-radius: 5px;
}

.elbow-joint {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #6B4AC4, #4A2F8F);
  border: 3px solid #3A2359;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.2);
  margin: 5px auto;
}

.lower-arm {
  position: relative;
  width: 50px;
  height: 85px;
  margin: 5px auto;
  background: linear-gradient(135deg, #6B4AC4, #592986);
  border: 3px solid #3A2359;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), inset 0 3px 10px rgba(255, 255, 255, 0.1);
}

.arm-wire {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 65px;
  background: linear-gradient(to bottom, rgba(0, 212, 255, 0.6), rgba(0, 212, 255, 0.2));
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

/* Robot Hands */
.robot-hand-unit {
  position: relative;
  width: 55px;
  height: 50px;
  margin: 5px auto;
}

.palm {
  width: 55px;
  height: 50px;
  background: linear-gradient(135deg, #8A5FFF, #6B4AC4);
  border: 3px solid #3A2359;
  border-radius: 10px 10px 15px 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), inset 0 3px 10px rgba(255, 255, 255, 0.15);
}

.thumb {
  position: absolute;
  top: 10px;
  right: -8px;
  width: 15px;
  height: 30px;
  background: linear-gradient(135deg, #8A5FFF, #6B4AC4);
  border: 2px solid #3A2359;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.left-arm-unit .thumb { right: auto; left: -8px; }

/* World Globe held by right hand */
.holding-world {
  position: relative;
}

.world-globe {
  position: absolute;
  bottom: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
}

.globe-sphere {
  position: relative;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 35% 35%, #4A90E2, #2E5F8F, #1A3A5C);
  border-radius: 50%;
  border: 4px solid #0D2438;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6),
              inset -20px -20px 40px rgba(0, 0, 0, 0.4),
              inset 15px 15px 30px rgba(138, 183, 255, 0.3);
  animation: globeRotate 20s linear infinite;
  overflow: hidden;
}

@keyframes globeRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Continents */
.continent {
  position: absolute;
  background: linear-gradient(135deg, #2D5A3F, #1F3D2B);
  border-radius: 40% 60% 50% 50%;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.c1 {
  top: 25%;
  left: 15%;
  width: 40px;
  height: 35px;
  transform: rotate(20deg);
}

.c2 {
  top: 40%;
  right: 20%;
  width: 35px;
  height: 45px;
  transform: rotate(-15deg);
  border-radius: 30% 70% 60% 40%;
}

.c3 {
  bottom: 25%;
  left: 25%;
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
}

.c4 {
  top: 10%;
  right: 15%;
  width: 25px;
  height: 20px;
  border-radius: 60% 40% 50% 50%;
}

.globe-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0.1) 51%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0.1) 51%, transparent 52%);
  background-size: 40px 40px;
  border-radius: 50%;
}

.globe-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.4), transparent 70%);
  border-radius: 50%;
  animation: globeGlow 3s ease-in-out infinite;
}

@keyframes globeGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(75deg);
  width: 200px;
  height: 200px;
  border: 3px solid rgba(138, 95, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(138, 95, 255, 0.5);
  animation: orbitSpin 8s linear infinite;
}

@keyframes orbitSpin {
  0% { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg); }
  100% { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg); }
}

/* Robot Base/Waist */
.robot-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 100px;
}

.waist-joint {
  width: 140px;
  height: 100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #6B4AC4, #4A2F8F, #592986);
  border: 4px solid #3A2359;
  border-radius: 20px 20px 50% 50%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
              inset 0 5px 15px rgba(255, 255, 255, 0.1),
              inset 0 -10px 20px rgba(0, 0, 0, 0.4);
}

/* Dark Theme Enhancements */
[data-theme="dark"] .head-main,
[data-theme="dark"] .robot-torso,
[data-theme="dark"] .upper-arm,
[data-theme="dark"] .lower-arm {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
              inset 0 8px 20px rgba(255, 255, 255, 0.05),
              inset 0 -8px 20px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .globe-sphere {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
              inset -25px -25px 50px rgba(0, 0, 0, 0.6),
              inset 20px 20px 40px rgba(138, 183, 255, 0.2);
}

.tech-orb {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}

.tech-orb .orb-core {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(160,131,201,0.95), rgba(128,88,172,0.65) 55%, rgba(89,41,134,0.35) 85%, rgba(89,41,134,0));
  box-shadow: 0 0 60px 10px rgba(160,131,201,0.35) inset, 0 0 80px rgba(160,131,201,0.35);
  animation: orbPulse 3.5s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1) }
  50% { transform: scale(1.04) }
}

.tech-orb .orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 30px rgba(160,131,201,0.25), inset 0 0 40px rgba(160,131,201,0.1);
  transform-origin: 50% 50%;
}

.tech-orb .ring-1 { animation: ringSpin 28s linear infinite; }
.tech-orb .ring-2 { transform: scale(0.82) rotateX(55deg); animation: ringSpinReverse 22s linear infinite; }
.tech-orb .ring-3 { transform: scale(1.18) rotateY(65deg); animation: ringSpin 36s linear infinite; }

@keyframes ringSpin { from { transform: rotateZ(0deg) } to { transform: rotateZ(360deg) } }
@keyframes ringSpinReverse { from { transform: rotateZ(360deg) } to { transform: rotateZ(0deg) } }

.tech-orb .orb-nodes {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: nodesSpin 18s linear infinite;
}

@keyframes nodesSpin { from { transform: rotate(0deg) } to { transform: rotate(360deg) } }

.tech-orb .node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: radial-gradient(circle, #A083C9 0%, #592986 70%);
  box-shadow: 0 0 14px rgba(160,131,201,0.9), 0 0 30px rgba(0, 190, 255, 0.35);
}

.tech-orb .n1 { transform: rotate(0deg) translate(145px); }
.tech-orb .n2 { transform: rotate(45deg) translate(145px); }
.tech-orb .n3 { transform: rotate(90deg) translate(145px); }
.tech-orb .n4 { transform: rotate(135deg) translate(145px); }
.tech-orb .n5 { transform: rotate(180deg) translate(145px); }
.tech-orb .n6 { transform: rotate(225deg) translate(145px); }
.tech-orb .n7 { transform: rotate(270deg) translate(145px); }
.tech-orb .n8 { transform: rotate(315deg) translate(145px); }

.tech-orb::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 70%;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0) 70%);
  filter: blur(8px);
}

/* Dark mode tuning for the orb */
[data-theme="dark"] .tech-orb .orb-core {
  box-shadow: 0 0 70px 14px rgba(138,95,255,0.25) inset, 0 0 110px rgba(138,95,255,0.28);
  background: radial-gradient(closest-side, rgba(138,95,255,0.95), rgba(80,46,170,0.6) 55%, rgba(40,26,61,0.35) 85%, rgba(40,26,61,0));
}

[data-theme="dark"] .tech-orb .node { box-shadow: 0 0 16px rgba(138,95,255,0.95), 0 0 36px rgba(0, 190, 255, 0.35); }

/* Responsive: slightly scale down on smaller desktops */
@media (max-width: 1200px) {
  .tech-orb { transform: scale(0.9); }
}

/* New 3D Gyro Core (Home) */
.gyro-core {
  position: relative;
  width: 420px;
  height: 420px;
  transform-style: preserve-3d;
  will-change: transform;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.22));
  animation: coreFloat 6s ease-in-out infinite;
}

@keyframes coreFloat {
  0%, 100% { transform: translateZ(0) }
  50% { transform: translateZ(16px) }
}

.gyro-core .core-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(160,131,201,0.55), rgba(128,88,172,0.22) 55%, rgba(89,41,134,0.0) 72%);
  box-shadow: 0 0 70px 18px rgba(160,131,201,0.14);
}

.gyro-core .ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 2px solid rgba(160,131,201,0.34);
  box-shadow: 0 0 26px rgba(160,131,201,0.12), inset 0 0 40px rgba(160,131,201,0.08);
}

.gyro-core .ring-x { transform: translate(-50%, -50%) rotateX(90deg); animation: spinX 28s linear infinite; }
.gyro-core .ring-y { transform: translate(-50%, -50%) rotateY(90deg); animation: spinY 24s linear infinite; }
.gyro-core .ring-z { transform: translate(-50%, -50%) rotateZ(0deg);  animation: spinZ 32s linear infinite; }

@keyframes spinX { from { transform: translate(-50%, -50%) rotateX(90deg) rotateZ(0deg)} to { transform: translate(-50%, -50%) rotateX(90deg) rotateZ(360deg)} }
@keyframes spinY { from { transform: translate(-50%, -50%) rotateY(90deg) rotateZ(0deg)} to { transform: translate(-50%, -50%) rotateY(90deg) rotateZ(360deg)} }
@keyframes spinZ { from { transform: translate(-50%, -50%) rotateZ(0deg)} to { transform: translate(-50%, -50%) rotateZ(360deg)} }

/* Center cube for extra depth */
.gyro-core .cube {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateX(-20deg) rotateY(30deg);
  width: 120px;
  height: 120px;
  animation: cubeSpinHome 14s linear infinite;
}

@keyframes cubeSpinHome { from { transform: translate(-50%, -50%) rotateX(-20deg) rotateY(0) } to { transform: translate(-50%, -50%) rotateX(-20deg) rotateY(360deg) } }

.gyro-core .cube .face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.035), rgba(160,131,201,0.018));
  border: 1px solid rgba(160,131,201,0.34);
  box-shadow: inset 0 0 14px rgba(160,131,201,0.14);
}

.gyro-core .cube .f-front  { transform: translateZ(60px); }
.gyro-core .cube .f-back   { transform: rotateY(180deg) translateZ(60px); }
.gyro-core .cube .f-right  { transform: rotateY(90deg) translateZ(60px); }
.gyro-core .cube .f-left   { transform: rotateY(-90deg) translateZ(60px); }
.gyro-core .cube .f-top    { transform: rotateX(90deg) translateZ(60px); }
.gyro-core .cube .f-bottom { transform: rotateX(-90deg) translateZ(60px); }

/* Orbiting shards */
.gyro-core .shards {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: shardsOrbit 20s linear infinite;
}

@keyframes shardsOrbit { from { transform: rotateY(0deg) } to { transform: rotateY(360deg) } }

.gyro-core .shard {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 42px;
  border-radius: 3px;
  background: linear-gradient(180deg, #A083C9, #592986);
  box-shadow: 0 0 10px rgba(160,131,201,0.32), 0 0 18px rgba(0,190,255,0.14);
  transform-origin: center center;
}

.gyro-core .s1 { transform: translate(-50%, -50%) rotateY(0deg)   rotateX(20deg)  translateZ(170px); }
.gyro-core .s2 { transform: translate(-50%, -50%) rotateY(45deg)  rotateX(-10deg) translateZ(170px); }
.gyro-core .s3 { transform: translate(-50%, -50%) rotateY(90deg)  rotateX(30deg)  translateZ(170px); }
.gyro-core .s4 { transform: translate(-50%, -50%) rotateY(135deg) rotateX(-25deg) translateZ(170px); }
.gyro-core .s5 { transform: translate(-50%, -50%) rotateY(180deg) rotateX(15deg)  translateZ(170px); }
.gyro-core .s6 { transform: translate(-50%, -50%) rotateY(225deg) rotateX(-15deg) translateZ(170px); }
.gyro-core .s7 { transform: translate(-50%, -50%) rotateY(270deg) rotateX(25deg)  translateZ(170px); }
.gyro-core .s8 { transform: translate(-50%, -50%) rotateY(315deg) rotateX(-20deg) translateZ(170px); }

/* Dark mode variants */
[data-theme="dark"] .gyro-core .core-glow { box-shadow: 0 0 140px 40px rgba(138,95,255,0.28); background: radial-gradient(circle at 40% 40%, rgba(138,95,255,0.95), rgba(80,46,170,0.55) 55%, rgba(40,26,61,0) 72%); }
[data-theme="dark"] .gyro-core .core-glow { box-shadow: 0 0 86px 22px rgba(138,95,255,0.16); background: radial-gradient(circle at 35% 35%, rgba(138,95,255,0.55), rgba(80,46,170,0.22) 55%, rgba(40,26,61,0) 72%); }
[data-theme="dark"] .gyro-core .ring { border-color: rgba(138,95,255,0.36); box-shadow: 0 0 26px rgba(138,95,255,0.12), inset 0 0 40px rgba(138,95,255,0.08); }
[data-theme="dark"] .gyro-core .cube .face { border-color: rgba(138,95,255,0.36); box-shadow: inset 0 0 14px rgba(138,95,255,0.14); }
[data-theme="dark"] .gyro-core .shard { background: linear-gradient(180deg, #8A5FFF, #3A2359); }

@media (max-width: 1200px) {
  .gyro-core { transform: scale(0.9); }
}

@media (max-width: 991.98px) {
  .hero-image { min-height: 0; }
}

@media (max-width: 991.98px) {
  /* The right column is hidden on < lg via Bootstrap, keep styles simple */
  .hero-image { min-height: 0; }
}

.section-heading {
  position: relative;
  font-weight: 700;
  margin-bottom: 60px;
  padding-bottom: 15px;
  color: var(--dark);
}

.section-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* Solutions Section */
.solutions-container {
  padding: 100px 0;
}

.content-box {
  padding: 30px;
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 4px solid transparent;
}

.content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid var(--dark);
}

.content-box h3 {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 20px;
}

.image-container {
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.image-container.with-offset {
  padding-right: 30px;
  padding-bottom: 30px;
}

.image-item {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.offset-image {
  position: absolute;
  width: 60%;
  height: auto;
  bottom: 0;
  right: 0;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 5px solid white;
  transition: all 0.5s ease;
}

.image-container:hover .image-item {
  transform: scale(1.03);
}

.image-container:hover .offset-image {
  transform: translateY(-10px) translateX(-10px);
}

.blue-accent {
  position: absolute;
  width: 85%;
  height: 85%;
  top: -15px;
  left: -15px;
  background-color: rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  z-index: -1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 8px;
}

.feature-item:hover {
  background-color: rgba(37, 99, 235, 0.05);
  transform: translateX(5px);
}

.feature-icon {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--dark);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: var(--accent);
  color: white;
  transform: rotateY(180deg);
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-content p {
  color: var(--gray);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Counter Section */
.counter {
  background: linear-gradient(135deg, var(--secondary) 0%, #A083C9 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.counter-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-box:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.counter-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.counter-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.counter-box h2 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: var(--accent);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 20px auto 0;
}

/* Review Section */
.review-area {
  padding: 100px 0;
  position: relative;
}

.tp-section-sub-title {
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.tp-section-title {
  color: var(--secondary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.tp-section-title:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.tp-review-item {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tp-review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tp-review-item:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 25px;
  font-size: 100px;
  color: rgba(37, 99, 235, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.tp-review-content {
  position: relative;
  z-index: 1;
}

.tp-review-content p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.tp-review-avatar {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.tp-review-avatar-title {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
}

.tp-review-avatar span {
  color: var(--gray);
  font-size: 0.9rem;
}

.tp-review-thumb img {
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tp-review-thumb:hover img {
  transform: scale(1.02);
}

.partner-showcase {
  padding: 60px 0;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.partner-header {
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.partner-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: bold;
}

.partner-header p {
  font-size: 16px;
  color: #666;
}

.brand-slider-outer {
  overflow: hidden;
  position: relative;
}

.brand-slider-viewport {
  width: 100%;
  overflow: hidden;
}

.brand-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.brand-item {
  min-width: 200px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-item img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}


.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .logo-slide {
      min-width: calc(100% / 3);
      /* Show 3 logos on tablets */
  }
}

@media (max-width: 768px) {
  .logo-slide {
      min-width: calc(100% / 2);
      /* Show 2 logos on mobile */
  }
}

@media (max-width: 576px) {
  .logo-slide {
      min-width: 100%;
      /* Show 1 logo on small mobile */
  }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .projects-showcase {
      padding: 80px 0;
  }
}

@media (max-width: 767.98px) {
  .project-image img {
      height: 220px;
  }
}

@media (max-width: 575.98px) {
  .section-heading {
      font-size: 1.8rem;
  }

  .section-subheading {
      font-size: 1rem;
  }

  .project-title {
      font-size: 1.2rem;
  }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-title {
      font-size: 2.8rem;
      text-align: center;
  }

  .hero-text {
      font-size: 1.1rem;
  }

  .ml-50 {
      margin-left: 0;
  }

  .tp-review-wrap {
      margin-left: 0;
      text-align: center;
  }

  .tp-section-title:after {
      left: 50%;
      transform: translateX(-50%);
  }

  .tp-review-item {
      text-align: left;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
      font-size: 2.2rem;
      text-align: center;
  }

  .hero-text {
      font-size: 1rem;
  }

  .hero-section {
      min-height: 70vh;
  }

  .offset-image {
      width: 50%;
  }

  .counter-box {
      padding: 30px 15px;
  }

  .counter-box h2 {
      font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    text-align: center;
      font-size: 1.8rem;
  }

  .hero-cta {
      padding: 10px 25px;
      font-size: 1rem;
  }

  .section-heading {
      font-size: 1.8rem;
  }

  .tp-section-title {
      font-size: 1.8rem;
  }
}
/* Add these new dark theme variables right after your existing [data-theme="dark"] block */
[data-theme="dark"] {
    /* Keep your existing dark theme variables */
    --light-purple: #2D2640;
    --medium-light-purple: #3D2E58;
    --medium-purple: #4D3777;
    --medium-dark-purple: #3A2359;
    --dark-purple: #281A3D;
    --accent-purple: #8A5FFF;
    --text-color: #E0E0E0;
    --bg-color: linear-gradient(135deg, #1D1A2F 0%, #261F3C 100%);
    --card-bg: rgba(30, 30, 40, 0.9);
    --section-bg: linear-gradient(135deg, #261F3C 0%, #372C54 100%);
    --tech-stack-bg: linear-gradient(135deg, #372C54 0%, #3A2359 100%);
    --tech-icon-color: #A083C9;
    --tech-text-color: #E0E0E0;
    --services-bg: linear-gradient(135deg, #261F3C 0%, #372C54 100%);
}

/* Add these new dark mode styles after your existing styles */

/* Dark mode body */
[data-theme="dark"] body {
    background: var(--bg-color);
    color: var(--text-color);
}

/* Dark mode hero section */
[data-theme="dark"] .hero-section {
    background: var(--bg-color);
}

/* Dark mode solutions section */
[data-theme="dark"] .solutions-box {
    background: var(--dark-purple);
}

[data-theme="dark"] .solutions-container {
    background: var(--section-bg);
}

/* Dark mode headings */
[data-theme="dark"] .section-heading {
    color: var(--text-color);
}

/* Dark mode feature items */
[data-theme="dark"] .feature-item {
    color: var(--text-color);
}

[data-theme="dark"] .feature-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .feature-icon {
    background-color: var(--medium-purple);
    color: var(--text-color);
}

[data-theme="dark"] .feature-item:hover .feature-icon {
    background-color: var(--accent-purple);
}

/* Dark mode counter section */
[data-theme="dark"] .counter {
    background: var(--bg-color);
}

[data-theme="dark"] .counter-box {
    background-color: var(--card-bg);
    border-color: var(--medium-purple);
}

[data-theme="dark"] .counter-box:hover {
    background-color: var(--medium-purple);
}

[data-theme="dark"] .counter-icon {
    color: var(--accent-purple);
}

/* Dark mode partner showcase */
[data-theme="dark"] .partner-showcase {
    background: var(--dark-purple);
}

[data-theme="dark"] .partner-header h2 {
    color: var(--text-color);
}

/* Dark mode images and containers */
[data-theme="dark"] .image-container {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .offset-image {
    border-color: var(--medium-purple);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .blue-accent {
    background-color: rgba(138, 95, 255, 0.08);
}

/* Dark mode brand logos */
[data-theme="dark"] .brand-item img {
    filter: brightness(0.8) contrast(1.2);
}

/* Dark mode tech icons */
[data-theme="dark"] .landing-tech-icon {
    color: var(--tech-icon-color) !important;
    opacity: 0.15;
}

/* Dark mode particles */
[data-theme="dark"] .particle {
    background: rgba(255, 255, 255, 0.1);
}
        /* Why Choose Us Section Styles - Matching your exact theme */
        .why-choose-us {
            background: #ffffff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        /* Dark theme for Why Choose Us */
        [data-theme="dark"] .why-choose-us {
            background: var(--bg-color);
        }
        
        .why-choose-us::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-60px); }
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }
        
        .section-header h2 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
            text-shadow: none;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--accent);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        [data-theme="dark"] .section-header h2 {
            color: var(--text-color);
        }
        
        [data-theme="dark"] .section-header h2:after {
            background-color: var(--accent-purple);
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 20px auto 0;
            line-height: 1.6;
        }
        
        [data-theme="dark"] .section-header p {
            color: var(--text-color);
            opacity: 0.8;
        }
        
        .reliability-card {
            background-color: white;
            backdrop-filter: none;
            border: 1px solid #f1f5f9;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        [data-theme="dark"] .reliability-card {
            background-color: var(--card-bg);
            border-color: var(--medium-purple);
        }
        
        .reliability-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .reliability-card:hover::before {
            left: 100%;
        }
        
        .reliability-card:hover {
            transform: translateY(-10px);
            background-color: white;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }
        
        [data-theme="dark"] .reliability-card:hover {
            background-color: var(--medium-purple);
        }
        
        .card-icon {
            width: 80px;
            height: 80px;
            background-color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 25px rgba(160, 131, 201, 0.3);
            transition: all 0.3s ease;
        }
        
        [data-theme="dark"] .card-icon {
            background-color: var(--accent-purple);
            box-shadow: 0 10px 25px rgba(138, 95, 255, 0.3);
        }
        
        .reliability-card:nth-child(2) .card-icon {
            background-color: var(--secondary);
            box-shadow: 0 10px 25px rgba(89, 41, 134, 0.3);
        }
        
        [data-theme="dark"] .reliability-card:nth-child(2) .card-icon {
            background-color: var(--medium-purple);
            box-shadow: 0 10px 25px rgba(77, 55, 119, 0.3);
        }
        
        .reliability-card:nth-child(3) .card-icon {
            background-color: var(--primary-dark);
            box-shadow: 0 10px 25px rgba(195, 180, 229, 0.3);
        }
        
        [data-theme="dark"] .reliability-card:nth-child(3) .card-icon {
            background-color: var(--medium-dark-purple);
            box-shadow: 0 10px 25px rgba(58, 35, 89, 0.3);
        }
        
        .reliability-card:nth-child(4) .card-icon {
            background-color: var(--primary);
            box-shadow: 0 10px 25px rgba(222, 217, 246, 0.3);
        }
        
        [data-theme="dark"] .reliability-card:nth-child(4) .card-icon {
            background-color: var(--light-purple);
            box-shadow: 0 10px 25px rgba(45, 38, 64, 0.3);
        }
        
        .reliability-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        [data-theme="dark"] .card-title {
            color: var(--text-color);
        }
        
        .card-description {
            color: var(--gray);
            line-height: 1.6;
            font-size: 1rem;
        }
        
        [data-theme="dark"] .card-description {
            color: var(--text-color);
            opacity: 0.8;
        }
        
        .trust-banner {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin-top: 60px;
            text-align: center;
            backdrop-filter: none;
            border: 1px solid #f1f5f9;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        [data-theme="dark"] .trust-banner {
            background-color: var(--card-bg);
            border-color: var(--medium-purple);
        }
        
        .trust-banner h3 {
            color: var(--dark);
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        [data-theme="dark"] .trust-banner h3 {
            color: var(--text-color);
        }
        
        .trust-banner p {
            color: var(--gray);
            font-size: 1.1rem;
            margin: 0;
        }
        
        [data-theme="dark"] .trust-banner p {
            color: var(--text-color);
            opacity: 0.8;
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }
        
        .floating-elements .element {
            position: absolute;
            border-radius: 50%;
            background: rgba(89, 41, 134, 0.05);
            animation: floatUpDown 6s infinite ease-in-out;
        }
        
        [data-theme="dark"] .floating-elements .element {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .floating-elements .element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-elements .element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }
        
        .floating-elements .element:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }
        
        @keyframes floatUpDown {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        @media (max-width: 991.98px) {
            .section-header h2 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .reliability-card {
                margin-bottom: 30px;
                padding: 30px 20px;
            }
            
            .why-choose-us {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 575.98px) {
            .section-header h2 {
                font-size: 1.8rem;
            }
        }