body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #000000);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: #00ffe5;
}

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

/* Reset and fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0e0e0e;
  color: #00ffe5;
  font-family: 'Orbitron', sans-serif;
  height: 100vh;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  text-align: center;
  background: radial-gradient(circle at top left, #1a1a1a, #000000);
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: #00ffe5;
  filter: blur(200px);
  opacity: 0.5;
  z-index: 0;
}

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

h1.neon-text {
  font-size: 4rem;
  color: #00ffe5;
  text-shadow: 0 0 10px #00ffe5, 0 0 20px #00ffe5, 0 0 30px #00ffe5;
  margin-bottom: 20px;
  animation: glow-fade 3s ease-in-out infinite alternate;
}

@keyframes glow-fade {
  0% {
    text-shadow: 0 0 10px #00ffe5, 0 0 20px #00ffe5, 0 0 30px #00ffe5;
  }
  100% {
    text-shadow: 0 0 5px #00ffe5, 0 0 10px #00ffe5, 0 0 15px #00ffe5;
  }
}

.subtext {
  font-size: 1.5rem;
  color: #bbbbbb;
  margin-bottom: 30px;
}

.cta-button {
  text-decoration: none;
  color: #0e0e0e;
  background: #00ffe5;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 0 20px #00ffe5;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #0e0e0e;
  color: #00ffe5;
  border: 2px solid #00ffe5;
  box-shadow: 0 0 30px #00ffe5;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, #0e0e0e, #111111);
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 60px;
  color: #00ffe5;
  text-shadow: 0 0 15px #00ffe5;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.card {
  background-color: #1b1b1b;
  border: 1px solid #00ffe5;
  box-shadow: 0 0 20px rgba(0, 255, 229, 0.2);
  border-radius: 16px;
  padding: 30px;
  width: 300px;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
  font-size: 1.5rem;
  color: #00ffe5;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #00ffe5;
}

.card p {
  font-size: 1rem;
  color: #cccccc;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px #00ffe5;
}

/* About Us Section */
.about-us {
  background: linear-gradient(135deg, #0a0a0a, #121212);
  padding: 80px 20px;
  color: #f2f2f2;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: auto;
  padding: 40px;
  border: 1px solid #00ffe5;
  border-radius: 16px;
  background-color: rgba(20, 20, 20, 0.95);
  box-shadow: 0 0 30px rgba(0, 255, 229, 0.15);
}

.about-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cccccc;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(to right, #0a0a0a, #1b1b1b);
  color: #e0e0e0;
  padding: 100px 20px;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: auto;
  background: rgba(15, 15, 15, 0.9);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0, 255, 229, 0.1);
  border: 1px solid #00ffe5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background-color: #121212;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #00ffe5;
}

.contact-form button {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #00ffe5, #0ff);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #0ff, #00ffe5);
  transform: scale(1.05);
}

.contact-details a {
  color: #00ffe5;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.footer {
  background: #0a0a0a;
  padding: 60px 20px;
  color: #00ffe0;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0, 255, 200, 0.2);
  border-top: 2px solid rgba(0, 255, 200, 0.3);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logo h2 {
  font-size: 2rem;
  color: #00ffe0;
  text-shadow: 0 0 8px #00ffe0, 0 0 16px #00ffe0;
  margin-bottom: 5px;
}

.footer-logo p {
  font-size: 1rem;
  color: #888;
}

.footer-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #00ffe0;
  font-weight: bold;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff00ff;
  text-shadow: 0 0 6px #ff00ff;
}

.footer-socials a {
  margin: 0 10px;
  color: #00ffe0;
  font-size: 1.2rem;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #ff00ff;
  text-shadow: 0 0 8px #ff00ff;
}

.footer-copy {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #666;
}

