
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0A0A0A;
  color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}

.logo {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  color: #39FF14;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-size: 16px;
  color: #C0C0C0;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #39FF14;
  text-shadow: 0 0 10px #39FF14;
}

.search-bar {
  position: relative;
}

.search-bar input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #39FF14;
  padding: 10px 40px 10px 10px;
  border-radius: 20px;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.search-bar input:focus {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px #39FF14;
}

.search-bar i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #39FF14;
  cursor: pointer;
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 48px;
  color: #39FF14;
  text-shadow: 0 0 10px #39FF14;
}

.cta-buttons {
  margin-top: 20px;
}

.cta-buttons button {
  background: #39FF14;
  padding: 10px 20px;
  border-radius: 20px;
  color: #0A0A0A;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-buttons button:hover {
  background: #00FFFF;
  box-shadow: 0 0 10px #00FFFF;
}

.products {
  padding: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #39FF14;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #39FF14;
}

.product-card h3 {
  font-family: 'Exo 2', sans-serif;
  color: #39FF14;
}

.about {
  padding: 50px;
  text-align: center;
}

.about h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  color: #39FF14;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  line-height: 1.6;
  color: #C0C0C0;
}

.contact {
  padding: 50px;
  text-align: center;
}

.contact h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  color: #39FF14;
  margin-bottom: 20px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input, .contact textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #39FF14;
  border-radius: 10px;
  padding: 10px;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.contact input:focus, .contact textarea:focus {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px #39FF14;
}

.contact button {
  background: #39FF14;
  padding: 10px;
  border-radius: 10px;
  color: #0A0A0A;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact button:hover {
  background: #00FFFF;
  box-shadow: 0 0 10px #00FFFF;
}

footer {
  background: #0A0A0A;
  padding: 20px;
  text-align: center;
}

footer p {
  color: #C0C0C0;
}

html {
  scroll-behavior: smooth;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.icon-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #C0C0C0;
}

.glowing-icon {
  font-size: 24px;
  color: #39FF14;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px #39FF14;
}

.glowing-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px #39FF14;
}

.email-icon {
  animation: glow-email 1.5s infinite alternate;
}

.signal-icon {
  animation: glow-signal 1.5s infinite alternate;
}

@keyframes glow-email {
  0% {
    box-shadow: 0 0 10px #39FF14;
  }
  100% {
    box-shadow: 0 0 20px #39FF14;
  }
}

@keyframes glow-signal {
  0% {
    box-shadow: 0 0 10px #00FFFF;
  }
  100% {
    box-shadow: 0 0 20px #00FFFF;
  }
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.highlight {
  color: #41c7fb;
}

.glow-effect {
  box-shadow: 0 0 15px #41c7fb, 0 0 30px #41c7fb;
}