.banner {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.video-bg {	
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}	
.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(0, 0, 0, 0.2) 50%,
		rgba(0, 0, 0, 0.45) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
.banner-content {
	text-align: center;
	padding: 20px;
	max-width: 800px;
}
.banner-content h1 {
	color: #ffffff;
	font-size: clamp(1.8rem, 5vw, 4rem);
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.15;
	margin: 0 0 16px 0;
	text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.banner-content p {
	color: rgba(255,255,255,0.85);
	font-size: clamp(0.9rem, 2vw, 1.25rem);
	margin: 0 0 28px 0;
	line-height: 1.6;
	letter-spacing: 1px;
}
.banner-btn {
	display: inline-block;
	padding: 14px 36px;
	background: #1e4182;
	color: #fff;
	font-size: clamp(0.85rem, 1.5vw, 1.05rem);
	font-weight: 600;
	border: none;
	letter-spacing: 1px;
	border-radius: 50px;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
	box-shadow: 0 4px 24px rgba(230,57,70,0.35);
}
.banner-btn:hover {
	background: #1e4182;
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(230,57,70,0.5);
}
@media (max-width: 640px) {
	.banner-content { padding: 16px; }
	.banner-btn { padding: 12px 28px; }
}