body {
  background-color: #000;
}

.roadmap-section {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.roadmap-section h2 {
  font-size: 2rem;
  color: white;
  font-weight: bold;
}
.roadmap-section h2 span {
  color: #f4b122;
}
.subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.roadmap {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  flex: 1 1 180px;
  text-align: center;
  padding: 1rem;
  position: relative;
  max-width: 200px;
}

.circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  position: relative;
}

/* Colored Circles */
.circle1 { border-color: #9e8fce; }
.circle2 { border-color: #f4d03f; color: #f4d03f; }
.circle3 { border-color: #e74c3c; color: #e74c3c; }
.circle4 { border-color: #1abc9c; color: #1abc9c; }
.circle5 { border-color: #3498db; color: #3498db; }

.step h4 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #febe10;
}
.step p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
}
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #888;
}
/* WhatsApp Button 
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 80px;
  background-color: #25D366;
  color: white;
  border-radius: 30px;
  padding: 10px 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  z-index: 1000;
  margin-right: 15px;
}
.whatsapp-button img {
  width: 24px;
  margin-right: 10px;
}*/



/* Responsive */
@media (max-width: 768px) {
  .roadmap {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 300px;
  }
  .step::after {
    display: none;
  }
}
  
/* choose us */
.about-us {
  background-color: #f4f7fb;
  padding: 3rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #1f2937;
}

.about-us .container {
  max-width: 900px;
  margin: auto;
}

.about-us h2 {
  font-size: 2rem;
  color: #0b2953;
  margin-bottom: 1rem;
}

.about-us h3 {
  color: #f59e0b; /* yellowish highlight */
  margin-top: 2rem;
  font-size: 1.5rem;
}

.about-us .intro {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-us p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-us .features {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.about-us .features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.about-us .features li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0.5rem;
}
