.section-hero-tpl1 .hero {
	position: relative;
	height: 460px;
	overflow: hidden;
}

.section-hero-tpl1 .hero-bg {
	position: absolute;
	inset: 0;
}

.section-hero-tpl1 .hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-hero-tpl1 .hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 30, 50, 0.6);
}

.section-hero-tpl1 .hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	padding: 0 20px;
}

.section-hero-tpl1 .hero-content h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
}

.section-hero-tpl1 .hero-content p {
	max-width: 700px;
	margin: auto;
	color: #ddd;
	line-height: 1.6;
}

.section-hero-tpl1 .hero-btn {
	margin-top: 25px;
}

.section-hero-tpl1 .hero-btn a {
	background: #ff5a1f;
	color: #fff;
	padding: 12px 28px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	transition: 0.3s;
	height: unset;
	line-height: unset;
}

.section-hero-tpl1 .hero-btn a:hover {
	background: #e14b12;
}

.section-hero-tpl1 .hero-ac {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

.section-hero-tpl1 .hero-ac img {
	width: 260px;
}

.section-hero-tpl1 .hero-left {
	position: absolute;
	bottom: 0;
	left: 20px;
	z-index: 2;
}

.section-hero-tpl1 .hero-left img {
	height: 90%;
}

.section-hero-tpl1 .hero-right {
	position: absolute;
	bottom: 0;
	right: 20px;
	z-index: 2;
}

.section-hero-tpl1 .hero-right img {
	height: 120px;
}

@media (max-width: 992px) {
	.section-hero-tpl1 .hero {
		height: 500px;
	}

	.section-hero-tpl1 .hero-content h1 {
		font-size: 32px;
	}

	.section-hero-tpl1 .hero-left,
	.section-hero-tpl1 .hero-right {
		display: none;
	}

	.section-hero-tpl1 .hero-ac img {
		width: 180px;
	}
}
















































/* hero v2  */

.section-hero-tpl2 .hero {
	position: relative;
	width: 100%;
	height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.section-hero-tpl2 .hero-overlay {
	position: absolute;
	inset: 0;
	background: #00000094;
}

.section-hero-tpl2 .hero-content {
	position: relative;
	max-width: 800px;
	padding: 20px;
	animation: fadeUp 1s ease;
}

.section-hero-tpl2 .hero-sub {
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 14px;
}

.section-hero-tpl2 .hero h1 {
	font-size: 32px;
	margin: 15px 0;
	font-weight: 700;
}

.section-hero-tpl2 .hero p {
	font-size: 16px;
	opacity: 0.9;
	line-height: 1.6;
	margin-bottom: 30px;
}

.section-hero-tpl2 .hero-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.section-hero-tpl2 .btn {
	padding: 12px 26px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	height: unset;
	line-height: unset;
}

.section-hero-tpl2 .btn.primary {
	background: var(--bv-primary);
	color: #fff;
}

.section-hero-tpl2 .btn.primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(106, 92, 255, 0.5);
}

.section-hero-tpl2 .btn.secondary {
	background: #fff;
	color: #333;
}

.section-hero-tpl2 .btn.secondary:hover {
	background: #eee;
	transform: translateY(-3px);
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.section-hero-tpl2 .hero {
		height: 70vh;
	}

	.section-hero-tpl2 .hero h1 {
		font-size: 28px;
	}

	.section-hero-tpl2 .hero p {
		font-size: 14px;
	}

	.section-hero-tpl2 .hero-buttons {
		flex-direction: column;
	}

	.section-hero-tpl2 .btn {
		width: 100%;
		text-align: center;
	}
}