/* === Newsletter Section === */
.newsletter {
  background: #111;
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.newsletter h2 {
  color: #00f9ff;
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 0 10px #00f9ff;
}

.newsletter form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter input[type="email"] {
  padding: 12px 20px;
  width: 280px;
  max-width: 90%;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: #222;
  color: #fff;
  outline: none;
  box-shadow: 0 0 5px #00f9ff;
  transition: box-shadow 0.3s ease;
}

.newsletter input[type="email"]:focus {
  box-shadow: 0 0 15px #00f9ff;
}

.newsletter button {
  padding: 12px 24px;
  background-color: #00f9ff;
  color: #111;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px #00f9ff;
}

.newsletter button:hover {
  background-color: #00d3e0;
  box-shadow: 0 0 20px #00f9ff;
}

.hero {
  background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  top: -100%;
  left: -100%;
  background: radial-gradient(circle, rgba(0,255,234,0.2), transparent 70%);
  animation: rotateLight 10s linear infinite;
  z-index: 0;
}

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

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

.neon-title {
  font-size: 3rem;
  font-weight: bold;
  color: #00ffe0;
  text-shadow: 0 0 10px #00ffe0, 0 0 20px #00ffe0;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.glow-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #00ffe0;
  color: #111;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 10px #00ffe0, 0 0 20px #00ffe0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.glow-btn:hover {
  background: #ff00ff;
  box-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
  color: #fff;
}

.services {
  padding: 100px 20px;
  background-color: #0e0e0e;
  color: #eee;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #00ffe0;
  text-shadow: 0 0 10px #00ffe0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #1c1c1c;
  border: 2px solid #00ffe0;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 0 20px rgba(0, 255, 234, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0, 255, 234, 0.3);
  border-color: #ff00ff;
}

.service-card h3 {
  color: #ff00ff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.our-story {
  padding: 80px 40px;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #00ffe7;
  text-align: center;
}

.our-story h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00ffe7;
  text-shadow: 0 0 10px #00ffe7;
}

.our-story p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
  color: #e0e0e0;
}

.contact-section {
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  margin: 60px auto;
  max-width: 800px;
  text-align: center;
  color: #0ff;
  box-shadow: 0 0 30px rgba(0,255,255,0.2);
}

.contact-container h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #0ff;
}

.contact-container p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #aaa;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background-color: #111;
  color: #0ff;
  font-size: 1rem;
  resize: none;
  outline: none;
  border: 1px solid #0ff;
}

.contact-form button {
  padding: 15px;
  background-color: #0ff;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #00ffffa1;
}

/* === NAVIGATION BAR === */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0f0f0f;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 255, 255, 0.2);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  padding: 20px 0;
  margin: 0;
}

.main-nav a {
  font-family: 'Orbitron', sans-serif;
  color: #00ffe5;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: #ffffff;
  border-bottom: 2px solid #00ffe5;
}

.main-nav a.active {
  color: #ffffff;
  border-bottom: 2px solid #00ffe5;
}

body {
  padding-top: 80px;
}

/* === SERVICE SECTION === */
.services {
  background: #0b0b0b;
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00ffe5;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 0 20px;
}

.service-card {
  background: #121212;
  border: 2px solid #00ffe5;
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 15px rgba(0, 255, 229, 0.15);
  font-family: 'Orbitron', sans-serif;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #00ffe5, 0 0 50px #00ffe5;
  cursor: pointer;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #00ffe5;
}

.service-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* === GLOW NAVBAR === */
.main-nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid #00ffe5;
  box-shadow: 0 0 20px rgba(0, 255, 229, 0.2);
  backdrop-filter: blur(10px);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 20px 0;
  margin: 0;
  gap: 40px;
}

