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

body {
  background: #020617;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  position: fixed;
  width: 100%;
  background: rgba(2,6,23,0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1556761175-b413da4baf72") center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(2,6,23,0.85);
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
}

.hero button {
  margin-top: 20px;
  padding: 12px 25px;
  background: #facc15;
  border: none;
  cursor: pointer;
}

/* SECTIONS */
.section {
  padding: 100px 20px;
  text-align: center;
}

/* GLASS */
.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  transition: 0.3s;
}

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

/* TARGET */
.sub-text {
  margin-top: 10px;
  color: #94a3b8;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.target-card {
  transition: 0.3s;
}

.target-card:hover {
  transform: scale(1.05);
}

/* CONTACT */
.contact-box {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 10px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: black;
}

/* ANIMATION */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px) {

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #020617;
    top: 60px;
    right: 0;
    width: 200px;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .contact-box {
    flex-direction: column;
  }
}