.road-map-section .timeline-img {
    max-width: 200px !important;
    /*width: 100%;*/
    height: auto;
}

.road-map-section .table-view {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


@media (max-width: 768px) {
    .road-map-section .table-view {
        flex-direction: column;
    }
}

.road-map-section .detail-timeline h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.road-map-section .map-img {
    border-top-right-radius: 58px;
    border-bottom-left-radius: 58px;
}

.road-map-section .detail-timeline ul li::marker {
    font-size: 1.5em;
    color: #5c93a3;
}

.road-map-section .detail-timeline ul li {
    font-size: 16px;
}

@media (max-width: 1024px) {
/*    .road-map-section .main-time-img {
        display: none;
    }*/

    .road-map-section .main-line {
        width: 100%;
    }

    .road-map-section .map-img {
        object-fit: cover;
        max-width: 600px;
        width: 100%;
        height: auto;
    }

    .road-map-section .blank {
        padding: 0;
    }
}

/* .journey {
    background-image: url("../images/banner-1.jpg");
    background-color: rgb(240, 250, 255);
    max-height: 440px;
    min-height: 380px;
    background-position: right;
    background-repeat: no-repeat;
    background-size: 50%;
    position: relative;
    width: 100%;
    display: block;
    border-top-right-radius: 58px; border-bottom-left-radius: 58px;
}

.journey .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    background: rgb(240, 250, 255);
    background: linear-gradient(90deg, rgba(240, 250, 255, 1) 58.8%, rgba(240, 250, 255, 0) 68.6%);
    z-index: 1;
    border-bottom-left-radius: 58px;
}

.journey .container {
    position: relative;
    z-index: 2;
}
.journey h2{font-weight: 300;}
.journey h2 span{font-weight: 600;} */


/*.road-map-section p.blank {
    padding: 34px 0 !important;
}*/

@media (max-width: 1024px) {
    .small-screen.road-map-section{display: block !important;}
    .road-map-section{display: none !important;}
    .road-map-section .map-img {margin-bottom: 38px !important;}
}



@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .main-time-img img {
        max-width: 184px !important;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
    .main-time-img img {
        max-width: 160px !important;
    }
}

.section-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.main-time-img {
    position: relative;
}

.main-time-img img {
    max-width: 168px;
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 1%);
}

@media (max-width: 1024px) {
    .main-time-img {
        display: none;
    }
}

/* ============================================================
   ROADMAP PREMIUM ENHANCEMENTS 2.0
   (Snake Spine, Step Nodes, Glowing Orb, Shimmer, Parallax)
   ============================================================ */

/* --- SVG Snake Spine --- */
.road-map-section {
    position: relative;
}

.timeline-snake {
    position: absolute;
    left: 50%;
    top: 0;
    width: 60px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

.snake-track {
    stroke: rgba(27, 57, 66, 0.12);
}

.snake-fill {
    transition: stroke-dashoffset 0.15s linear;
}

/* --- Glowing Head Orb --- */
.snake-orb {
    filter: drop-shadow(0 0 6px rgba(230, 140, 18, 0.8));
    animation: orbPulse 2s ease-in-out infinite;
    transition: transform 0.15s linear;
    transform-box: fill-box;
    transform-origin: center;
}

@keyframes orbPulse {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(230, 140, 18, 0.6)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 10px rgba(230, 140, 18, 1)); transform: scale(1.15); }
}

