.ccw-carousel-wrapper {
	position: relative;
	width: 100%;
}

.ccw-carousel {
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.ccw-swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.ccw-swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}

.ccw-slide {
	position: relative;
	height: 500px;
	display: flex;
	overflow: hidden;
	background-color: #222;
}

.ccw-slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.ccw-slide-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.35);
}

.ccw-slide-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 60%;
	margin: 0 auto;
	padding: 40px;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: center;
}

/* Horizontal alignment */
.ccw-align-h-left .ccw-slide-content { align-items: flex-start; text-align: left; margin-left: 60px; margin-right: auto; }
.ccw-align-h-center .ccw-slide-content { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }
.ccw-align-h-right .ccw-slide-content { align-items: flex-end; text-align: right; margin-right: 60px; margin-left: auto; }

/* Vertical alignment */
.ccw-align-v-top .ccw-slide-content { justify-content: flex-start; padding-top: 60px; }
.ccw-align-v-middle .ccw-slide-content { justify-content: center; }
.ccw-align-v-bottom .ccw-slide-content { justify-content: flex-end; padding-bottom: 60px; }

.ccw-slide-title {
	margin: 0 0 20px;
	color: #ffffff;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
}

.ccw-slide-description {
	margin: 0 0 30px;
	color: #f2f2f2;
	font-size: 18px;
	line-height: 1.6;
}

.ccw-slide-button {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 50px;
	background-color: #4a6cf7;
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	cursor: pointer;
}

.ccw-slide-button:hover {
	filter: brightness(1.1);
	text-decoration: none;
}

/* Navigation arrows */
.ccw-nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #ffffff;
	border-radius: 50%;
	color: #ffffff;
	cursor: pointer;
	z-index: 5;
	background: rgba(0, 0, 0, 0.15);
	transition: background-color 0.2s ease;
}

.ccw-nav-arrow:hover {
	background: rgba(0, 0, 0, 0.35);
}

.ccw-nav-prev { left: 24px; }
.ccw-nav-next { right: 24px; }

/* Pagination dots (namespaced classes, set via Swiper's bulletClass options) */
.ccw-carousel .ccw-swiper-pagination {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 5;
}

.ccw-carousel .ccw-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	cursor: pointer;
	margin: 0 !important;
	display: inline-block;
}

.ccw-carousel .ccw-bullet-active {
	background: #ffffff;
}

/* -----------------------------------------------------------
 * Content entrance animation
 * --------------------------------------------------------- */
.ccw-slide-content > * {
	opacity: 0;
}

.ccw-anim-none .ccw-slide-content > * {
	opacity: 1;
}

.ccw-slide-content.ccw-animate > * {
	animation-duration: var( --ccw-anim-duration, 800ms );
	animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	animation-fill-mode: forwards;
}

.ccw-slide-content.ccw-animate > *:nth-child(1) { animation-delay: 0ms; }
.ccw-slide-content.ccw-animate > *:nth-child(2) { animation-delay: var( --ccw-anim-delay, 150ms ); }
.ccw-slide-content.ccw-animate > *:nth-child(3) { animation-delay: calc( var( --ccw-anim-delay, 150ms ) * 2 ); }

.ccw-anim-fade-in .ccw-slide-content.ccw-animate > * {
	animation-name: ccwFadeIn;
}

.ccw-anim-fade-in-up .ccw-slide-content.ccw-animate > * {
	animation-name: ccwFadeInUp;
}

.ccw-anim-fade-in-down .ccw-slide-content.ccw-animate > * {
	animation-name: ccwFadeInDown;
}

.ccw-anim-zoom-in .ccw-slide-content.ccw-animate > * {
	animation-name: ccwZoomIn;
}

@keyframes ccwFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes ccwFadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes ccwFadeInDown {
	from { opacity: 0; transform: translateY(-30px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes ccwZoomIn {
	from { opacity: 0; transform: scale(0.85); }
	to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 767px) {
	.ccw-slide-content {
		max-width: 90%;
		padding: 24px;
	}
	.ccw-slide-title {
		font-size: 30px;
	}
	.ccw-nav-arrow {
		width: 36px;
		height: 36px;
	}
}
