.entegrasyon-header {
	text-align: center;
	margin-bottom: 40px;
}

.entegrasyon-main-title {
	margin: 0;
	line-height: 1.2;
}

.entegrasyon-sub-title {
	padding-top: 20px;
	line-height: 1.5;
}

.fc-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 10px;
}

.fc-pagination-item {
	width: 13px;
	height: 9px;
	background: #FAF7F7;
	border-radius: 4.5px;
	transition: width 1.8s ease;
	cursor: pointer;
}

.fc-pagination-item.active {
	width: 74px;
}

.entegrasyon-cards-container {
	width: 100%;
	overflow: hidden;
}

.entegrasyon-cards-slider {
	overflow: visible;
}

.entegrasyon-cards-slider .swiper-wrapper {
	display: flex;
	align-items: flex-end;
}

.entegrasyon-cards-slider .swiper-slide {
	width: 1074px;
}

.entegrasyon-cards-slider .swiper-slide-active {
	opacity: 1;
	transform: translateY(0) !important;
}

.entegrasyon-card {
	background: #ffffff;
	border-radius: 22px;
	padding: 47px 78px;
	width: 1074px;
	height: 407px;
	box-sizing: border-box;
	transition: transform 0.6s ease;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.entegrasyon-cards-slider .swiper-slide-active .entegrasyon-card {
	transform: translateY(calc(-1 * var(--card-offset, 30px)));
}

.fc-card-content-area {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	flex: 1;
}

.entegrasyon-card-text {
	width: 410px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.entegrasyon-card-title {
	margin: 0 0 20px 0;
	line-height: 1.2;
}

.entegrasyon-card-desc {
	line-height: 1.7;
	margin: 0;
}

.entegrasyon-card-logos-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	align-self: stretch;
}

.entegrasyon-card-logos {
	position: relative;
	width: 100%;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fc-logo-page {
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	gap: 24px;
	width: 100%;
}

.fc-logo-column {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.fc-logo-column:nth-child(odd) {
	margin-top: 0px;
}

.fc-logo-column:nth-child(even) {
	margin-top: 15px;
}

.fc-logo-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 30px;
}

.fc-logo-nav button {
	background: transparent;
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.fc-logo-nav button i,
.fc-logo-nav button svg {
	transition: all 0.3s ease;
}

.fc-logo-item {
	display: block;
	text-decoration: none;
}

.fc-logo-box {
	width: 84px;
	height: 84px;
	background: linear-gradient(360deg, rgba(9, 9, 11, 0) 0%, rgba(9, 9, 11, 0.05) 100%);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fc-logo-box img {
	padding: 8px;
}

.fc-logo-default,
.fc-logo-hover {
	position: absolute;
	max-width: 60px;
	max-height: 60px;
	object-fit: contain;
	transition: opacity 0.3s ease;
}

.fc-logo-default {
	opacity: 1;
}

.fc-logo-hover {
	opacity: 0;
}

.fc-logo-item:hover .fc-logo-default {
	opacity: 0;
}

.fc-logo-item:hover .fc-logo-hover {
	opacity: 1;
}

@media (min-width: 769px) and (max-width: 1024px) {
	.entegrasyon-cards-slider .swiper-slide {
		width: 650px;
	}

	.entegrasyon-card {
		width: 650px;
		height: auto;
		min-height: 320px;
		padding: 36px 40px;
	}

	.fc-card-content-area {
		flex-direction: row;
		align-items: center;
	}

	.entegrasyon-card-text {
		width: 240px;
		flex-shrink: 0;
	}

	.entegrasyon-card-logos-wrapper {
		flex: 1;
	}

	.fc-logo-box {
		width: 68px;
		height: 68px;
	}

	.fc-logo-default,
	.fc-logo-hover {
		max-width: 48px;
		max-height: 48px;
	}
}

@media (max-width: 768px) {
	.entegrasyon-cards-slider .swiper-slide {
		width: 90%;
	}

	.entegrasyon-card {
		width: 100%;
		height: auto;
		padding: 28px 20px;
	}

	.fc-card-content-area {
		flex-direction: column;
		align-items: stretch;
	}

	.entegrasyon-card-text {
		width: 100%;
		flex-shrink: unset;
	}

	.entegrasyon-card-logos-wrapper {
		flex: unset;
		width: 100%;
		margin-top: 24px;
	}

	.fc-logo-box {
		width: 56px;
		height: 56px;
	}

	.fc-logo-default,
	.fc-logo-hover {
		max-width: 38px;
		max-height: 38px;
	}
}