 .process {
    padding-top: 50px;
    background: url(../images/svg/process-bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
 
 .main-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .main-title .highlight {
            color: #4ecdc4;
        }

        .subtitle {
            color: #b8c6db;
            font-size: 1.1rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
            line-height: 1.6;
        }

        .process-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .timeline-line {
            position: absolute;
            width: 2px;
            top: 190px;
            bottom: 100px;
            left: 49%;
            transform: translateX(-50%);
            z-index: 1;
        }

        .timeline-line img{
            height:90%;
        }

        /* .timeline-line::before {
            content: '';
            position: absolute;
            width: 2px;
            height: 100%;
            background: repeating-linear-gradient(
                to bottom,
                transparent,
                transparent 10px,
                #4ecdc4 10px,
                #4ecdc4 20px
            );
            opacity: 0.7;
        } */

        .process-step {
            position: relative;
            display: flex;
            align-items: center;
            margin-bottom: 6rem;
            min-height: 120px;
        }

        .process-step:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .step-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a2e;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            z-index: 10;
        }

        .step-content {
            flex: 1;
            max-width: 500px;
            padding: 0;
        }

        .step-content.left {
            text-align: right;
            padding-right: 4rem;
        }

        .step-content.right {
            text-align: left;
            padding-left: 4rem;
        }

        .process-step img{
            width:80px;
            margin-bottom:30px;
        }

        .step-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.8rem;
        }

        .process-step p {
            color: #b8c6db;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .step-content.left .step-description {
            margin-left: auto;
        }

        /* Custom Icons */
        .icon-wifi::before {
            content: "📶";
        }

        .icon-chat::before {
            content: "💬";
        }

        .icon-code::before {
            content: "💻";
        }

        .icon-users::before {
            content: "👥";
        }

        .icon-award::before {
            content: "🏆";
        }

        @media (max-width: 992px) {
            .main-title {
                font-size: 2.8rem;
            }

            .process-step {
                margin-bottom: 4rem;
            }

            .step-content.left,
            .step-content.right {
                padding-left: 3rem;
                padding-right: 3rem;
            }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2.2rem;
            }

            .subtitle {
                font-size: 1rem;
                margin-bottom: 3rem;
            }

            .timeline-line {
                left: 60px;
            }

            .process-step {
                flex-direction: row !important;
                margin-bottom: 3rem;
            }

            .step-number {
                left: 30px;
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }

            .step-content {
                max-width: none;
                text-align: left !important;
                padding-left: 5rem !important;
                padding-right: 1rem !important;
            }

            .step-description {
                max-width: none;
                margin-left: 0 !important;
            }

            .step-icon {
                font-size: 2.5rem;
            }
            .timeline-line img {
            display: none;
            }
        }

        @media (max-width: 576px) {
            .main-title {
                font-size: 1.8rem;
            }

            .subtitle {
                font-size: 0.9rem;
            }

            .timeline-line {
                left: 40px;
            }

            .step-number {
                left: 20px;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .step-content {
                padding-left: 4rem !important;
            }

            .step-title {
                font-size: 1.2rem;
            }

            .step-description {
                font-size: 0.85rem;
            }
        }


       /* ====================================job-listing========================================  */
         .description {
            text-align: center;
            font-size: 1.1rem;
            color: #b0bec5;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
       .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

       .filter-btn {
    position: relative;
    padding: 12px 30px;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(90deg, #e2e2e2, #040427); /* replace with your desired gradient */
    border-radius: 25px;
    z-index: -1;
}

.filter-btn::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #0a082e; /* match this with your page background */
    border-radius: 23px;
    z-index: -1;
}

        .filter-btn.active::after {
            background: linear-gradient(45deg, #7c4dff, rgb(0, 191, 255));
            border-color: #7c4dff;
            box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
        }

        .job-card {
            background:url('../images/svg/job-bg.svg'), linear-gradient(135deg, #040427, #05001c);
            background-size: cover;
            background-position: center;
            border: 1px solid rgba(124, 77, 255, 0.3);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(124, 77, 255, 0.3);
            border-color: rgba(124, 77, 255, 0.6);
        }

        .job-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .job-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
        }

        .job-category {
            background: linear-gradient(45deg, #3f51b5, #2196f3);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .job-meta {
            display: flex;
            gap: 25px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #b0bec5;
            font-size: 0.95rem;
        }

        .job-meta-item i {
            color: #64b5f6;
        }

        .job-description {
            color: #cfd8dc;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }

        .tech-tag {
            background: rgba(63, 81, 181, 0.3);
            color: #90caf9;
            padding: 6px 14px;
            border-radius: 15px;
            font-size: 0.85rem;
            border: 1px solid rgba(63, 81, 181, 0.5);
        }

       

        .hidden {
            display: none;
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2.2rem;
            }
            
            .filter-tabs {
                gap: 10px;
            }
            
            .filter-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .job-card {
                padding: 20px;
            }
            
            .job-header {
                flex-direction: column;
                gap: 15px;
            }
            
            .job-meta {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (max-width: 576px) {
            .main-title {
                font-size: 1.8rem;
            }
            
            .description {
                font-size: 1rem;
            }
            
            .tech-stack {
                gap: 8px;
            }
            
            .tech-tag {
                font-size: 0.8rem;
                padding: 5px 12px;
            }
        }

