/* Wrapper */
.service-cat-grid-wrapper-ea76ef28 {
	font-family: var(--e-global-typography-primary-font-family), sans-serif;
	margin: 20px 0;
}

/* Header Section */
.service-cat-header-ea76ef28 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 20px;
}

.service-cat-header-left-ea76ef28 {
	display: flex;
	flex-direction: column;
}

.service-cat-title-ea76ef28 {
	font-size: 42px;
	font-weight: 700;
	margin: 0 0 5px 0;
	color: #1b3644;
	font-family: var(--e-global-typography-primary-font-family), serif;
}

.service-cat-count-ea76ef28 {
	font-size: 16px;
	color: #555;
}

/* CTA Button */
.service-cat-cta-ea76ef28 {
	background-color: #a4212b; /* Theme Red */
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 30px;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background-color 0.3s ease;
}

.service-cat-cta-ea76ef28:hover {
	background-color: #1b3644;
	color: #ffffff;
}

/* Flexbox Layout for Auto Width */
.service-cat-grid-ea76ef28 {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: flex-start;
}

/* Category Card */
.service-cat-card-ea76ef28 {
	background: #ffffff;
	border: 1px solid #eaeaea;
	border-radius: 12px;
	padding: 12px 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0,0,0,0.02);
	white-space: nowrap; /* Prevent text wrapping */
}

.service-cat-card-ea76ef28:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	border-color: #a4212b;
}

.service-cat-icon-ea76ef28 {
	color: #1b3644;
	display: flex;
	align-items: center;
}

.service-cat-card-ea76ef28:hover .service-cat-icon-ea76ef28 {
	color: #a4212b;
}

.service-cat-name-ea76ef28 {
	font-size: 16px;
	font-weight: 500;
	color: #a4212b;
}

/* Responsive */
@media (max-width: 768px) {
	.service-cat-title-ea76ef28 {
		font-size: 32px;
	}
	.service-cat-header-ea76ef28 {
		flex-direction: column;
		align-items: flex-start;
	}
	.service-cat-grid-ea76ef28 {
		justify-content: center;
	}
	.service-cat-card-ea76ef28 {
		width: 100%;
		justify-content: flex-start;
	}
}