* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #278957;
  color: white;
}
/* nav on here  */
.navbar {
  background: black;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.navbar .logo {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
}

.navbar nav {
  margin-left: auto;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #ffcc00;
}

.navbar button {
  background: linear-gradient(45deg, #ff7300, #ffcc00);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.navbar button:hover {
  background: linear-gradient(45deg, #ffcc00, #ff7300);
  transform: scale(1.1);
}


.timeline {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto;
  position: relative;
}

.timeline-entry {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
  position: relative;
}

.timeline-entry:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-entry .content {
  width: 45%;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.timeline-entry h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #ffcc00;
  transform: translateX(-50%);
}

.timeline-entry::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #ffcc00;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
}