.ca-services-section {
	position: relative;
	width: 100%;
	isolation: isolate;
	background-color: #0e2e47;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	padding: 100px 0;
}

.ca-services-section__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	justify-content: center;
}

.ca-services-section__title {
	margin: 0;
	color: #fff;
	font-size: 2.25rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.2;
}

.ca-services-section__title-accent {
	color: #0990f5;
}

.ca-services-carousel {
	position: relative;
	width: 100%;
	margin-top: 24px;
}

.ca-services-swiper {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 0 44px;
	margin: 0;
}

.ca-services-swiper .swiper-wrapper {
	align-items: stretch;
}

.ca-services-swiper .swiper-slide {
	display: flex;
	height: auto;
	text-align: left;
}

.ca-services-pagination {
	position: static !important;
	inset: auto !important;
	transform: none !important;
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 100%;
	margin: 28px 0 0;
	padding: 0;
	z-index: 1;
}

.ca-services-pagination .swiper-pagination-bullet {
	position: static !important;
	background: rgba(255, 255, 255, 0.45);
	opacity: 1;
	margin: 0 !important;
}

.ca-services-pagination .swiper-pagination-bullet-active {
	background: #0990f5;
}

.ca-services-swiper .swiper-button-prev,
.ca-services-swiper .swiper-button-next {
	position: absolute;
	top: 50%;
	margin-top: 0;
	transform: translateY(-50%);
	color: #0990f5;
	z-index: 2;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.ca-services-swiper .swiper-button-prev::after,
.ca-services-swiper .swiper-button-next::after {
	font-size: 22px;
	font-weight: 700;
}

.ca-service-card {
	background-color: #fff;
	padding: 16px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	width: 100%;
	height: 100%;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	position: relative;
	gap: 16px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ca-service-card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 8px;
	background-color: #0990f5;
	transition: width 0.3s ease;
}

.ca-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.ca-service-card:hover::after {
	width: 100%;
}

.ca-service-card__title {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	color: #000;
}

.ca-service-card__description {
	flex: 1;
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
}

.ca-service-card__button {
	margin-top: auto;
	margin-bottom: 10px;
	background-color: #0990f5;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	width: fit-content;
	text-align: center;
	transition: background-color 0.2s ease;
}

.ca-service-card__button:hover,
.ca-service-card__button:focus {
	background-color: #007bff;
	color: #fff;
}

.ca-service-card__button:active {
	background-color: #0056b3;
}

@media (max-width: 639px) {
	.ca-services-section {
		padding: 64px 0;
	}

	.ca-services-section__title {
		font-size: 1.75rem;
	}

	.ca-services-swiper {
		padding-left: 36px;
		padding-right: 36px;
	}

	.ca-services-swiper .swiper-button-prev::after,
	.ca-services-swiper .swiper-button-next::after {
		font-size: 18px;
	}
}
