.roadmap{
  background-image:url('/images/roadmap-bg.png') ;
  background-position: center;
  background-size: cover;
}


/* Section Title */
.section-title {
     font-family: 'Press Start 2P', cursive;
  font-size: 2.5rem;
  color: #000 !important;
  text-shadow: 2px 2px #fff;
}

.roadmap-card {
  position: relative;
  border: 3px solid #000;
  border-radius: 20px;
  color: #fff;
  text-align: left;
  box-shadow: 6px 6px 0px #000 ;
  background-image: url('/images/roadmap-card.png') !important;
  background-size: contain;
  background-position: center;
  overflow: hidden; /* ensures overlay stays inside */
  transition: transform 0.2s ease, background 0.3s ease;
}

.roadmap-card:hover {
  transform: scale(1.05) !important;
}

/* Overlay */
.roadmap-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2); /* white overlay (adjust opacity/color) */
  z-index: 1;
}

/* Ensure card content stays above overlay */
.roadmap-card > * {
  position: relative;
  z-index: 2;
}


/* Different background images for each card */
.phase-1 {
  background-image: url("images/bg-phase1.png");
}

.phase-2 {
  background-image: url("images/bg-phase2.png");
}

.phase-3 {
  background-image: url("images/bg-phase3.png");
}

/* Phase Title */
.phase-title {
     font-family: 'Press Start 2P', cursive;
  font-size: 1.8rem;
  text-shadow: 2px 2px #fff;
  color: #000 !important;
}

/* Roadmap Icons */
.roadmap-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
