* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}


  body {
  font-family: 'Inter', sans-serif;
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background: red ;
}



/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  background: rgba(10,15,31,0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  color: #00eaff;
  
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #eaeaea;
  transition: color 0.3s;
}

nav a:hover {
  color: #00eaff;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* HERO */



.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
}

.hero h1 span {
  color: #00eaff;
}

.hero p {
  margin: 20px 0;
  font-size: 18px;
}

.btn {
  padding: 12px 28px;
  background: #00eaff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: transform 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
}

/* SECTIONS */
.section {
  padding: 100px 60px;
  text-align: center;
}

.section.dark {
  background: #050a1a;
}

.section h2 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 25px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 16px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card i {
  font-size: 36px;
  color: #00eaff;
  margin-bottom: 15px;
}

/* STEPS */
.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.step span {
  font-size: 36px;
  color: #00eaff;
}

/* WHY */
.why-list {
  list-style: none;
}

.why-list li {
  margin: 12px 0;
  font-size: 18px;
}

.why-list i {
  color: #00eaff;
  margin-right: 10px;
}

/* FOOTER */
footer {
  padding: 40px;
  background: #020617;
  text-align: center;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #020617;
    flex-direction: column;
    width: 200px;
    display: none;
  }

  nav.show {
    display: flex;
  }

  nav a {
    margin: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .steps {
    flex-direction: column;
  }
}
