
    .sharabesh-process {
        background: linear-gradient(135deg, #0D1B4C 0%, #0a1538 40%, #1B5E20 100%);
        padding: 80px 24px;
        color: white;
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    .sharabesh-process__container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .sharabesh-process__header {
        text-align: center;
        margin-bottom: 60px;
    }

    .sharabesh-process__title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .sharabesh-process__subtitle {
        font-size: 1rem;
        opacity: 0.8;
    }

    /* Timeline Structure */
    .sharabesh-timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
    }

    /* Vertical Line */
    .sharabesh-timeline::after {
        content: '';
        position: absolute;
        width: 2px;
        background: rgba(255, 255, 255, 0.2);
        top: 0; bottom: 0;
        left: 50%;
        margin-left: -1px;
    }

    .timeline-item {
        padding: 10px 40px;
        position: relative;
        width: 50%;
        margin-bottom: 40px;
    }

    .timeline-item.left { left: 0; text-align: right; }
    .timeline-item.right { left: 50%; text-align: left; }

    /* Dot on the line */
    .timeline-dot {
        position: absolute;
        width: 16px;
        height: 16px;
        background: #2ECC71;
        border: 4px solid #0D1B4C;
        border-radius: 50%;
        top: 20px;
        z-index: 1;
    }
    .left .timeline-dot { right: -8px; }
    .right .timeline-dot { left: -8px; }

    .timeline-icon {
        margin-bottom: 15px;
    }
    .timeline-icon img {
        width: 50px;
        height: auto;
    }

    .timeline-content h3 {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: white;
    }

    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
    }

    .timeline-btn {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 20px;
        background: #00D1FF; /* Pop of cyan for the action button */
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.85rem;
        transition: 0.3s;
    }

    .timeline-btn:hover { background: #2ECC71; }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .sharabesh-timeline::after { left: 31px; }
        .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left !important; }
        .timeline-item.right { left: 0; }
        .timeline-dot { left: 23px !important; }
        .sharabesh-process__title { font-size: 1.8rem; }
    }
