@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

/* Section */
.roadmap-section {
    position: relative; /* needed for overlay positioning */
    /* background: radial-gradient(circle at top, #04070d 0%, #020304 100%); */
    padding: 70px 0;
    font-family: "Orbitron", sans-serif;
    /* background-image: url('/images/3c60f32b-3a56-4a25-b1ca-a75e17b3a268.webp'); */
    background-position: center;
    background-size: cover;
    overflow: hidden;
    background-attachment: fixed;
    border-top: 3px solid #37fd48 ;
}

/* Overlay */
/* .roadmap-section::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    pointer-events: none;
    z-index: 1;
} */

/* Make sure content is above overlay */
.roadmap-section > * {
    position: relative;
    z-index: 2;
}


/* Title */
.roadmap-title {
    color: #37fd48;
    font-size: 2.6rem;
    text-shadow: 0 0 12px rgba(55,253,72,0.8);
    letter-spacing: 2px;
}

/* Timeline Base */
.timeline {
    position: relative;
    margin: 0 auto;
    padding-left: 30px;
    border-left: 2px solid rgba(55,253,72,0.4);
}

/* Items */
.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
}

/* Timeline neon nodes */
.timeline-icon {
    position: absolute;
    left: -20px;
    top: 0;
    background: #000;
    border: 2px solid #37fd48;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow:
        0 0 18px #37fd48,
        inset 0 0 12px rgba(55,253,72,0.4);
}

.timeline-icon i {
    color: #37fd48;
    font-size: 1.2rem;
    text-shadow: 0 0 10px #37fd48;
}

/* Content Card */
.timeline-content {
    padding: 22px 25px;
    background: rgba(0, 18, 8, 0.75);
    border: 1px solid rgba(55,253,72,0.45);
    border-radius: 14px;

    box-shadow:
        0 0 22px rgba(55,253,72,0.25),
        inset 0 0 14px rgba(55,253,72,0.2);

    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.timeline-content:hover {
    box-shadow:
        0 0 40px rgba(55,253,72,0.45),
        inset 0 0 18px rgba(55,253,72,0.3);
    transform: translateX(6px);
}

/* Headings */
.timeline-content h3 {
    color: #37fd48;
    font-size: 1.25rem;
    margin-bottom: 12px;
    text-shadow: 0 0 6px rgba(55,253,72,0.6);
}

/* List */
.timeline-content ul {
    margin: 0;
    padding-left: 20px;
}

.timeline-content ul li {
    color: #c7ffdc;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline {
        padding-left: 25px;
    }
    .timeline-item {
        margin-bottom: 45px;
    }
}
