* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0b1120;
  color: white;
}

/* NAVBAR */

header {
  display: flex;
  justify-content: space-between;
  padding: 20px 10%;
  background: #020617;
  position: sticky;
  top: 0;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

nav a {
  margin-left: 20px;
  color: #38bdf8;
  text-decoration: none;
}

/* HERO */

.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0ea5e9, #9333ea);
  text-align: center;
}

.hero h1 {
  font-size: 48px;
}

.hero p {
  margin: 20px 0;
}

.btn {
  background: white;
  color: black;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

/* SECTIONS */

section {
  padding: 80px 10%;
}

h2 {
  margin-bottom: 30px;
  font-size: 32px;
}

/* ABOUT */

.about-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-container img {
  width: 150px;
  border-radius: 50%;
}

/* GRID */

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

.card {
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
  transition: transform .2s;
}

.card:hover {
  transform: translateY(-5px);
}

/* CONTACT */

.socials a {
  margin-right: 15px;
  color: #38bdf8;
  text-decoration: none;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 30px;
  background: #020617;
}
/* MOBILE MENU ICON */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* TABLET & MOBILE */

@media (max-width: 768px) {

  header {
    padding: 15px 5%;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #020617;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  nav a {
    padding: 15px;
    display: block;
    border-top: 1px solid #1e293b;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  /* HERO */

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  /* ABOUT STACK */

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  /* SECTIONS */

  section {
    padding: 60px 5%;
  }

  h2 {
    font-size: 26px;
  }

  .btn {
    padding: 10px 20px;
  }

}
.hero {
  height: 100vh;
  background: linear-gradient(135deg,#0ea5e9,#9333ea,#ec4899);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 {
  font-size: 56px;
  font-weight: 900;
}

.cta {
  margin-top: 30px;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  margin-left: 10px;
}