/* ================================
   DevOps Process Flow – Styles
================================ */

.wp-block-bloom-devops-process-flow .editor-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.wp-block-bloom-devops-process-flow .editor-box {
    background: #f7f9fc;
    padding: 12px;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
}


.devflow-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px 20px;
}


.devflow-head {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}
.devflow-head h2 {
	font-family: ProximaNova-Bold;
}
.flow-subheading {
	max-width: 720px;
	margin: 0 auto 40px;
	color: #000;
}
.flow-item h4 {
	font-weight: 600;
	font-size: 20px;
	text-align: center;
	font-family: ProximaNova-semibold;
	margin-bottom: 10px;
	color: #000;
	line-height: 1.3;
}

.flow-row.flow-row-bottom {
	display: grid;
	gap: 60px;
	position: relative;
	/* flex-direction: row-reverse; */
	width: 100%;
	direction: rtl;
}

.bloom-devops-flow {
	background: linear-gradient(180deg, #FFFFFF 0%, #E8F1FF 100%);
}
/* Tablet */
@media (max-width: 1200px) {
    .wp-block-bloom-devops-process-flow .editor-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .wp-block-bloom-devops-process-flow .editor-steps-grid {
        grid-template-columns: 1fr;
    }
}

.flow-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
}

/* ===============================
   FLOW ITEM
================================ */
.flow-item {
    position: relative;
    text-align: center;
}

/* ===============================
   CIRCLE
================================ */
.flow-circle {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

/* ===============================
   NUMBER BADGE
================================ */
.flow-num {
	display: inline-block;
	background: #fff;
	padding: 4px 8px;
	font-size: 13px;
	border-radius: 4px;
	position: absolute;
	right: -24px;
	box-shadow: 0px 4px 4px 0px #00000040;
	color: #868686;
}

/* ===============================
   HORIZONTAL CONNECTORS (TOP)
================================ */
.flow-row-top .flow-line-right {
	position: absolute;
	top: 58px;
	left: calc(50% + 80px);
	width: calc(100% - 50px);
	height: 2px;
	background: #000;
}
/* ===============================
   HORIZONTAL CONNECTORS (BOTTOM)
================================ */
.flow-row-bottom .flow-line-left {
	position: absolute;
	top: 57px;
	right: calc(50% + 70px);
	width: calc(100% - 57px);
	height: 2px;
	background: #000;
}

/* ===============================
   CENTER VERTICAL CONNECTOR
================================ */
.flow-center-line {
	width: 2px;
	height: 80px;
	background: #000;
	margin: 20px 0px 20px 89%;
}


.flow-item.flow-item-4 .flow-num {
	position: absolute;
	bottom: unset;
	left: unset;
	width: 34px;
}

/* TOP ROW: last item ke baad line nahi */
.flow-row-top .flow-item:last-child .flow-line-right {
    display: none;
}


.flow-row.flow-row-bottom .flow-num {

	right: 120px;
}


body .slick-prev.slick-arrow::before, body .slick-next.slick-arrow::before {
	color: #000;
	opacity: 1;
	text-shadow: 0 6px 8px rgba(0,0,0,.8);
}
/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
   .flow-item.flow-item-4 .flow-num {
	position: absolute;
	bottom: unset; 
	left: unset; 
	 width: unset; 
}

}


/* Arrow base */
.swiper-btn-prev, .swiper-btn-next {
	width: 20px;
	height: 20px;
	background: #000;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
	transition: all 0.25s ease;
	box-shadow: 0 6px 8px rgba(0,0,0,.8);
}
/* Left / Right position */
.swiper-btn-prev { left: 3px; }
.swiper-btn-next { right: 3px; }

/* Arrow icon */
.swiper-btn-prev::before,
.swiper-btn-next::before {
  content: '';
  width: 8px;
  height: 8px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
}

.swiper-btn-prev::before {
  transform: rotate(135deg);
}

.swiper-btn-next::before {
  transform: rotate(-45deg);
}




@media (max-width: 768px) {
   .bloom-devops-flow .swiper-btn-prev, .swiper-btn-next {
	display: none;
   }

}