/* =========================================================
   Our Approach — Elementor Process Steps Widget
   Default theme: Blue (#2E5AF7) & Yellow (#FFC72C)
   All colors below are overridden live by Elementor Style
   controls; these are safe fallbacks only.
   =======================================================*/

.oaw-wrapper {
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
}
.oaw-wrapper *,
.oaw-wrapper *::before,
.oaw-wrapper *::after {
	box-sizing: border-box;
}

/* ---------- Heading ---------- */
.oaw-heading-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 130px;
	margin: 0 auto 10px;
}
.oaw-heading-ring {
	position: absolute;
	width: 210px;
	height: 210px;
	border: 6px solid #E7ECF6;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.oaw-heading {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.15;
	font-weight: 800;
	font-size: 26px;
	color: #1B2559;
	letter-spacing: 0.5px;
	text-align: center;
}

/* ---------- Steps row ---------- */
.oaw-steps {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding-top: 56px;
	max-width: 100%;
}

.oaw-spine {
	position: absolute;
	top: 0;
	left: 8%;
	right: 8%;
	height: 2px;
	background: #E3E7F1;
	z-index: 0;
}

.oaw-step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 0;
	min-width: 0;
	z-index: 1;
}

/* Zigzag stagger: alternate rows drop down, mirrors the reference deck */
.oaw-layout-zigzag .oaw-step.oaw-pos-bottom {
	margin-top: 96px;
}
.oaw-layout-zigzag .oaw-step.oaw-pos-top {
	margin-top: 0;
}

/* Straight layout: everyone sits on the same line */
.oaw-layout-straight .oaw-step {
	margin-top: 0 !important;
}

/* Connector line from spine down to each icon */
.oaw-connector {
	position: absolute;
	top: -56px;
	left: 50%;
	width: 2px;
	transform: translateX(-50%);
	background: #C9D1E6;
	z-index: 0;
}
.oaw-layout-zigzag .oaw-pos-top .oaw-connector-top {
	height: 56px;
}
.oaw-layout-zigzag .oaw-pos-bottom .oaw-connector-top {
	height: 152px;
}
.oaw-layout-straight .oaw-connector-top {
	height: 56px;
}

/* ---------- Icon circle ---------- */
.oaw-icon-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.oaw-icon-circle {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #2E5AF7, #2E5AF7CC);
	box-shadow: 0 10px 24px rgba(20, 30, 70, 0.18);
	position: relative;
	transition: transform 0.25s ease;
}
.oaw-icon-circle i,
.oaw-icon-circle svg {
	color: #ffffff;
	font-size: 34px;
	line-height: 1;
}

.oaw-step.oaw-color-a .oaw-icon-circle {
	background: linear-gradient(145deg, #2E5AF7, #2E5AF7CC);
}
.oaw-step.oaw-color-b .oaw-icon-circle {
	background: linear-gradient(145deg, #FFC72C, #FFC72CCC);
}
.oaw-step.oaw-color-a .oaw-badge {
	background: #2E5AF7;
}
.oaw-step.oaw-color-b .oaw-badge {
	background: #FFC72C;
}
.oaw-step.oaw-color-a .oaw-connector {
	background: #2E5AF7;
}
.oaw-step.oaw-color-b .oaw-connector {
	background: #FFC72C;
}

.oaw-wrapper .oaw-step:hover .oaw-icon-circle {
	transform: translateY(-4px);
}

/* Scroll-reveal states (progressively enhanced by frontend.js) */
.oaw-step {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}
.oaw-step.oaw-in-view {
	opacity: 1;
	transform: translateY(0);
}
.elementor-editor-active .oaw-step {
	opacity: 1;
	transform: none;
}

.oaw-badge {
	position: absolute;
	top: -6px;
	right: 6px;
	min-width: 24px;
	height: 24px;
	padding: 0 6px;
	border-radius: 50%;
	background: #2E5AF7;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ---------- Step content ---------- */
.oaw-step-content {
	text-align: center;
	max-width: 220px;
	margin: 0 auto;
}
.oaw-step-title {
	font-size: 15px;
	font-weight: 700;
	color: #1B2559;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-bottom: 6px;
}
.oaw-step-desc {
	font-size: 13px;
	line-height: 1.6;
	color: #6B7591;
}

/* ---------- Footer bar ---------- */
.oaw-footer {
	margin-top: 60px;
	background-color: #F2F4F8;
	color: #1B2559;
	text-align: center;
	font-size: 28px;
	font-weight: 500;
	padding: 26px 20px;
}

/* =========================================================
   RESPONSIVE
   =======================================================*/

/* Tablet: collapse stagger, tighten gaps, keep row layout */
@media (max-width: 1024px) {
	.oaw-layout-zigzag .oaw-step.oaw-pos-bottom {
		margin-top: 60px;
	}
	.oaw-layout-zigzag .oaw-pos-bottom .oaw-connector-top {
		height: 116px;
	}
	.oaw-step-content {
		max-width: 160px;
	}
	.oaw-footer {
		font-size: 22px;
	}
}

/* Small tablet / large mobile: wrap into two rows */
@media (max-width: 767px) {
	.oaw-steps {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 40px;
		padding-top: 40px;
	}
	.oaw-spine {
		display: none;
	}
	.oaw-step,
	.oaw-layout-zigzag .oaw-step.oaw-pos-bottom,
	.oaw-layout-zigzag .oaw-step.oaw-pos-top {
		margin-top: 0 !important;
		flex: 0 0 45%;
		max-width: 45%;
	}
	.oaw-connector {
		display: none;
	}
	.oaw-heading-ring {
		width: 150px;
		height: 150px;
	}
	.oaw-heading {
		font-size: 20px;
	}
}

/* Mobile: single column stack */
@media (max-width: 480px) {
	.oaw-step,
	.oaw-layout-zigzag .oaw-step.oaw-pos-bottom,
	.oaw-layout-zigzag .oaw-step.oaw-pos-top {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.oaw-icon-circle {
		width: 84px;
		height: 84px;
	}
	.oaw-icon-circle i,
	.oaw-icon-circle svg {
		font-size: 26px;
	}
	.oaw-heading-ring {
		width: 120px;
		height: 120px;
	}
	.oaw-heading {
		font-size: 18px;
	}
	.oaw-footer {
		font-size: 18px;
		padding: 18px 16px;
	}
}
