* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
  color: white;
  overflow-x: hidden;
}

@keyframes gradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

header {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.1);
}

nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.btn {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  background: white;
  color: black;
  cursor: pointer;
  margin-top: 20px;
}

.features {
  padding: 100px 50px;
  text-align: center;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 20px;
  transition: 0.5s;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: rotateY(15deg) scale(1.05);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 80px;
}

.contact {
  padding: 100px 50px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
}

footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.3);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
}