/* Clients section styling */

.clients-section {
	padding: 4rem 1rem;
	background: linear-gradient(135deg, #f9fafb, #eef5ff);
	text-align: center;
}

.clients-section h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #111827;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

/* Center the carousel and limit its width */
#clients-carousel {
	max-width: 1100px;
	margin: 0 auto;
}

/* Card-like styling for each slide */
.splide__slide {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
	padding: 1.5rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 110px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.splide__slide:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.splide__slide img {
	max-width: 160px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.splide__slide {
	font-size: calc(1rem + 5.5px);
	font-weight: 500;
	color: #111827;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Splide arrows */
.splide__arrow {
	background: rgba(15, 23, 42, 0.85);
	color: #ffffff;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
}

.splide__arrow svg {
	fill: #ffffff;
}

.splide__arrow--prev {
	left: -1.75rem;
}

.splide__arrow--next {
	right: -1.75rem;
}

/* Pagination dots */
.splide__pagination {
	bottom: -2.5rem;
}

.splide__pagination__page {
	background: #cbd5f5;
	opacity: 1;
}

.splide__pagination__page.is-active {
	background: #2563eb;
	transform: scale(1.2);
}

/* Responsive tweaks */
@media (max-width: 768px) {
	.clients-section {
		padding: 3rem 1.25rem;
	}

	.splide__slide {
		min-height: 90px;
		padding: 1.25rem 1rem;
	}

	.splide__arrow--prev {
		left: -0.75rem;
	}

	.splide__arrow--next {
		right: -0.75rem;
	}
}

@media (max-width: 480px) {
	.clients-section h2 {
		font-size: 1.5rem;
	}

	.splide__slide {
		font-size: 0.88rem;
	}
}
