@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #0f0f0f;
  color: #f1f1f1;
  overflow-x: hidden;
  position: relative;
}

h1, h2 {
  background: linear-gradient(90deg, #00ffe7, #7df9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 80px 40px;
  z-index: 1;
  position: relative;
}

.hero p {
  font-size: 1.3em;
  max-width: 900px;
  color: #d0d0d0;
  line-height: 1.8;
}

.section {
  padding: 80px 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
  position: relative;
}

.section p {
  font-size: 1.2em;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.services, .why-us {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.services li, .why-us li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #b0b0b0;
  padding-left: 20px;
  position: relative;
}

.services li::before, .why-us li::before {
  content: "•";
  color: #00ffe7;
  position: absolute;
  left: 0;
}

.btn {
  margin-top: 30px;
  padding: 16px 40px;
  background: #00ffe7;
  color: #000;
  border: none;
  font-weight: bold;
  font-size: 1.2em;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 15px #00ffe7;
}

.btn:hover {
  background: #7df9ff;
  box-shadow: 0 0 20px #7df9ff;
}

.cta {
  text-align: center;
  padding: 60px 20px;
  background-color: #1a1a1a;
  margin-top: 60px;
}

/* Brain animation */
.brain-container {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  opacity: 0.05;
  animation: pulse 3s infinite ease-in-out;
}

.brain {
  width: 400px;
  height: auto;
  filter: drop-shadow(0 0 20px #00ffe7);
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.05;
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    opacity: 0.1;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.05;
  }
}
