body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #00ffcc;
  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;
}
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;
}
footer .socials a {
  color: #00ffff;
  text-decoration: none;
  margin: 0 0.5rem;
}

/* Hero Section */
.home-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content h1 {
  font-size: 3rem;
  color: #ff00ff;
}
.hero-content h1 span {
  color: #00ffcc;
}
.cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background-color: #00ffcc;
  color: #000;
  border-radius: 5px;
  box-shadow: 0 0 10px #00ffcc;
  text-decoration: none;
  transition: 0.3s ease;
}
.cta:hover {
  background-color: #ff00ff;
  color: white;
  box-shadow: 0 0 15px #ff00ff;
}

.highlight-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

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

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #ff00ff;
}

.highlight-card h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #fff;
}

.highlight-card p {
  font-size: 0.95rem;
  color: #ccc;
}


/* Scroll Reveal Animation */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.3s ease-out, transform 1s ease-out;
}

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

/* Optional: staggered paragraph animation */
.intro-text .container p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease-out;
}

.intro-text.reveal-item.active .container p {
  opacity: 1;
  transform: translateY(0);
}

/* Delay each line appearing one after another */
.intro-text .container p:nth-child(1) { transition-delay: 0.1s; }
.intro-text .container p:nth-child(2) { transition-delay: 0.3s; }
.intro-text .container p:nth-child(3) { transition-delay: 0.5s; }
.intro-text .container p:nth-child(4) { transition-delay: 0.7s; }
.intro-text .container p:nth-child(5) { transition-delay: 0.9s; }
.intro-text .container p:nth-child(6) { transition-delay: 1.1s; }

.highlight-card .reveal-item{
  background-color: transparent(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;
}

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

.offerings {
  padding: 3rem 2rem;
  text-align: center;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.offer-card {
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid #00ffcc;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 0 15px #00ffff33;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ff00ff66;
}

.offer-card h3 {
  color: #00ffff;
  margin-bottom: 0.5rem;
}

.offer-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.old-price {
  color: #ff4d4d;
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.new-price {
  color: #00ff88;
  font-weight: bold;
}

.cta.small {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #00ffcc;
  color: #000;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

.cta.small:hover {
  background: #ff00ff;
  color: #fff;
  box-shadow: 0 0 10px #ff00ff;
}

.micro-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.micro-card h3 {
  margin-bottom: 10px;
  color: #00ffff;
}

.micro-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.micro-card .price {
  margin-top: 1rem;
  font-size: 1rem;
  color: #00ffcc;
}

.micro-card .price del {
  color: #999;
  margin-right: 0.5rem;
  text-decoration: line-through;
}

.micro-card .price strong {
  color: #ff00ff;
  font-size: 1.1rem;
}

.process-heading {
  text-align: center;
  margin: 3rem 0 1rem;
  font-size: 1.5rem;
  color: #00ffff;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 0 2rem 3rem;
}

.process-flow .step {
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #00ffcc;
  width: 250px;
  text-align: center;
  color: #ccc;
}

.testimonials {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #00ffff;
}

.testimonial {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-left: 4px solid #00ffcc;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 12px #00ffcc55;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px #ff00ff88;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00ffcc;
  box-shadow: 0 0 10px #00ffff;
}

.testimonial-text {
  flex: 1;
}

.testimonial-text p {
  font-size: 1rem;
  color: #dddddd;
  margin: 0 0 0.5rem;
}

.testimonial-text span {
  font-size: 0.9rem;
  color: #aaaaaa;
}

.external-links {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.external-links h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #00ffff;
}

.external-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.external-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #00ffcc;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 0 15px #00ffcc44;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.external-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #ff00ff88;
}

.external-logo {
  width: 60px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 5px #00ffff);
}

.external-card h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.external-card p {
  color: #cccccc;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.external-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: #00ffcc;
  color: #000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.external-btn:hover {
  background-color: #ff00ff;
  color: #fff;
}
