.process-steps-container-2773 {
	padding: 40px 20px;
	border-radius: 8px;
}

.process-steps-grid-2773 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	gap: 20px;
}

.process-steps-line-2773 {
    position: absolute;
    top: 25px; /* Adjust based on icon size */
    left: 16.66%; /* roughly center of first column */
    right: 16.66%; /* roughly center of last column */
    height: 0;
    border-top: 1px dashed #ccc; /* Updated to 1px */
    z-index: 1;
}

.process-steps-arrow-2773 {
    position: absolute;
    top: -10px; /* Adjust for 1px line */
    left: 0;
    font-size: 20px;
    line-height: 1;
    color: #ccc;
    animation: moveArrowDesktop-2773 6s linear infinite;
}

/* Arrow moves from 0 to 100% over 6 seconds */
@keyframes moveArrowDesktop-2773 {
    0% { left: 0; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}


.process-step-2773 {
	flex: 1;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
    z-index: 2;
}

.step-icon-wrapper-2773 {
	position: relative;
	z-index: 2;
	background: transparent;
	padding: 0 10px;
	margin-bottom: 20px;
}

.step-number-2773 {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #000;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	box-shadow: 0px 0px 0px 1px var(--primary_color);
    border: 3px solid var(--white);
    background-clip: padding-box;
    transition: all 0.3s ease;
    position: relative;
}

/* Ripple effect pseudo-element */
.step-number-2773::after {
    content: '';
    position: absolute;
    top: -3px; /* Account for the 3px border */
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid var(--primary_color);
    opacity: 0;
    pointer-events: none;
}

.process-step-2773:nth-child(2) .step-number-2773::after {
    animation: activeRipple1-2773 6s infinite;
}
.process-step-2773:nth-child(3) .step-number-2773::after {
    animation: activeRipple2-2773 6s infinite;
}
.process-step-2773:nth-child(4) .step-number-2773::after {
    animation: activeRipple3-2773 6s infinite;
}

/* Step 1 active while arrow travels from 0 to 50% */
@keyframes activeRipple1-2773 {
    0% { transform: scale(1); opacity: 0.8; border-width: 2px; }
    25% { transform: scale(1.4); opacity: 0; border-width: 0px; }
    50% { transform: scale(1); opacity: 0; border-width: 0px; }
    100% { transform: scale(1); opacity: 0; border-width: 0px; }
}

/* Step 2 active while arrow travels from 50% to 100% */
@keyframes activeRipple2-2773 {
    0%, 49% { transform: scale(1); opacity: 0; border-width: 0px; }
    50% { transform: scale(1); opacity: 0.8; border-width: 2px; }
    75% { transform: scale(1.4); opacity: 0; border-width: 0px; }
    100% { transform: scale(1); opacity: 0; border-width: 0px; }
}

/* Step 3 active right at the end (e.g. 90% to 100%) as arrow arrives */
@keyframes activeRipple3-2773 {
    0%, 89% { transform: scale(1); opacity: 0; border-width: 0px; }
    90% { transform: scale(1); opacity: 0.8; border-width: 2px; }
    100% { transform: scale(1.4); opacity: 0; border-width: 0px; }
}

.step-title-2773 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 600;
}

.step-desc-2773 {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

@media (min-width: 768px) {
    .step-desc-2773 {
        padding: 0px 30px;
        text-wrap: balance;
    }
}

/* Mobile Layout */
@media (max-width: 767px) {
	.process-steps-grid-2773 {
		flex-direction: column;
		gap: 40px;
	}

    .process-steps-line-2773 {
        width: 0;
        height: auto;
        bottom: 50px;
        top: 50px;
        left: 25px; /* Center of the 50px icon */
        right: auto;
        border-top: none;
        border-left: 1px dashed #ccc; /* Updated to 1px */
    }

    .process-steps-arrow-2773 {
        top: 0;
        left: -10px; /* Adjust for 1px line */
        transform: rotate(90deg);
        animation: moveArrowMobile-2773 6s linear infinite;
    }

    @keyframes moveArrowMobile-2773 {
        0% { top: 0; opacity: 0; }
        5% { opacity: 1; }
        95% { opacity: 1; }
        100% { top: 100%; opacity: 0; }
    }

	.process-step-2773 {
		flex-direction: row;
		text-align: left;
		align-items: flex-start;
	}

	.step-icon-wrapper-2773 {
		margin-bottom: 0;
		margin-right: 20px;
		padding: 0;
	}
}