/* Video Wrapper */
.hero-video-wrapper {
	position: relative;


	height: 400px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 10px;
	background-color: #000;
	transition: transform 0.1s ease-out; /* Smooth Scaling */
	z-index: 10;

	/* Anchor scaling to the top */
	transform-origin: top;
}

@media (max-width: 800px) {
	.hero-video-wrapper {
		position: relative;


		height: 125px;
		margin: 0 auto;
		overflow: hidden;
		border-radius: 10px;
		background-color: #000;
		transition: transform 0.1s ease-out; /* Smooth Scaling */
		z-index: 10;
	
		/* Anchor scaling to the top */
		transform-origin: top;
	}
}

@media (max-width: 991px) {
	.hero-video-wrapper {
		position: relative;


		height: 250px;
		margin: 0 auto;
		overflow: hidden;
		border-radius: 10px;
		background-color: #000;
		transition: transform 0.1s ease-out; /* Smooth Scaling */
		z-index: 10;
	
		/* Anchor scaling to the top */
		transform-origin: top;
	}
}

/* Video Thumbnail */
.hero-video-thumbnail {

	object-fit: cover; /* Ensures the video fills the container */
	display: block; /* Avoids inline-block spacing issues */
}

/* Play Button */
.hero-play-button {
	position: absolute;
	top: 50%; /* Center vertically */
	left: 50%; /* Center horizontally */
	transform: translate(-50%, -50%);
	z-index: 2;
	background: rgba(206, 255, 0, 0.8);
	border: none;
	border-radius: 10%;
	padding: 15px 25px;
	font-size: 1.5rem;
	cursor: pointer;
	transition: background 0.3s ease;
	pointer-events: auto;
}

.hero-play-button:hover {
	background: rgba(206, 255, 0, 1);
}

/* Modal */
.hero-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.hero-modal-content {
	position: relative;
	width: 80%;
	max-width: 1200px;
}

.hero-modal-content video {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.hero-close-button {
	position: absolute;
	top: -30px;
	right: 0;
	font-size: 2rem;
	color: white;
	cursor: pointer;
}