.custom-carousel-slider {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-top: 60px;
}

/* Carousel container styling */

.carousel-item {
    width: 100%;
    border: none;
    padding-right: 20px;
    color: #fff;
    text-align: center;
}
.carousel-image img {
 	width: 100% !important;
    height: 280px!important;
	max-width:100%!important;
    max-height: 100% !important;  /* Uniform image height */
    object-fit: cover;  /* Ensure images fill the space uniformly */
	
}

/* Container for title and rating */
.carousel-title-rating {
	display: flex;
	align-items: normal;
	justify-content: space-evenly;
	margin-top: 1em;
}

h3.carousel-title {
	font-size: 16px !important;
	text-align: right;
	color: #fff !important;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Rating styling */
.carousel-rating {
	color: #00ADEF;
	margin-top: 0px;
}

.carousel-divider {
	width: 100%;
	height: 2px;
	background-color: #00ADEF;
	margin: 10px auto;
}

.carousel-description {
	margin-top: 10px;
	text-align: -webkit-auto;
	color: #F3F6F6;
}

.carousel-button {
	display: inline-block;
	width: 100%;
	margin-top: 20px;
	padding: 10px 20px;
	font-weight: bold;
	color: #2FC1FF;
	text-decoration: none;
	transition: background-color 0.4s ease, color 0.4s ease;
	border: solid 2px #2FC1FF;
	cursor: pointer;
}

.carousel-button:hover {
	color: white;
	background-color: #0078A8;
}

.slick-prevs, .slick-nexts {
	color:#2fc1ff;
	padding: 10px;
	 /*border-radius: 50%;*/
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 10;
	font-size: 24px; /* Increase the font size for larger arrows */

}
.slick-prevs {
	right:60px ;
}



/* Responsive Styling */
@media (max-width: 1024px) {
	.custom-carousel-slider {
		flex-wrap: wrap;
	}

	.carousel-item {
		width: 45%; /* Adjust width for tablets and smaller laptops */
	}
	
	.carousel-image img {
 	width: 100% !important;
    height: 280px!important;
	max-width:100%!important;
    max-height: 100% !important;  /* Uniform image height */
    object-fit: cover;  /* Ensure images fill the space uniformly */
	
}

	.slick-prevs {
	right:60px ;
}

}

@media (max-width: 992px) {
	.custom-carousel-slider {
		padding-top: 60px;
		justify-content: center;
	}

	.carousel-item {
		width: 100%; /* Full width for smaller screens */
		margin-bottom: 20px; /* Add spacing between items */
	}
	
	h3.carousel-title {
		font-size: 14px !important; /* Adjust font size */
		text-align: center;
	}

	.carousel-title-rating {
		flex-direction: column; /* Stack title and rating */
		align-items: center;
	}

	.carousel-rating {
		margin-top: 5px;
	}
	.carousel-button{
		width:50%
	}

	.slick-prevs, .slick-nexts {
		padding: 10px;
		top: 0px;
		right: 0px;
	}
	.slick-prevs {
	right:60px ;
}

	
}

@media (max-width: 767px) {
	.custom-carousel-slider {
		padding-top: 60px;
		justify-content: center;
	}

	.carousel-item {
		width: 100%; /* Full width for smaller screens */
		margin-bottom: 20px; /* Add spacing between items */
	}
	
	h3.carousel-title {
		font-size: 14px !important; /* Adjust font size */
		text-align: center;
	}

	.carousel-title-rating {
		flex-direction: column; /* Stack title and rating */
		align-items: center;
	}

	.carousel-rating {
		margin-top: 5px;
	}
	.carousel-button{
		width:50%
	}

	.slick-prevs, .slick-nexts {
		padding: 10px;
		top: 0px;
		right: 0px;
	}
	.slick-prevs {
	right:60px ;
}

	
}

@media (max-width: 600px) {
	.custom-carousel-slider {
	padding-top: 60px;
}
	.carousel-item {
		width: 100%; /* Full width for mobile devices */
		padding: 10px; /* Reduce padding */
	}

	

	h3.carousel-title {
		font-size: 14px !important;
		text-align: center;
	}

	.carousel-button {
		width:50%
		font-size: 14px; /* Adjust button font size */
		padding: 8px 16px; /* Reduce button padding */
	}

	.slick-prevs, .slick-nexts {
		padding: 10px;
		top: 0px;
		right: 0px;

	}
	.slick-prevs {
	right:60px ;
}

}
