/* SVMC Services Section Widget */
.svmc-services-section-wrapper {
	font-family: inherit;
	padding: 80px 0;
	background-color: transparent;
}

.svmc-services-container {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	box-sizing: border-box;
}

.svmc-services-left {
	flex: 0 0 50%;
	max-width: 50%;
	padding-right: 50px;
	box-sizing: border-box;
}

.svmc-services-right {
	flex: 0 0 50%;
	max-width: 50%;
	text-align: right;
	box-sizing: border-box;
}

.svmc-services-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: rgba(13, 148, 136, 0.1);
	padding: 8px 16px;
	border-radius: 30px;
	color: #0d9488;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 1px;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.svmc-badge-icon,
.svmc-button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	flex: 0 0 auto;
}

.svmc-badge-icon svg {
	display: block;
	width: 14px;
	height: 14px;
}

.svmc-services-title {
	font-weight: 800;
	font-size: 4rem;
	line-height: 1.1;
	margin: 0 0 1.25rem;
}

.svmc-services-title-prefix {
	color: #0f1c3f;
}

.svmc-services-title-highlight {
	color: #1c64f2;
}

.svmc-services-separator {
	width: 35px;
	height: 3px;
	background-color: #1c64f2;
	margin-bottom: 1.5rem;
	border-radius: 2px;
}

.svmc-services-desc {
	color: #4b5563;
	font-size: 1.15rem;
	line-height: 1.7;
	margin: 0 0 2.5rem;
}

.svmc-services-btn {
	--svmc-btn-gradient-end: #2563eb;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(90deg, #1e40af 0%, var(--svmc-btn-gradient-end) 100%);
	color: #ffffff;
	padding: 14px 36px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	margin-bottom: 3.5rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.svmc-services-btn:hover,
.svmc-services-btn:focus {
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
	opacity: 0.98;
}

.svmc-button-icon svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.svmc-services-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 15px;
}

.svmc-service-card {
	background-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 24px 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
	text-align: center;
	box-sizing: border-box;
}

.svmc-service-icon-wrapper {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	border: 1px solid;
	box-sizing: border-box;
}

.svmc-service-icon-wrapper svg {
	display: block;
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.svmc-service-card-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #0f1c3f;
	margin: 0 0 12px;
	line-height: 1.4;
}

.svmc-service-card-line {
	width: 24px;
	height: 3px;
	margin: 0 auto;
	border-radius: 2px;
}

.svmc-services-img {
	display: inline-block;
	max-width: 100%;
	width: 100%;
	height: auto;
	object-fit: contain;
}

@media (max-width: 991px) {
	.svmc-services-left,
	.svmc-services-right {
		flex-basis: 100%;
		max-width: 100%;
	}

	.svmc-services-left {
		padding-right: 0;
	}

	.svmc-services-right {
		text-align: center;
		margin-top: 50px;
	}

	.svmc-services-title {
		font-size: 3rem;
	}
}

@media (max-width: 768px) {
	.svmc-services-cards-grid {
		grid-template-columns: 1fr;
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 480px) {
	.svmc-services-title {
		font-size: 2.4rem;
	}

	.svmc-services-desc {
		font-size: 1rem;
	}

	.svmc-services-btn {
		width: 100%;
	}
}
