* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0a0a0a;
  --color-text: #ffffff;
  --color-text-secondary: #a0a0a0;
  --color-accent: #00d4ff;
  --color-card-bg: #1a1a1a;
  --color-border: #2a2a2a;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Added animated gradient background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 153, 204, 0.08) 0%,
      transparent 50%
    );
  animation: gradientShift 15s ease infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1) rotate(5deg);
  }
}

/* Ensure content is above background */
header,
section,
footer {
  position: relative;
  z-index: 1;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  /* Added smooth header animation */
  transform: translateY(0);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

header.scrolled {
  background-color: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Fixed nav structure for proper layout */
nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  /* Added logo animation */
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo span {
  color: var(--color-accent);
  /* Added glow effect */
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-text);
}

/* Added nav-right styles for proper grouping */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

/* Updated language switcher to dropdown style */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-dropdown {
  position: relative;
}

.lang-current {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 0.5rem 2.5rem 0.5rem 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 70px;
  text-align: left;
}

.lang-current::after {
  content: "▼";
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.lang-dropdown.active .lang-current::after {
  transform: translateY(-50%) rotate(180deg);
}

.lang-current:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.lang-options {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.active .lang-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-option:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--color-text);
  padding-left: 1.3rem;
}

.lang-option.active {
  color: var(--color-accent);
  background: rgba(0, 212, 255, 0.05);
}

.lang-option.active::before {
  content: "✓";
  margin-right: 0.3rem;
  font-weight: bold;
}

.cta-button {
  background-color: var(--color-text);
  color: var(--color-bg);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid var(--color-text);
  white-space: nowrap;
  /* Added premium button effects */
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.cta-button.secondary:hover {
  border-color: var(--color-text);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  /* Added overflow for parallax effect */
  overflow: hidden;
}

/* Added animated particles effect */
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image:
    radial-gradient(circle, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size:
    50px 50px,
    80px 80px;
  background-position:
    0 0,
    40px 40px;
  animation: particleFloat 20s linear infinite;
  pointer-events: none;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50px);
  }
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  /* Added z-index for content above particles */
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* Added badge animation */
  animation: fadeInDown 0.8s ease-out;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  background: rgba(0, 212, 255, 0.05);
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  /* Added text animation and gradient */
  animation: fadeInUp 0.8s ease-out 0.2s both;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  /* Added paragraph animation */
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  /* Added buttons animation */
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Added scroll reveal animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Services Section */
.services {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  /* Added 3D transform effect */
  transform-style: preserve-3d;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-accent), #0099cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  /* Optimized icon animation for smooth performance */
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.service-card:hover .service-icon {
  /* Simplified animation - removed rotateY for better performance */
  transform: translateZ(0) scale(1.15) rotate(5deg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Projects Section */
.projects {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.projects-grid {
  max-width: 92%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.project-card {
  /* max-width: 92%; */
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 3rem;
  transition: all 0.4s ease;
  /* Added 3D transform effect */
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
}

.project-card:hover::before {
  opacity: 1;
  transform: translate(10%, 10%);
}

.project-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.project-link {
  color: var(--color-accent);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
  /* Added link animation */
  position: relative;
}

.project-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.project-link:hover::after {
  width: 100%;
}

.project-link:hover {
  transform: translateX(5px);
}

.project-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.project-features {
  list-style: none;
  margin-top: 1.5rem;
}

.project-features li {
  color: var(--color-text-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* Added list item animation */
  transition: all 0.3s ease;
}

.project-features li:hover {
  color: var(--color-text);
  padding-left: 0.5rem;
}

.project-features li:last-child {
  border-bottom: none;
}

.project-features li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Stats Section */
.stats {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
  align-items: end;
}

.stat-item h4 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  /* Added counter animation and glow */
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  transition: transform 0.3s ease;
}

.stat-item:hover h4 {
  transform: scale(1.1);
}

.stat-item p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  /* Added text animation */
  transition: color 0.3s ease;
}

.stat-item:hover p {
  color: var(--color-text);
}

/* Added styles for social media icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  color: var(--color-text);
  transform: translateY(-3px) scale(1.1);
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
}

/* CTA Section */
.cta-section {
  padding: 8rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--color-border);
  padding: 3rem 2rem;
  text-align: center;
}

footer p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  flex-shrink: 0;
}

/* Improved mobile navigation layout */
/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .nav-right {
    order: 2;
    gap: 1rem;
    margin-left: auto;
  }

  /* Updated mobile styles for dropdown */
  .lang-current {
    padding: 0.4rem 2rem 0.4rem 0.7rem;
    font-size: 0.75rem;
    min-width: 60px;
  }

  .lang-options {
    min-width: 130px;
  }

  .lang-option {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* Animations */
/* Removed old fadeInUp animation, replaced with scroll-based animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Updated mobile navigation styles */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .lang-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* Global Presence Section */
.global-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.global-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: globalGlow 8s ease-in-out infinite;
}

@keyframes globalGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.global-content {
  position: relative;
  z-index: 1;
}

.world-map-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
  position: relative; /* Needed for absolute positioning of the image */
  overflow: hidden; /* Ensure the image doesn't overflow the container */
}

.world-map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the container */
  opacity: 0.3; /* Reduced opacity for background effect */
  filter: brightness(0.6) contrast(1.2); /* Added filter for better integration */
  z-index: 0; /* Behind the SVG content */
}

