.synterix-services-layout {
	display: flex;
	gap: 40px;
	width: 100%;
	color: #fff;
	background: #090b11;
	padding: 40px;
	border-radius: 12px;
	font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.synterix-services-list {
	flex: 1.2;
	display: flex;
	flex-direction: column;
}

.synterix-service-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.synterix-service-item:first-child {
	padding-top: 0;
}

.synterix-service-content {
	display: block;
	position: relative;
	width: 100%;
}

.synterix-service-icon-wrapper {
	float: left;
	margin-right: 20px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.synterix-service-text {
	overflow: hidden; /* Creates block formatting context to wrap cleanly around floated icon */
}

.synterix-service-title {
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 10px 0;
	transition: all 0.3s ease;
}

.synterix-service-excerpt {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 15px;
}

.synterix-service-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #00f0ff;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: 5px;
}

.synterix-service-btn:hover {
	gap: 12px;
	opacity: 0.8;
}

/* Hover & Active States */
.synterix-service-item:hover .synterix-service-title,
.synterix-service-item.active .synterix-service-title {
	color: #00f0ff;
}

.synterix-service-item:hover .synterix-service-icon-wrapper i,
.synterix-service-item.active .synterix-service-icon-wrapper i {
	text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

/* Right side Preview */
.synterix-services-preview {
	flex: 0.8;
	display: flex;
	align-items: stretch;
	justify-content: center;
	min-height: 450px;
}

.synterix-preview-image-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.synterix-preview-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: opacity 0.3s ease, transform 0.5s ease;
	opacity: 0;
	transform: scale(1.02);
}

.synterix-preview-image.active {
	opacity: 1;
	transform: scale(1);
}

@media (max-width: 991px) {
	.synterix-services-layout {
		flex-direction: column;
		gap: 30px;
		padding: 20px;
	}
	.synterix-services-preview {
		min-height: 300px;
	}
}
