/* Shared */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #00ffcc;
  background-color: transparent;
  overflow-x: hidden;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
  pointer-events: none;
  background: transparent;
}

.cyberpunk-bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -3;
  background: radial-gradient(ellipse at center, #0f0f0f 0%, #000000 100%);
  animation: glow-pulse 6s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

/* Header/Footer */
header, footer {
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid #00ffcc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ffcc;
}

.logo span {
  color: #00ff88;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #00ffff;
  text-decoration: none;
  transition: 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

footer {
  text-align: center;
  border-top: 1px solid #00ffcc;
  font-size: 0.9rem;
  flex-direction: column;
}

footer .socials {
  margin-top: 8px;
}

footer .socials a {
  color: #00ffff;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer .socials a:hover {
  color: #ff00ff;
}

/* Services */
.service-hero {
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content h1 span {
  color: #fff;
}

.hero-content .hero-sub {
  font-size: 1rem;
  color: #0af4b6;
  max-width: 750px;
  margin: 0.5rem auto 0;
  line-height: 1.6;
}

.hero-content p {
  font-size: 1.2rem;
  color: #7ddb0b;
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}


.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  grid-auto-rows: auto;
  gap: 2.5rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 1024px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}



.service-card {
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid #00ffcc;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px #00ffcc;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff00ff;
}

/* SVG Icon Styling */
.service-card img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px #00ffff);
  transition: transform 0.3s ease;
}

.service-card img:hover {
  transform: scale(1.1);
}

.service-card h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

.service-card p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.5;
}
