.carousel {
	height: 100vh;
	overflow: hidden;
}

.carousel-inner {
	height: 100%;
}

.carousel-item {
	height: 100%;
	position: relative;
}

.video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.video-background iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 80%;
	max-width: 800px;
	color: white;
	z-index: 1;
}

.carousel-content h2 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-content p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-carousel {
	padding: 12px 30px;
	font-size: 1.2rem;
	font-weight: 600;
	border-radius: 50px;
	background-color: rgba(255, 255, 255, 0.2);
	border: 2px solid white;
	color: white;
	transition: all 0.3s ease;
}

.btn-carousel:hover {
	background-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-3px);
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 0;
}