.world-map {
  position: relative; /* Ensure SVG content is above the background image */
  width: 100%;
  height: auto;
  color: var(
    --color-accent
  ); /* Changed color to accent for better visibility */
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3)); /* Added glow */
  z-index: 1;
}

/* Removed grid pattern and continent paths, keeping only connection lines and markers */

/* Added simplified continent outlines for better visualization */
.continents {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  opacity: 0.15;
}

/* Updated connection lines with corrected continent positions */
.connection-lines {
  stroke: url(#lineGradient);
  stroke-width: 2;
  fill: none;
  opacity: 0.6;
}
.connection-lines line,
.connection-lines path {
  stroke-dasharray: 5, 5;
}

/* Repositioned location markers to match real continent positions */
.pulse-marker {
  animation: markerPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--color-accent));
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse-ring {
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0% {
    r: 12;
    opacity: 0.6;
  }
  100% {
    r: 24;
    opacity: 0;
  }
}

.pulse-ring-outer {
  animation: ringPulseOuter 3s ease-in-out infinite;
}

@keyframes ringPulseOuter {
  0% {
    r: 20;
    opacity: 0.3;
  }
  100% {
    r: 40;
    opacity: 0;
  }
}

/* Removed all global-stats related styles */

/* Updated responsive styles to include global section */
/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .nav-right {
    order: 2;
    gap: 1rem;
    margin-left: auto;
  }

  /* Updated mobile styles for dropdown */
  .lang-current {
    padding: 0.4rem 2rem 0.4rem 0.7rem;
    font-size: 0.75rem;
    min-width: 60px;
  }

  .lang-options {
    min-width: 130px;
  }

  .lang-option {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .global-section,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .world-map-container {
    padding: 1rem;
    margin: 2rem auto;
  }

  /* Removed global-stats block */
}

/* Animations */
/* Removed old fadeInUp animation, replaced with scroll-based animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Updated mobile navigation styles */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .lang-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .global-section,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .world-map-container {
    padding: 1rem;
    margin: 2rem auto;
  }

  /* Removed global-stats block */
}

/* Animations */
/* Removed old fadeInUp animation, replaced with scroll-based animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Updated mobile navigation styles */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .lang-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* Global Presence Section */
.global-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.global-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: globalGlow 8s ease-in-out infinite;
}

@keyframes globalGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.global-content {
  position: relative;
  z-index: 1;
}

.world-map-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.world-map {
  width: 100%;
  height: auto;
  color: var(--color-text-secondary);
}

/* Removed continents hover effect */

.connection-lines line,
.connection-lines path {
  stroke-dasharray: 5, 5;
}

.pulse-marker {
  animation: markerPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--color-accent));
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse-ring {
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0% {
    r: 12;
    opacity: 0.6;
  }
  100% {
    r: 24;
    opacity: 0;
  }
}

.pulse-ring-outer {
  animation: ringPulseOuter 3s ease-in-out infinite;
}

@keyframes ringPulseOuter {
  0% {
    r: 20;
    opacity: 0.3;
  }
  100% {
    r: 40;
    opacity: 0;
  }
}

/* Removed all global-stats related styles */

/* Updated responsive styles to include global section */
/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .nav-right {
    order: 2;
    gap: 1rem;
    margin-left: auto;
  }

  /* Updated mobile styles for dropdown */
  .lang-current {
    padding: 0.4rem 2rem 0.4rem 0.7rem;
    font-size: 0.75rem;
    min-width: 60px;
  }

  .lang-options {
    min-width: 130px;
  }

  .lang-option {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .global-section,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .world-map-container {
    padding: 1rem;
    margin: 2rem auto;
  }

  /* Removed global-stats block */
}

/* Animations */
/* Removed old fadeInUp animation, replaced with scroll-based animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Updated mobile navigation styles */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .lang-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* Global Presence Section */
.global-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.global-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: globalGlow 8s ease-in-out infinite;
}

@keyframes globalGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.global-content {
  position: relative;
  z-index: 1;
}

.world-map-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.world-map {
  width: 100%;
  height: auto;
  color: var(--color-text-secondary);
}

/* Removed continents hover effect */