.nav-link {
  color: #aaa;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link:hover,
.nav-link.active {
  color: #00ffe5;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #00ffe5;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* 🔥 Glow Buttons */
.glow-btn {
  display: inline-block;
  padding: 14px 32px;
  margin-top: 30px;
  font-size: 1rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  color: #00ffe5;
  background: transparent;
  border: 2px solid #00ffe5;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 8px #00ffe5;
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #00ffe5;
  opacity: 0.1;
  border-radius: 8px;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
}

.glow-btn:hover {
  background-color: #00ffe5;
  color: #000;
  box-shadow: 0 0 20px #00ffe5, 0 0 40px #00ffe5;
}

.glow-btn:hover::before {
  opacity: 0.25;
}

.glow-btn {
  background: transparent;
  border: 2px solid #00ffe5;
  padding: 12px 30px;
  font-size: 1rem;
  color: #00ffe5;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 12px #00ffe5, 0 0 20px #00ffe5 inset;
}

.glow-btn:hover {
  background-color: #00ffe5;
  color: #000;
  box-shadow: 0 0 20px #00ffe5, 0 0 40px #00ffe5, 0 0 60px #00ffe5;
  transform: scale(1.05);
}

.neon-title {
  font-family: 'Orbitron', sans-serif;
  color: #00ffe5;
  font-size: 4rem;
  text-align: center;
  text-shadow:
    0 0 5px #00ffe5,
    0 0 10px #00ffe5,
    0 0 20px #00ffe5,
    0 0 40px #00ffe5;
  margin: 0;
}

.main-nav ul li a {
  color: #00ffe5;
  text-decoration: none;
  padding: 10px 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background-color: rgba(0, 255, 229, 0.1);
  box-shadow: 0 0 10px #00ffe5, 0 0 20px #00ffe5;
  border-bottom: 2px solid #00ffe5;
}

body {
  background-color: #0d0d0d;
  color: #e0e0e0;
}

.newsletter-form button {
  background-color: #00ffe5;
  color: #0d0d0d;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 5px #00ffe5, 0 0 10px #00ffe5, 0 0 20px #00ffe5;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 10px #00ffe5,
    0 0 20px #00ffe5,
    0 0 40px #00ffe5,
    0 0 80px #00ffe5;
}

.newsletter {
  background-color: #111111;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #00ffe5;
  border-bottom: 1px solid #00ffe5;
}

.newsletter h2 {
  font-size: 2rem;
  color: #00ffe5;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #00ffe5;
}

.newsletter-form input[type="email"] {
  padding: 10px 15px;
  width: 300px;
  max-width: 90%;
  border: none;
  border-radius: 6px;
  margin-right: 10px;
  font-size: 1rem;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #00ffe5;
  color: #0d0d0d;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 10px #00ffe5, 0 0 20px #00ffe5, 0 0 40px #00ffe5;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  display: none;
}

.back-to-top:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 15px #00ffe5,
    0 0 30px #00ffe5,
    0 0 60px #00ffe5;
}

.glass-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  text-align: center;
  color: #00ffe5;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 20px #00ffe5, 0 0 60px #00ffe5;
}

.glow-btn {
  background-color: transparent;
  color: #00ffe5;
  padding: 12px 24px;
  font-size: 1rem;
  border: 2px solid #00ffe5;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 10px #00ffe5, 0 0 20px #00ffe5;
  transition: all 0.3s ease-in-out;
}

.glow-btn:hover {
  background-color: #00ffe5;
  color: #0d0d0d;
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffe5, 0 0 40px #00ffe5;
}
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #0d0d0d;
  z-index: -1;
}
body {
  background: transparent;
  position: relative;
  z-index: 1;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #00ffe5;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 9999;
  box-shadow: 0 0 8px #00ffe5, 0 0 16px #00ffe5;
}

.color-shift-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ff00cc, #3333ff, #00ffe5, #000000);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(0, 255, 229, 0.1);
  color: #fff;
  cursor: pointer;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 229, 0.7), 0 0 50px rgba(0, 255, 229, 0.4);
  border: 1px solid rgba(0, 255, 229, 0.8);
}

.neon-divider {
  width: 80%;
  height: 2px;
  margin: 60px auto;
  background: linear-gradient(90deg, transparent, #00ffe5, transparent);
  box-shadow: 0 0 20px #00ffe5;
  animation: glowLine 3s ease-in-out infinite;
}

@keyframes glowLine {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

.impact-section {
  padding: 100px 40px;
  background: linear-gradient(145deg, #0f0f0f, #111);
  text-align: center;
}

.impact-section .section-title {
  color: #00ffe5;
  font-size: 2.8rem;
  margin-bottom: 60px;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px #00ffe5;
}

.impact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.impact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 229, 0.3);
  border-radius: 15px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 0 20px rgba(0, 255, 229, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: #fff;
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0, 255, 229, 0.5);
}

.impact-card i {
  font-size: 3rem;
  color: #00ffe5;
  margin-bottom: 20px;
  display: block;
}

.impact-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #00ffe5;
}

.impact-card p {
  font-size: 1rem;
  color: #ddd;
}

