

        .medeed-vision-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px 0;
        }

        .vision-content {
            text-align: center;
        }

        .vision-subtitle {
            color: #6c757d;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 2px;
            margin-bottom: 20px;
            display: block;
        }

        .vision-title {
            color: #2c3e50;
            font-size: 1.1rem;
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .vision-divider {
            width: 40px;
            height: 1px;
            background: #95a5a6;
            margin: 0 auto 15px auto;
        }

        .vision-description {
            color: #7f8c8d;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }
    


        :root {
            --tlprimary: #b5b5b5;
            --tlprimary-light: #c8c8c8;
            --tlprimary-dark: #7e7e7e;
            --tlsecondary: #64748b;
            --tllight: #f8fafc;
            --tldark: #1e293b;
            --success: #10b981;
            --border: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }



        .medeed-roadmap-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
            position: relative;
        }

        .page-single {
            margin-bottom: 30px;
        }

        .page-content {
            text-align: center;
        }

        .title-underline {
            position: relative;
            padding-bottom: 20px;
            font-size: 20px;
            font-weight: 600;
            color: var(--tldark);
            letter-spacing: -0.5px;
        }

            .title-underline::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background: linear-gradient(to right, #3b82f6, #60a5fa);
                border-radius: 2px;
            }

        .medeed-roadmap-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Modern Timeline Line */
        .timeline-line {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--tlprimary);
            z-index: 1;
        }

        /* Phase Styles */
        .medeed-phase {
            position: relative;
            margin-bottom: 40px;
            padding-left: 40px;
            z-index: 2;
        }

        .phase-content {
            background: white;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }

        .medeed-phase:hover .phase-content {
            transform: translateX(5px);
            box-shadow: var(--shadow-lg);
        }

        .phase-number {
            position: absolute;
            left: -55px;
            top: 30px;
            width: 40px;
            height: 40px;
            background: var(--tlprimary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            z-index: 3;
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
            border-radius: 50%;
        }

            .phase-number::before {
                content: '';
                position: absolute;
                top: 50%;
                right: -8px;
                transform: translateY(-50%);
                width: 0;
                height: 0;
                border-top: 8px solid transparent;
                border-bottom: 8px solid transparent;
                border-left: 8px solid var(--tlprimary);
            }

        .phase-connector {
            position: absolute;
            left: -12px;
            top: 80px;
            color: var(--tlprimary);
            font-size: 16px;
            z-index: 3;
            background: white;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
            animation: pulse 2s infinite;
            border-radius: 50%;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .phase-content-inner {
            display: flex;
            min-height: 180px;
        }

        /* Zigzag layout for images */
        .medeed-phase:nth-child(odd) .phase-content-inner {
            flex-direction: row;
        }

        .medeed-phase:nth-child(even) .phase-content-inner {
            flex-direction: row-reverse;
        }

        .phase-text {
            flex: 1;
            padding: 25px;
        }

            .phase-text h3 {
                font-size: 18px;
                font-weight: 600;
                color: var(--tldark);
                margin-bottom: 15px;
                position: relative;
                padding-bottom: 10px;
            }

                .phase-text h3::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 45px;
                    height: 1px;
                    background: var(--tlprimary);
                }

        .phase-details {
            color: var(--tlsecondary);
        }

            .phase-details p {
                margin-bottom: 12px;
                font-size: 14px;
                text-align: justify;
            }

            .phase-details ul {
                padding-left: 18px;
                margin-bottom: 12px;
            }

            .phase-details li {
                margin-bottom: 6px;
                position: relative;
                font-size: 14px;
            }

                .phase-details li::marker {
                    color: var(--tlprimary);
                }

        .phase-image {
            flex: 0 0 200px;
            position: relative;
            overflow: hidden;
        }

            .phase-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }

        .medeed-phase:hover .phase-image img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.08), transparent);
        }

        /* Progress Steps */
        .progress-step {
            position: absolute;
            left: -6px;
            width: 12px;
            height: 12px;
            background: var(--tlprimary);
            z-index: 2;
            border-radius: 50%;
        }

        .medeed-phase:nth-child(1) .progress-step {
            top: 45px;
        }

        .medeed-phase:nth-child(2) .progress-step {
            top: 45px;
        }

        .medeed-phase:nth-child(3) .progress-step {
            top: 45px;
        }

        .medeed-phase:nth-child(4) .progress-step {
            top: 45px;
        }

        .medeed-phase:nth-child(5) .progress-step {
            top: 45px;
        }

        .medeed-phase:nth-child(6) .progress-step {
            top: 45px;
        }

        .medeed-phase:nth-child(7) .progress-step {
            top: 45px;
        }

        .medeed-phase:nth-child(8) .progress-step {
            top: 45px;
        }

        .medeed-phase:nth-child(9) .progress-step {
            top: 45px;
        }

        .medeed-phase:nth-child(10) .progress-step {
            top: 45px;
        }

        /* Shape Mockup */
        .shape-mockup {
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0.1;
        }

            .shape-mockup img {
                width: 300px;
                height: auto;
            }

        /* Responsive Design */
        @media (max-width: 768px) {
            .medeed-roadmap-container {
                padding: 40px 15px;
            }

            .title-underline {
                font-size: 28px;
            }

            .medeed-phase {
                padding-left: 50px;
                margin-bottom: 30px;
            }

            .phase-number {
                left: -35px;
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .phase-connector {
                left: -15px;
                width: 20px;
                height: 20px;
                font-size: 12px;
                color: var(--tlprimary-dark);
            }

            .phase-content-inner {
                flex-direction: column !important;
            }

            .phase-image {
                flex: 0 0 150px;
            }

            .phase-text {
                padding: 20px;
            }
        }
    