
.working-process-section{
	position: relative;
}

.working-process-section .inner-container{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.working-block-one .inner-box{
	position: relative;
	max-width: 320px;
	padding-right: 0px;
}

.working-block-one .inner-box .count-text{
	position: absolute;
	top: -25px;
	right: -15px;
	z-index: 1;
}

.working-block-one:last-child .inner-box .count-text{
	right: 15px;
}

.working-block-one:last-child .inner-box{
	padding-right: 30px;
}

.working-block-one .inner-box .count-text h3{
	position: relative;
	display: inline-block;
	width: 90px;
	height: 90px;
	text-align: center;
	border-radius: 50%;
	font-size: 22px;
	line-height: 22px;
	font-weight: 600;
	color: #fff;
	padding-top: 23px;
}

.working-block-one .inner-box .count-text h3:before{
	position: absolute;
	content: '';
	width: 120px;
	height: 120px;
	left: -15px;
	top: -15px;
	border-radius: 50%;
}

.working-block-one .inner-box .count-text h3 span{
	display: block;
	font-size: 16px;
	font-weight: 500;
}

.working-block-one .inner-box .text{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
}

.working-block-one .inner-box .shape{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -10%;
	width: 80px;
	height: 19px;
	background-repeat: no-repeat;
}


.working-process-section.alternat-2 .working-block-one .inner-box .text{
	border-radius: 10px;
	padding-top: 30px;
}

.working-process-section.alternat-2 .working-block-one .inner-box .counte-text h3:before{
	border-radius: 30px;
}

.working-process-section.alternat-2 .working-block-one .inner-box .counte-text h3{
	border-radius: 10px;
}

.working-process-section .pattern-layer .pattern-1{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 640px;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
}

.working-process-section .pattern-layer .pattern-2{
	position: absolute;
	right: 0px;
	top: 0px;
	width: 640px;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
}








/* Reduced spacing and tighter layout */
.working-process-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.working-block-one {
  flex: 1;
  padding: 20px 10px;
  position: relative;
  text-align: center;
}

.working-block-one .inner-box {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.working-block-one .text.count-circle {
  margin-bottom: 20px;
}

.working-block-one .inner-box .text .inner h4 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 10px;
}

.working-block-one .inner-box .text .inner p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

/* Layout fix for mobile and desktop */
.inner-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Remove default red background */
.working-block-one .inner-box .text h3 {
  display: block;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 50%;
  padding: 20px;
  color: #fff;
  background: #de2c2c; /* remove any default bg here */
}

/* Step circle base (no red) */
.step-circle {
  font-size: 16px;
  line-height: 1;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  padding: 10px 15px;
  font-weight: bold;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.3s, color 0.3s;
}

/* Animate circle */
@keyframes spinCircle {
  0% {
    transform: translateX(-50%) scale(1) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) scale(1) rotate(360deg);
  }
}

.bg-circle {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  transform: translateX(-50%) scale(0.5);
  opacity: 0;
  z-index: 0;
  transition: all 0.6s ease;
}

/* When step is visible, activate animation */
.working-block-one.visible .bg-circle {
  opacity: 0.2;
  transform: translateX(-50%) scale(1);
  animation: spinCircle 10s linear infinite;
}

/* Step-circle matching color changes when visible */
.working-block-one.visible.step1 .step-circle {
  background-color: #d40000;
  color: #fff;
}
.working-block-one.visible.step2 .step-circle {
  background-color: #222843;
  color: #fff;
}
.working-block-one.visible.step3 .step-circle {
  background-color: #000000;
  color: #fff;
}
.working-block-one.visible.step4 .step-circle {
  background-color: #a4a4a4;
  color: #fff;
}





.working-block-one.visible.step1 .step-circle:hover {
  background-color: #d40000;
  color: #fff;
}
.working-block-one.visible.step2 .step-circle:hover {
  background-color: #d40000;
  color: #fff;
}
.working-block-one.visible.step3 .step-circle:hover {
  background-color: #d40000;
  color: #fff;
}
.working-block-one.visible.step4 .step-circle:hover {
  background-color: #d40000;
  color: #fff;
}












