.smart-screening {
    background: #ffffff;
}
.screening-heading {
	font-family: ProximaNova-Bold;
	margin-bottom: 120px;
	color: #000;
	text-align: center;
}
/* Horizontal line */
.screening-line {
    height: 2px;
    background: #3b82f6;
    position: relative;
    margin-bottom: 40px;
}

/* Steps wrapper */
.screening-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* Step */
.screening-step {
    position: relative;
    text-align: center;
}

/* Number circle */
.step-circle {
    width: 48px;
    height: 48px;
    background: #2D94ED;
    color: #fff;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -64px auto 16px;
}

/* Card */
.step-card {
    background: #f8fbff;
    border-radius: 14px;
    padding: 26px 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.step-card h3 {
	margin-bottom: 10px;
	color: #000;
	font-weight: 700;
	font-size: 17px;
	line-height: 128%;
	letter-spacing: 0%;
	font-family: ProximaNova-Bold;
	width: 110px;
	max-width: 100%;
}

.step-card p {
	color: #000;
	font-weight: 400;
	font-size: 16px;
	line-height: 128%;
}

.screening-line {
	position: relative;
	height: 1px;
	background: #2D94ED;
	margin: 0 auto 22px;
}

/* start & end small circle */
.screening-line::before,
.screening-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    transform: translateY(-50%);
}

.screening-line::before {
    left: -4px;
}

.screening-line::after {
    right: -4px;
}




.screening-step {
    position: relative;
    text-align: center;
}
.step-circle {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -84px auto 0;
    position: relative;
    z-index: 2;
}
.step-circle::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	width: 14px;
	height: 14px;
	background: #2D94ED;
	border-radius: 50%;
	transform: translateX(-50%);
}
.step-card {
	border-radius: 14px;
	padding: 26px 20px;
	box-shadow: 0px 4px 4px 0px #00000026;
	background: #F3F8FF;
	text-align: left;
	/* display: flex; */
	/* flex-direction: column; */
	min-height: 280px;
}

.screening-step {
    position: relative;
}

.step-circle::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 22px; /* adjust if needed */
    background: #3b82f6;
    transform: translateX(-50%);
    z-index: 1;
      margin-top: 15px;
}
.step-card {
    margin-top: 36px; 
}
@media (max-width: 768px) {
    .screening-line {
        display: none;
    }

    .step-circle {
        margin-top: 0;
    }

    .step-circle::after {
        display: none;
    }
    .step-circle::before {
        display: none;
    }

    .step-card {
        min-height: unset;
    }

    .screening-heading {
        margin-bottom: 40px;
    }
}






/* Responsive */
@media (max-width: 1024px) {
    .screening-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .screening-steps {
        grid-template-columns: 1fr;
    }

    .screening-line {
        display: none;
    }

    .step-circle {
        margin-top: 0;
    }
}
