body {
  margin: 0;
  font-family: Arial;
  color: white;
  background: #0a0f1f;
  overflow-x: hidden;
}

/* Animated background */
.bg-animation {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #0ea5e9, #8b5cf6, #22c55e, #ef4444);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
  z-index: -1;
  opacity: 0.2;
}

@keyframes gradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.glow {
  font-size: 50px;
  text-shadow: 0 0 20px #0ea5e9;
}

.subtitle {
  opacity: 0.8;
}

.btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: #0ea5e9;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.1);
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  text-align: center;
}

/* GLASS CARDS */
.grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.glass {
  padding: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  width: 200px;
}

/* PROJECTS */
.projects {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #111827;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  background: #1f2937;
}

/* FORM */
.form input, .form textarea {
  display: block;
  width: 300px;
  margin: 10px auto;
  padding: 10px;
  border-radius: 8px;
  border: none;
}

button {
  padding: 10px 20px;
  background: #22c55e;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}