* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: radial-gradient(circle at top, #1a0f3a, #0b0f2a 70%);
  color: white;
  padding: 0 80px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.navbar ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar a {
  text-decoration: none;
  color: white;
  opacity: 0.7;
  transition: 0.3s;
}

.navbar li.active,
.navbar a:hover {
  color: #8f2eff;
  opacity: 1;
}

.btn-primary {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(45deg, #8f2eff, #c15bff);
  color: white;
  cursor: pointer;
}

/* HERO */
.hero {
  margin-top: 60px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
}

.hero p {
  margin-top: 10px;
  opacity: 0.7;
}

/* TIMELINE */
.timeline {
  position: relative;
  margin-top: 100px;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(#8f2eff, #c15bff);
}

.timeline-item {
  position: relative;
  margin-bottom: 80px;
}

.dot {
  position: absolute;
  left: -5px;
  width: 25px;
  height: 25px;
  background: #8f2eff;
  border-radius: 50%;
  box-shadow: 0 0 20px #8f2eff;
}

.content {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 30px rgba(143, 46, 255, 0.2);
  transition: 0.3s;
}

.content:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(143, 46, 255, 0.5);
}

.content h3 {
  margin-bottom: 15px;
}

.content ul {
  list-style: disc;
  padding-left: 20px;
  opacity: 0.8;
}

/* CTA */
.ctaAbout {
  margin-top: 120px;
  text-align: center;
}

.btn-secondaryAbout {
  margin-top: 20px;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  background: #6d28d9;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.btn-secondaryAbout:hover {
  background: #8f2eff;
}
