* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
body{
  background-color: #000 !important;
}
.services-section {
  background-color: black !important;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}
.services {
  overflow: inherit;
}
.services-section h2 {
  color: #6bff8a;
  font-size: 36px;
  font-weight: 700;
}

#hee3{
  color:var(--neon-green);
  border-bottom: 2px solid var(--neon-green);
}

.services-section h2 .white {
  color: #ffffff;
}

.services-section h2 .light {
  color: #18ff03;
}

.underline {
  width: 120px;
  height: 4px;
  background: #2fff00;
  margin: 12px auto 40px;
  border-radius: 5px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.services button {
  background: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

.services button:hover {
  background: #40ff00;
  color: #0b3d1b;
}

.services button.active {
  background: #eaffef;
  font-weight: bold;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 26px;
  }

  .services button {
    font-size: 14px;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .services {
    gap: 8px;
  }

  .services button {
    width: 100%;
    max-width: 300px;
  }
}
/* Background same as image */
.cta-bg {
  min-height: 60vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
}

/* White card */
.cta-box {
  background: #ffffff;
  width: 100%;
  max-width: 1200px;
  border-radius: 32px;
  padding: 90px 30px;
  text-align: center;
}

/* Heading */
.cta-box h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.cta-box h2 span {
  color: #40ff00;
}

/* Green underline */
.cta-line {
  width: 520px;
  max-width: 90%;
  height: 3px;
  background: #40ff00;
  margin: 18px auto 45px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cta-buttons a {
  background: #40ff00;
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-buttons a:hover {
  background: #40ff00;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-box {
    padding: 60px 20px;
  }
  .cta-box h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .cta-buttons a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
