body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000; /* Black background */
  font-family: Arial, sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  cursor: none; /* Hide default cursor */
}

#particles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; /* Ensure particles are behind the content */
}

#custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
  animation: underglow 1.5s infinite alternate;
}

@keyframes underglow {
  0% {
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
  }
  100% {
    box-shadow: 0 0 20px #fff, 0 0 40px #fff, 0 0 60px #fff;
  }
}

#contact {
  text-align: center;
  padding: 50px 20px;
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 1;
}

h2 {
  font-size: 3rem;
  background: linear-gradient(45deg, #00ffff, #007777);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  animation: glow-text 2s infinite alternate;
}

@keyframes glow-text {
  0% {
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
  }
  100% {
    text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
  }
}

.glowing-text {
  font-size: 1.5rem;
  color: #00ffff;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  0% {
    opacity: 0.5;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
  }
}

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

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

label {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #00ffff;
}

input,
textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #00ffff;
  border-radius: 5px;
  background: rgba(0, 255, 255, 0.1);
  color: #fff;
  transition: border-color 0.3s ease-out, box-shadow 0.3s ease-out;
}

input:focus,
textarea:focus {
  border-color: #007777;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
  outline: none;
}

button {
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  background: linear-gradient(45deg, #00ffff, #007777);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: transform 0.3s ease-out, color 0.3s ease-out;
}

.social-link img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 5px #00ffff);
  transition: filter 0.3s ease-out;
}

.social-link:hover {
  color: #00ffff;
  transform: scale(1.1);
}

.social-link:hover img {
  filter: drop-shadow(0 0 10px #00ffff);
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-50px) translateX(50px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
}

.particle {
  position: absolute;
  background: rgb(0, 255, 255);
  border-radius: 50%;
  box-shadow: 0 0 10px rgb(0, 255, 255), 0 0 20px rgb(0, 255, 255),
    0 0 30px rgb(0, 255, 255);
  animation: float 5s linear infinite;
}
/*update as soon as possible*/
footer {
  padding: 20px;
  background: #000000b3;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer p {
  margin: 5px 0;
}
