.hero-section {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	overflow: hidden;
}

.video-container video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translateX(-50%) translateY(-50%);
	object-fit: cover;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: -1;
}

.content {
	position: relative;
	z-index: 10;
}

.language-dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	right: 0;
	min-width: 120px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.2);
	z-index: 1;
	background-color: white;
	border-radius: 0.5rem;
	overflow: hidden;
}

.dropdown-content.show {
	display: block;
}

/* Custom styles for the toggle switches */
.toggle-checkbox:checked {
	right: 0;
	border-color: #4f46e5;
}
.toggle-checkbox:checked + .toggle-label {
	background-color: #4f46e5;
}