.connection-lines line,
.connection-lines path {
  stroke-dasharray: 5, 5;
}

.pulse-marker {
  animation: markerPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--color-accent));
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse-ring {
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0% {
    r: 12;
    opacity: 0.6;
  }
  100% {
    r: 24;
    opacity: 0;
  }
}

.pulse-ring-outer {
  animation: ringPulseOuter 3s ease-in-out infinite;
}

@keyframes ringPulseOuter {
  0% {
    r: 20;
    opacity: 0.3;
  }
  100% {
    r: 40;
    opacity: 0;
  }
}

/* Removed all global-stats related styles */

/* Updated responsive styles to include global section */
/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .nav-right {
    order: 2;
    gap: 1rem;
    margin-left: auto;
  }

  /* Updated mobile styles for dropdown */
  .lang-current {
    padding: 0.4rem 2rem 0.4rem 0.7rem;
    font-size: 0.75rem;
    min-width: 60px;
  }

  .lang-options {
    min-width: 130px;
  }

  .lang-option {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .global-section,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .world-map-container {
    padding: 1rem;
    margin: 2rem auto;
  }

  /* Removed global-stats block */
}

/* Animations */
/* Removed old fadeInUp animation, replaced with scroll-based animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Updated mobile navigation styles */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .lang-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* Global Presence Section */
.global-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.global-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: globalGlow 8s ease-in-out infinite;
}

@keyframes globalGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.global-content {
  position: relative;
  z-index: 1;
}

.world-map-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.world-map {
  width: 100%;
  height: auto;
  color: var(--color-text-secondary);
}

/* Removed continents hover effect */

.connection-lines line,
.connection-lines path {
  stroke-dasharray: 5, 5;
}

.pulse-marker {
  animation: markerPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--color-accent));
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse-ring {
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0% {
    r: 12;
    opacity: 0.6;
  }
  100% {
    r: 24;
    opacity: 0;
  }
}

.pulse-ring-outer {
  animation: ringPulseOuter 3s ease-in-out infinite;
}

@keyframes ringPulseOuter {
  0% {
    r: 20;
    opacity: 0.3;
  }
  100% {
    r: 40;
    opacity: 0;
  }
}

/* Removed all global-stats related styles */

/* Updated responsive styles to include global section */
/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .nav-right {
    order: 2;
    gap: 1rem;
    margin-left: auto;
  }

  /* Updated mobile styles for dropdown */
  .lang-current {
    padding: 0.4rem 2rem 0.4rem 0.7rem;
    font-size: 0.75rem;
    min-width: 60px;
  }

  .lang-options {
    min-width: 130px;
  }

  .lang-option {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .global-section,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .world-map-container {
    padding: 1rem;
    margin: 2rem auto;
  }

  /* Removed global-stats block */
}

/* Animations */
/* Removed old fadeInUp animation, replaced with scroll-based animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Updated mobile navigation styles */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .lang-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* Global Presence Section */
.global-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.global-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: globalGlow 8s ease-in-out infinite;
}

@keyframes globalGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.global-content {
  position: relative;
  z-index: 1;
}

.world-map-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.world-map {
  width: 100%;
  height: auto;
  color: var(--color-text-secondary);
}

/* Removed continents hover effect */

.connection-lines line,
.connection-lines path {
  stroke-dasharray: 5, 5;
}

.pulse-marker {
  animation: markerPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--color-accent));
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse-ring {
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0% {
    r: 12;
    opacity: 0.6;
  }
  100% {
    r: 24;
    opacity: 0;
  }
}

.pulse-ring-outer {
  animation: ringPulseOuter 3s ease-in-out infinite;
}

@keyframes ringPulseOuter {
  0% {
    r: 20;
    opacity: 0.3;
  }
  100% {
    r: 40;
    opacity: 0;
  }
}

/* Removed all global-stats related styles */

/* Updated responsive styles to include global section */
/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .nav-right {
    order: 2;
    gap: 1rem;
    margin-left: auto;
  }

  /* Updated mobile styles for dropdown */
  .lang-current {
    padding: 0.4rem 2rem 0.4rem 0.7rem;
    font-size: 0.75rem;
    min-width: 60px;
  }

  .lang-options {
    min-width: 130px;
  }

  .lang-option {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .global-section,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .world-map-container {
    padding: 1rem;
    margin: 2rem auto;
  }

  /* Removed global-stats block */
}

/* Animations */
/* Removed old fadeInUp animation, replaced with scroll-based animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Updated mobile navigation styles */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .lang-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* Global Presence Section */
.global-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.global-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: globalGlow 8s ease-in-out infinite;
}

@keyframes globalGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.global-content {
  position: relative;
  z-index: 1;
}

.world-map-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.world-map {
  width: 100%;
  height: auto;
  color: var(--color-text-secondary);
}

