@import url('https://fonts.googleapis.com/css2?family=Neon+Tubes&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Neon Tubes', Arial, sans-serif;
  background-color: #000; /* Black background */
  color: #00ff66; /* Neon green text color */
  overflow: hidden; /* Added to prevent scrollbars */
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1; /* Set a lower z-index for the particles */
}

.content {
  position: relative;
  z-index: 2; /* Set a higher z-index for the content */
  padding: 20px;
}

header {
  position: relative;
}

header h1 {
  position: absolute;
  top: 0;
  left: 0;
  margin: 10px;
}

.neon-box-nav {
  background-color: rgba(57, 255, 20, 0.2); /* Neon green with 20% opacity */
  border: 2px solid #ffffff; /* White border */
  border-radius: 10px; /* Rounded corners */
  padding: 10px 20px;
  margin: 10px auto 0; /* Center horizontally with top margin */
  width: fit-content; /* Fit the content */
}

nav {
  display: flex;
  justify-content: center; /* Horizontally center the navigation */
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav ul li:last-child {
  margin-right: 0; /* Remove margin from the last item to avoid extra space */
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease; /* Smooth color transition */
}

nav ul li a:hover {
  color: #39ff14; /* Change color to neon pink on hover */
  text-shadow: 0 0 10px #39ff14, 0 0 20px #, 0 0 30px #39ff14, 0 0 40px #39ff14; /* Neon glow effect on hover */
}


main {
  text-align: center;
  margin-top: 150px; /* Adjust the margin-top value as needed */
}

  h2 {
  color: #ffffff; /* White text color */
  text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff, 0 0 40px #ffffff; /* Neon white glow */
}


p {
  font-size: 18px;
  color: #ffffff; /* White text color */
  text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff, 0 0 40px #ffffff; /* Neon white glow */
}

/* Neon Box Styling */
.neon-box {
  background-color: rgba(0, 0, 0, 1.0); /* Neon Pink with 20% opacity */
  border: 2px solid #ffffff; /* White border */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 0 30px #39ff14, 0 0 60px #39ff14;

  padding: 20px;
  margin: 0 auto;
  max-width: 600px; /* Adjust as needed */
}
/* Neon Box Nav Styling */
.neon-box-nav {
  background-color: rgba(0, 0, 0, 0.2); /* Neon Pink with 20% opacity */
  border: 2px solid #ffffff; /* White border */
  border-radius: 10px; /* Rounded corners */
  padding: 10px 20px;
  margin: 10px auto 0; /* Center horizontally with top margin */
  width: fit-content; /* Fit the content */
}

/* Additional styles for the services page */

.service-item {
  display: inline-block;
  margin: 20px;
  border: 2px solid #39ff14;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px; /* Set a fixed width for all service items */
}

.service-item img {
  display: block;
  width: 100%; /* Ensure images fill their parent container */
  height: auto;
}

.service-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 30px #39ff14;
}

