/* General Carousel Styling */
.kti-image-carousel {
	position: relative;
	clip-path: inset(0 0 0 0);
	position: relative;
	height: 25rem;
	width: 100%;
	overflow: hidden;
}

/* The sliding track */
.kti-image-carousel__track {
	display: flex;
	height: 100%;
	/* Transition is handled via JS but acts as a fallback */
	transition: transform 0.5s ease-in-out;
}

/* Individual Slide Styling */
.kti-image-slide {
	box-sizing: border-box;
	padding: 0;
	/* Space between slides (gap) */
}

/* Slide Card - Now acts as the background container */
.kti-image-slide-card {
	position: relative;
	width: auto;
	height: 100%;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	/* aspect-ratio: 3 / 4; */

	/* Background properties to ensure image fills the card */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Text Overlay Styling */
.kti-image-slide-text-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	/* Increased padding to give the gradient more room to fade */
	padding: 3em 1em 3em 2em;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.85) 0%,
			rgba(0, 0, 0, 0) 100%);
}

.kti-slide-text-title {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	width: 90%;
	margin: 0;
	font-size: 1.4rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
}

/* Custom Pagination Dots Styling */
.kti-carousel-pagination {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	gap: 8px;
}

.kti-carousel-dot,
.kti-carousel-pagination .swiper-pagination-bullet {
	background: #dddddd;
	border: none;
	padding: 0;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	cursor: pointer;
	opacity: 1;
	transition: background-color 0.3s ease;
}

.kti-carousel-dot.active,
.kti-carousel-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #0d4a7c;
	/* Active dot color matching your brand */
}


@media (min-width:640px) {}

@media (min-width:768px) {
.kti-image-slide {
		box-sizing: border-box;
		padding: 0 10px;
	}

}

@media (min-width:1024px) {
	.kti-image-carousel {
		width: 59rem;
	}
	

	
}

@media (min-width:1280px) {
	.kti-slide-text-title {
		width: 80%;
	}
}

@media (min-width:1920px) {

	.kti-slide-text-title {
		width: 60%;
	}

	.kti-image-carousel {
		width: 76rem;
	}
}