* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  color: #fff;
  background: #000;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

header {
  position: fixed; top: 0; left: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(0,0,0,0.7); padding: 15px 40px; z-index: 100;
  backdrop-filter: blur(10px);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 90px; width: 100px; border-radius: 50%; }
nav a {
  color: #fff; text-decoration: none; margin: 0 10px; transition: 0.3s;
}
nav a:hover { color: #0f0; }

.hero {
  height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 20px;
}
.hero-content h2 { font-size: 2.5em; margin-bottom: 10px; }
.btn {
  display: inline-block; background: linear-gradient(90deg, #00ffcc, #00ccff);
  padding: 12px 24px; color: #000; border-radius: 25px; font-weight: bold; text-decoration: none;
  margin-top: 20px;
}
.section { padding: 120px 20px; max-width: 900px; margin: auto; text-align: center; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.card {
  background: rgba(255,255,255,0.05); padding: 20px; border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,255,200,0.2);
}

form {
  max-width: 500px;
  margin: 30px auto;
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,255,200,0.15);
}
.form-group { margin-bottom: 15px; }
input, textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1em;
}
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

input::placeholder, textarea::placeholder { color: #ccc; }
button.btn {
  width: 100%;
  background: linear-gradient(90deg, #00ffcc, #00ccff);
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
}
button.btn:hover { transform: scale(1.05); }

.success { color: #00ffcc; margin-top: 10px; }
.error { color: #ff4444; margin-top: 10px; }


.clients li, .service-list li { list-style: none; padding: 8px 0; }
footer {
  text-align: center; padding: 20px 0; background: rgba(0,0,0,0.9);
  position: relative; z-index: 10;
}
#bgCanvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1; display: block;
}
@media (max-width: 768px) {
  header { flex-direction: column; text-align: center; }
  nav { margin-top: 10px; }
  .hero-content h2 { font-size: 1.8em; }
}
