/* style.css v1.7 */
.vero-journey-container {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	/* Group Background will apply here dynamically */
}

.vero-journey-top {
	width: 100%;
	margin-bottom: 60px;
	position: relative;
	z-index: 10;
}

.vero-progress-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.vero-progress-bar {
	width: 60%;
	height: 4px;
	background-color: #E2E8F0;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
}

.vero-progress-fill {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0%;
	background-color: #1A202C; /* Default */
	transition: width 0.1s linear;
}

.vero-journey-tabs-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}

.vero-tab-button {
	border: 1px solid transparent;
	padding: 10px 24px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	color: inherit;
	text-align: center;
}

.vero-tab-button:hover {
	/* Group background will apply to hover dynamically */
	transform: translateY(-2px); /* Slight lift on hover */
}

.vero-tab-button.active-tab {
	background-position: center;
	background-size: cover;
}

.vero-tab-inner {
	display: flex;
	align-items: center;
	gap: 8px;
}

.vero-tab-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.vero-tab-icon i {
	font-size: 1em;
	line-height: 1;
	display: inline-block;
}

.vero-tab-icon svg {
	width: 1em;
	height: 1em;
	display: inline-block;
	overflow: visible;
	fill: currentColor;
}

.vero-tab-title {
	font-weight: 600;
	font-size: 16px;
}

.vero-tab-subtitle {
	font-size: 13px;
	margin-top: 4px;
	opacity: 0.8;
}

/* Content Area */
.vero-journey-content-area {
	position: relative;
	width: 100%;
}

.vero-step-content {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	width: 100%;
}

.vero-step-content.active-content {
	position: relative;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
}

.vero-content-heading {
	font-size: 32px;
	margin-bottom: 20px;
	color: #1A202C;
}

.vero-content-desc {
	font-size: 18px;
	line-height: 1.6;
	color: #4A5568;
	max-width: 800px;
	margin: 0 auto 40px auto;
}

.vero-step-image img {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 767px) {
	.vero-journey-content-area {
		display: flex;
		flex-direction: column;
	}
	.vero-step-content {
		position: static;
		opacity: 1;
		visibility: visible;
		display: none;
		margin-bottom: 40px;
	}
	.vero-step-content.active-content {
		display: flex;
	}
	.vero-progress-bar {
		width: 90%;
	}
	.vero-journey-tabs-wrapper {
		overflow-x: auto;
		flex-wrap: nowrap;
		justify-content: flex-start;
		padding-bottom: 10px;
		-webkit-overflow-scrolling: touch;
	}
	.vero-tab-button {
		flex-shrink: 0;
	}
}