.services {
  padding: 4rem 2rem;
  background-color: #0a0a0a;
  color: white;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
  text-shadow: 0 0 10px #ff0040;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.services-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.center-row {
  justify-content: center;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  width: 280px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(255, 0, 100, 0.2);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 20px rgba(255, 0, 100, 0.6), 0 0 30px rgba(255, 255, 255, 0.1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff66b2;
}

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

.services {
  text-align: center;
  padding: 60px 20px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
}

.service-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.service-row.top {
  justify-content: center;
}

.service-row.bottom {
  justify-content: center;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  width: 280px;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* === Subpage Hero Section === */
.hero-subpage {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 100px 20px;
  text-align: center;
  border-bottom: 2px solid #555;
}

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

.hero-subpage p {
  font-size: 1.2rem;
  color: #ccc;
}

/* === Content Section === */
.service-detail .content {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  color: white;
}

.service-detail .content h2 {
  font-size: 2rem;
  margin-top: 20px;
  color: #00ffe1;
}

.service-detail .content ul {
  list-style: disc;
  margin-left: 20px;
  color: #ccc;
}

.chart-img {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Highlight Active Page in Navbar */
nav a.active {
  border-bottom: 2px solid #00ffe1;
  color: #00ffe1;
}

/* Hero section for subpages */
.hero-subpage {
  background: linear-gradient(to right, #1f1f1f, #2c2c2c);
  color: white;
  padding: 100px 30px;
  text-align: center;
  border-radius: 20px;
  margin: 40px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

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

.hero-subpage p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Content section */
.service-detail .content {
  padding: 40px 30px;
  color: white;
}

.service-detail .content h2 {
  margin-top: 30px;
  font-size: 2rem;
  color: #ff5c5c;
}

.service-detail .content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #ddd;
}

.chart-img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Footer styling for subpage too */
footer {
  text-align: center;
  padding: 30px;
  background-color: #111;
  color: #aaa;
}

/* === GLOBAL STYLES === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0d1117;
  color: #ffffff;
}

a {
  text-decoration: none;
  color: #ffffff;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* === HEADER + NAVIGATION === */
header {
  background-color: #161b22;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.05);
}

nav ul {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

nav a {
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #58a6ff;
}

/* === FOOTER === */
footer {
  background-color: #161b22;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #30363d;
}

/* === HERO FOR SUBPAGES === */
.hero-subpage {
  background: linear-gradient(135deg, #1f2937, #0d1117);
  text-align: center;
  padding: 5rem 2rem 3rem;
  box-shadow: inset 0 -2px 10px rgba(255, 255, 255, 0.1);
}

.hero-subpage h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subpage p {
  font-size: 1.2rem;
  color: #c9d1d9;
}

/* === CONTENT SECTION === */
.content {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.content h2 {
  color: #58a6ff;
  margin-top: 2rem;
}

.chart-img {
  max-width: 100%;
  margin-top: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(88, 166, 255, 0.2);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.card h3 {
  color: #00ffff;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: #ddd;
  line-height: 1.6;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
  justify-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .center-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

.glow-line {
  width: 100%;
  height: 2px;
  margin: 2rem 0;
  background: linear-gradient(90deg, #00f5ff, #ff00e0, #00f5ff);
  animation: glow-move 3s linear infinite;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.6), 0 0 20px rgba(255, 0, 255, 0.4);
  border-radius: 5px;
}

/* Animation to make it glow dynamically */
@keyframes glow-move {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

nav a {
  color: #ffffff;
  font-weight: 600;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

nav a:hover {
  color: #00fff0;
  text-shadow: 0 0 10px #00fff0, 0 0 20px #00fff0;
}

nav a.active {
  color: #00fff0;
  text-shadow: 0 0 10px #00fff0, 0 0 20px #00fff0;
  border-bottom: 2px solid #00fff0;
}

.chart-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}

.chart-preview img {
  width: 80%;
  max-width: 600px;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chart-preview img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.caption {
  color: #ccc;
  font-size: 1rem;
  margin-top: 0.75rem;
  font-style: italic;
}
/* ==== Base Styling ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
}

body {
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  min-height: 100vh;
  padding: 20px;
}

/* ==== Navbar ==== */
.navbar {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin-bottom: 40px;
  position: sticky;
  top: 10px;
  z-index: 999;
}

.navbar a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.navbar a:hover, .navbar .active {
  background: #ff0033;
  color: white;
  box-shadow: 0 0 10px #ff0033;
}

/* ==== Hero Section ==== */
.hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.hero h1 {
  font-size: 3rem;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #aaa;
}

/* ==== Content Section ==== */
.content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 0, 80, 0.1);
}

.content h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #ff4b2b;
}

.content ul {
  list-style-type: none;
  line-height: 2;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.chart-preview {
  text-align: center;
  margin-top: 20px;
}

.chart-preview img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 75, 43, 0.2);
}

.caption {
  margin-top: 10px;
  color: #aaa;
  font-size: 0.95rem;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .content {
    padding: 20px;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .chart-preview img {
    width: 100%;
  }
}

.chart-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}