/* Removed continents hover effect */

.connection-lines line,
.connection-lines path {
  stroke-dasharray: 5, 5;
}

.pulse-marker {
  animation: markerPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--color-accent));
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse-ring {
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0% {
    r: 12;
    opacity: 0.6;
  }
  100% {
    r: 24;
    opacity: 0;
  }
}

.pulse-ring-outer {
  animation: ringPulseOuter 3s ease-in-out infinite;
}

@keyframes ringPulseOuter {
  0% {
    r: 20;
    opacity: 0.3;
  }
  100% {
    r: 40;
    opacity: 0;
  }
}

/* Removed all global-stats related styles */

/* Updated responsive styles to include global section */
/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .nav-right {
    order: 2;
    gap: 1rem;
    margin-left: auto;
  }

  /* Updated mobile styles for dropdown */
  .lang-current {
    padding: 0.4rem 2rem 0.4rem 0.7rem;
    font-size: 0.75rem;
    min-width: 60px;
  }

  .lang-options {
    min-width: 130px;
  }

  .lang-option {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .global-section,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .world-map-container {
    padding: 1rem;
    margin: 2rem auto;
  }

  /* Removed global-stats block */
}

/* Animations */
/* Removed old fadeInUp animation, replaced with scroll-based animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Updated mobile navigation styles */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .lang-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* Global Presence Section */
.global-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.global-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: globalGlow 8s ease-in-out infinite;
}

@keyframes globalGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.global-content {
  position: relative;
  z-index: 1;
}

.world-map-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.world-map {
  width: 100%;
  height: auto;
  color: var(--color-text-secondary);
}

/* Removed continents hover effect */

.connection-lines line,
.connection-lines path {
  stroke-dasharray: 5, 5;
}

.pulse-marker {
  animation: markerPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--color-accent));
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse-ring {
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0% {
    r: 12;
    opacity: 0.6;
  }
  100% {
    r: 24;
    opacity: 0;
  }
}

.pulse-ring-outer {
  animation: ringPulseOuter 3s ease-in-out infinite;
}

@keyframes ringPulseOuter {
  0% {
    r: 20;
    opacity: 0.3;
  }
  100% {
    r: 40;
    opacity: 0;
  }
}

/* Removed all global-stats related styles */

/* Updated responsive styles to include global section */
/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .nav-right {
    order: 2;
    gap: 1rem;
    margin-left: auto;
  }

  /* Updated mobile styles for dropdown */
  .lang-current {
    padding: 0.4rem 2rem 0.4rem 0.7rem;
    font-size: 0.75rem;
    min-width: 60px;
  }

  .lang-options {
    min-width: 130px;
  }

  .lang-option {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .global-section,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .world-map-container {
    padding: 1rem;
    margin: 2rem auto;
  }

  /* Removed global-stats block */
}

/* Animations */
/* Removed old fadeInUp animation, replaced with scroll-based animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Updated mobile navigation styles */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .lang-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* Global Presence Section */
.global-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.global-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: globalGlow 8s ease-in-out infinite;
}

@keyframes globalGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.global-content {
  position: relative;
  z-index: 1;
}

.world-map-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.world-map {
  width: 100%;
  height: auto;
  color: var(--color-text-secondary);
}

/* Removed continents hover effect */

.connection-lines line,
.connection-lines path {
  stroke-dasharray: 5, 5;
}

.pulse-marker {
  animation: markerPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--color-accent));
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse-ring {
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0% {
    r: 12;
    opacity: 0.6;
  }
  100% {
    r: 24;
    opacity: 0;
  }
}

.pulse-ring-outer {
  animation: ringPulseOuter 3s ease-in-out infinite;
}

@keyframes ringPulseOuter {
  0% {
    r: 20;
    opacity: 0.3;
  }
  100% {
    r: 40;
    opacity: 0;
  }
}

/* Removed all global-stats related styles */

/* Updated responsive styles to include global section */
/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .nav-right {
    order: 2;
    gap: 1rem;
    margin-left: auto;
  }

  /* Updated mobile styles for dropdown */
  .lang-current {
    padding: 0.4rem 2rem 0.4rem 0.7rem;
    font-size: 0.75rem;
    min-width: 60px;
  }

  .lang-options {
    min-width: 130px;
  }

  .lang-option {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .global-section,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .world-map-container {
    padding: 1rem;
    margin: 2rem auto;
  }

  /* Removed global-stats block */
}

/* Animations */
/* Removed old fadeInUp animation, replaced with scroll-based animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Updated mobile navigation styles */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    order: 3;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show mobile-only elements inside burger menu */
  .mobile-only {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
    font-size: 1.3rem;
  }

  .lang-switcher {
    gap: 0.4rem;
  }

  .lang-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services,
  .projects,
  .stats,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}