/* --- Shimmer Sweep --- */
.snake-shimmer {
    animation: shimmerSlide 4s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0% { stroke-dashoffset: 3000; opacity: 0; }
    10% { opacity: 1; }
    40% { stroke-dashoffset: 0; opacity: 1; }
    50% { opacity: 0; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

/* --- HTML Step Nodes (positioned dynamically by JS) --- */
.snake-nodes-layer {
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    height: 100%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.snake-node-wrap {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.snake-node-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(27, 57, 66, 0.2);
    color: #1B3942;
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.snake-node-wrap.is-active .snake-node-badge {
    background: #e68c12;
    border-color: #e68c12;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(230, 140, 18, 0.5);
    transform: scale(1.15);
}

/* --- Image Hover Micro-interactions --- */
.map-img {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    will-change: transform;
}

.row:hover .map-img {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(27, 57, 66, 0.12);
}

/* Hide the old static PNG timeline */
.main-time-img {
    display: none;
}

/* --- Parallax Spine --- */
.timeline-snake {
    will-change: transform;
}

/* --- Mobile Adjustments --- */
@media (max-width: 1024px) {
    .timeline-snake {
        left: 24px;
        transform: translateX(0);
        width: 40px;
    }
    .snake-nodes-layer {
        left: 24px;
        transform: translateX(0);
    }
    .snake-node-badge {
        width: 26px;
        height: 26px;
        font-size: 8px;
    }
    .road-map-section {
        padding-left: 16px;
    }
}

/* --- SEO Roadmap Hub --- */
.roadmap-seo-content {
    padding: 82px 0 70px;
    background: #ffffff;
}

.roadmap-seo-content .container {
    max-width: 1120px;
}

.roadmap-seo-intro {
    max-width: 840px;
    margin: 0 auto 32px;
    text-align: center;
}

.roadmap-eyebrow {
    margin: 0 0 10px;
    color: #e68c12;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.roadmap-seo-intro h2,
.roadmap-seo-block h3,
.roadmap-cta-panel h3 {
    color: #0f172a;
    font-weight: 800;
    line-height: 1.25;
}

.roadmap-seo-intro h2 {
    margin: 0 0 18px;
    font-size: 34px;
}

.roadmap-seo-intro p,
.roadmap-seo-block p,
.roadmap-seo-block li,
.roadmap-summary-grid p,
.roadmap-cta-panel p {
    color: #334155;
    font-size: 16px;
    line-height: 1.8;
}

.roadmap-summary-grid,
.roadmap-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.roadmap-summary-grid {
    margin-bottom: 30px;
}

.roadmap-summary-grid > div,
.roadmap-seo-block {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
}

.roadmap-summary-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #1b3942;
    font-size: 17px;
}

.roadmap-seo-block {
    margin-bottom: 24px;
}

.roadmap-seo-block h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.roadmap-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.roadmap-compare-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 15px;
}

.roadmap-compare-table th,
.roadmap-compare-table td {
    padding: 14px;
    border: 1px solid #dbe4ee;
    vertical-align: top;
}

.roadmap-compare-table th {
    background: #f1f7f8;
    color: #0f172a;
    font-weight: 800;
}

.roadmap-step-list,
.roadmap-check-list {
    margin: 0;
    padding-left: 22px;
}

.roadmap-step-list li,
.roadmap-check-list li {
    margin-bottom: 10px;
}

.roadmap-link-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.roadmap-link-grid a {
    display: block;
    padding: 13px 14px;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f3460;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.roadmap-link-grid a:hover {
    border-color: #e68c12;
    transform: translateY(-2px);
}

.roadmap-cta-panel {
    margin: 32px 0 24px;
    padding: 30px;
    border-radius: 8px;
    background: #0f172a;
    text-align: center;
}

.roadmap-cta-panel h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 26px;
}

.roadmap-cta-panel p {
    max-width: 680px;
    margin: 0 auto 22px;
    color: #dbe4ee;
}

.roadmap-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.roadmap-cta-actions button,
.roadmap-cta-actions a {
    min-width: 210px;
    border: 0;
    border-radius: 6px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.roadmap-cta-actions button {
    background: #e68c12;
    color: #ffffff;
    cursor: pointer;
}

.roadmap-cta-actions a {
    background: #25D366;
    color: #ffffff;
}

.roadmap-faq-block h4 {
    margin: 20px 0 8px;
    color: #1b3942;
    font-size: 18px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .roadmap-summary-grid,
    .roadmap-link-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-seo-content {
        padding: 56px 0 48px;
    }

    .roadmap-seo-intro h2 {
        font-size: 26px;
    }

    .roadmap-seo-block,
    .roadmap-summary-grid > div,
    .roadmap-cta-panel {
        padding: 20px;
    }
}

/* --- SEO Roadmap Hub typography refresh --- */
.roadmap-seo-content {
    padding: 92px 0 78px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 46%, #ffffff 100%);
}

.roadmap-seo-content .container {
    max-width: 1080px;
}

.roadmap-seo-intro {
    max-width: 900px;
    margin: 0 auto 46px;
    padding: 0 0 0 28px;
    border-left: 5px solid #e68c12;
    text-align: left;
}

.roadmap-eyebrow {
    margin-bottom: 12px;
    color: #0f3460;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.roadmap-seo-intro h2 {
    max-width: 820px;
    margin-bottom: 18px;
    color: #0f172a;
    font-size: 38px;
    line-height: 1.18;
}

.roadmap-seo-intro p {
    max-width: 820px;
    color: #334155;
    font-size: 18px;
    line-height: 1.75;
}

.roadmap-summary-grid {
    max-width: 980px;
    margin: 0 auto 42px;
    gap: 18px;
}

.roadmap-summary-grid > div {
    padding: 24px 22px;
    border: 1px solid #dbe4ee;
    border-top: 4px solid #e68c12;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.roadmap-summary-grid strong {
    color: #0f172a;
    font-size: 18px;
    line-height: 1.35;
}

.roadmap-summary-grid p {
    margin-bottom: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.roadmap-seo-block {
    max-width: 900px;
    margin: 0 auto 38px;
    padding: 0 0 34px;
    border: 0;
    border-bottom: 1px solid #dbe4ee;
    border-radius: 0;
    background: transparent;
}

.roadmap-seo-block h3 {
    position: relative;
    margin: 0 0 18px;
    padding-left: 18px;
    color: #0f172a;
    font-size: 27px;
    line-height: 1.25;
}

.roadmap-seo-block h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 28px;
    border-radius: 999px;
    background: #e68c12;
}

.roadmap-seo-block p,
.roadmap-seo-block li {
    color: #334155;
    font-size: 17px;
    line-height: 1.78;
}

.roadmap-seo-block p {
    margin-bottom: 16px;
}

.roadmap-step-list,
.roadmap-check-list {
    padding-left: 24px;
}

.roadmap-step-list li,
.roadmap-check-list li {
    margin-bottom: 12px;
    padding-left: 4px;
}

.roadmap-step-list li::marker,
.roadmap-check-list li::marker {
    color: #e68c12;
    font-weight: 800;
}

.roadmap-table-wrap {
    margin-top: 20px;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.roadmap-compare-table {
    margin: 0;
    background: #ffffff;
}

.roadmap-compare-table th {
    padding: 16px;
    background: #0f3460;
    color: #ffffff;
    font-size: 15px;
}

.roadmap-compare-table td {
    padding: 16px;
    color: #334155;
    font-size: 15px;
    line-height: 1.65;
}

.roadmap-compare-table tbody tr:nth-child(even) td {
    background: #f8fafc;
}

.roadmap-link-grid {
    gap: 12px;
}

.roadmap-link-grid a {
    min-height: 54px;
    display: flex;
    align-items: center;
    border-color: #dbe4ee;
    background: #ffffff;
    color: #0f3460;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.roadmap-cta-panel {
    max-width: 900px;
    margin: 42px auto 38px;
    padding: 34px 28px;
    border-radius: 8px;
    background: #123744;
    box-shadow: 0 18px 38px rgba(15, 47, 59, 0.18);
}

.roadmap-cta-panel h3 {
    margin-bottom: 12px;
    color: #ffffff !important;
    font-size: 30px;
    line-height: 1.25;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.roadmap-cta-panel p {
    max-width: 640px;
    color: #eef7f9 !important;
    font-size: 16px;
    line-height: 1.7;
}

.roadmap-cta-actions button,
.roadmap-cta-actions a {
    border-radius: 6px;
}

.roadmap-faq-block {
    border-bottom: 0;
}

.roadmap-faq-block h4 {
    margin: 18px 0 0;
    padding: 16px 18px;
    border: 1px solid #dbe4ee;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: #f8fafc;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.35;
}

.roadmap-faq-block h4 + p {
    margin: 0 0 14px;
    padding: 16px 18px;
    border: 1px solid #dbe4ee;
    border-radius: 0 0 8px 8px;
    background: #ffffff;
}

@media (max-width: 900px) {
    .roadmap-seo-content {
        padding: 60px 0 54px;
    }

    .roadmap-seo-intro {
        margin-bottom: 34px;
        padding-left: 18px;
        border-left-width: 4px;
    }

    .roadmap-seo-intro h2 {
        font-size: 28px;
    }

    .roadmap-seo-intro p,
    .roadmap-seo-block p,
    .roadmap-seo-block li {
        font-size: 16px;
    }

    .roadmap-seo-block h3 {
        font-size: 23px;
    }

    .roadmap-summary-grid > div,
    .roadmap-cta-panel {
        padding: 20px;
    }

    .roadmap-cta-actions button,
    .roadmap-cta-actions a {
        width: 100%;
        min-width: 0;
    }
}
