/* Swiper core fixes */
.ces-slider .swiper-wrapper {
	display: flex;        /* required for horizontal slides */
	transition-property: transform;
	box-sizing: content-box;
}

.ces-slider .swiper-slide {
	flex-shrink: 0;       /* prevent slides from shrinking */
	width: 100%;          /* each slide takes full container width */
	position: relative;
}

.ces-slider {
	position: relative;
	overflow: hidden;
	max-height: 400px;       /* set maximum slider height */
	width: 100%;
}
.ces-slider .swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 400px;            /* enforce consistent slide height */
	position: relative;
}

.ces-slide-inner {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius:15px;
}

/* Overlay */
.ces-slide-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45); /* black 45% opacity */
	z-index: 1;                      /* under text, above image */
}
.ces-slide-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	z-index: 0;
	position: relative;
}

/*
.ces-slide-content {
	position: absolute;
	left: 40px;
	bottom: 40px;
	color: #fff;
	max-width: 40%;
	z-index: 2;
}
*/
.ces-slide-wrapper {
	position: absolute;
	left: 0px;
	bottom: 0px;
	color: #fff;
	max-width: 100%;
	z-index: 2;
}

.ces-slide-content {
	padding: 50px;
}

.ces-slide-content h3 {
	font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    text-shadow: 1px 2px 0 rgba(12, 12, 28, 0.3);
    padding-bottom: 5px;
	margin: 0;
}

.ces-slide-content p {
	font-size: 18px;
	margin-bottom: 20px;
}

.ces-btn {
	display: inline-block;
	background: #fff;
	color: #000;
	padding: 12px 28px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 15px;
	transition: all 0.3s;
}

.ces-btn:hover {
	background: #355153;
	color: #fff;
}

.ces-slider-nav {
	position: absolute;
	right: 30px;
	bottom: 40px;
	display: flex;
	gap: 10px;
	z-index: 2;
}

.ces-prev, .ces-next {
	background: #96965a;
	color:#fff;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	transition: background 0.3s;
}

.ces-prev:hover, .ces-next:hover {
	background: #355153;
	color: #fff;
}

.ces-pagination {
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	z-index: 2;
}



@media screen and (max-width: 1024px) {
	
	.ces-slider .swiper-slide {
		height: 50vh;
	}
	
   .ces-slide-content {
    padding: 25px;
	   margin-bottom: 0px;
   }
	
	.ces-slide-content h3 {
    font-size: 26px;
	}
.ces-slide-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
}
	
   
	
	
}
@media screen and (max-width: 768px) {
	.ces-slider .swiper-slide {
		height: 60vh;
	}
	
	.ces-slider-nav {
		margin-bottom: 0!important;
	}
}




