.hero-section {
	padding-top: 20px;
	margin-bottom: 40px;
}
.hero-section .hero-container {
	display: flex;
	gap: 20px;
	align-items: stretch;
}

/* Sidebar */
.hero-sidebar {
	width: 300px;
	min-width: 300px;
	background: #343844;
	border-radius: 8px;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
}
.hero-sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.hero-sidebar li {
	padding: 0;
}
.hero-sidebar a {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: background 0.2s, color 0.2s;
	text-transform: uppercase;
}
.hero-sidebar a:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ff5e00;
}
.hero-sidebar a svg {
	width: 20px;
	height: 20px;
	margin-right: 15px;
	color: #a0a4b0;
	transition: color 0.2s;
	flex-shrink: 0;
}
.hero-sidebar a:hover svg {
	color: #ff5e00;
}

/* Slider */
.hero-slider-wrap {
	flex-grow: 1;
	min-width: 0;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	display: flex;
	height: 460px;
}
.hero-swiper {
	width: 100%;
	height: 100%;
}
.hero-swiper .swiper-slide {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	border-radius: 8px;
	overflow: hidden;
}
.hero-swiper .swiper-slide img.bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	z-index: 1;
}
.hero-slide-content {
	position: relative;
	z-index: 2;
	padding: 60px;
	max-width: 600px;
	color: #fff;
}
.hero-slide-heading {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.2;
}
.hero-slide-heading span {
	color: #ff3300;
}
.hero-slide-subheading {
	font-size: 18px;
	margin-bottom: 30px;
	color: #d1d5db;
}
.hero-btn {
	display: inline-block;
	background: #ff3300;
	color: #fff;
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.3s;
	margin-bottom: 40px;
}
.hero-btn:hover {
	background: #e62e00;
}

/* Slider pagination */
.hero-swiper .swiper-pagination-bullet {
	background: #fff;
	opacity: 0.6;
	width: 10px;
	height: 10px;
}
.hero-swiper .swiper-pagination-bullet-active {
	opacity: 1;
	background: #ff5e00;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
	color: #fff;
	opacity: 0.7;
	transition: opacity 0.2s;
	z-index: 10;
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
	opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
	.hero-slide-content {
		padding: 40px;
	}
	.hero-slide-heading {
		font-size: 32px;
	}
}
@media (max-width: 992px) {
	.hero-sidebar {
		display: none !important;
	}
	.hero-slider-wrap {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.hero-section {
		margin-bottom: 20px;
	}
	.hero-slider-wrap {
		height: 350px;
		border-radius: 0;
	}
	.hero-swiper .swiper-slide {
		border-radius: 0;
	}
	.hero-slide-content {
		padding: 20px;
	}
	.hero-slide-heading {
		font-size: 26px;
	}
	.hero-btn {
		margin-bottom: 20px;
	}
	.about-section {
		margin-top: 30px !important;
	}
}
@media (max-width: 991px) {
	#hover-container.container {
		padding: 0px !important;
	}
	.hero-slider-wrap {
		border-radius: 0;
	}
	.hero-swiper .swiper-slide {
		border-radius: 0;
	}
	.about-section {
		margin-top: 30px !important;
	}
}
.hero-slide-heading {
	color: #FF3600;
}
.hero-slide-subheading {
	color: #FF9C00;
}

/* --- ABOUT BLOCK --- */
.about-section {
	margin: 0 0 40px 0;
	margin-top: 40px;
}
.about-block {
	background: #343844;
	border-radius: 8px;
	padding: 70px 40px;
	display: flex;
	align-items: center;
	gap: 40px;
}
.about-left {
	flex: 0 0 40%;
	color: #fff;
}
.about-title {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.3;
}
.about-title-highlight {
	display: block;
	text-transform: uppercase;
}
.about-desc {
	font-size: 19px;
	color: #d1d5db;
	margin-bottom: 30px;
}
.about-btn {
	display: inline-block;
	background: #ff3300;
	color: #fff;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.3s;
}
.about-btn:hover {
	background: #e62e00;
}
.about-right {
	flex: 1;
}
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	row-gap: 30px;
	column-gap: 15px;
}
.about-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}
.about-item:nth-child(odd) {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	padding-right: 25px;
}
.about-item:nth-child(even) {
	padding-left: 25px;
}
.about-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.about-icon img {
	max-width: 100%;
	max-height: 100%;
}
.about-text {
	font-size: 17px;
	color: #fff;
	line-height: 1.5;
	margin: 0;
}

/* Responsive About Block */
@media (max-width: 992px) {
	.about-block {
		flex-direction: column;
		padding: 60px 20px;
		text-align: center;
	}
	.about-left {
		width: 100%;
		margin-bottom: 30px;
	}
	.about-title {
		font-size: 20px;
	}
	.about-title br {
		display: none;
	}
	.about-title-highlight {
		display: inline;
		text-transform: none;
	}
	.about-desc {
		margin: 0 auto 25px;
		max-width: 500px;
	}
	.about-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 10px;
	}
}
@media (max-width: 576px) {
	.about-item:nth-child(odd) {
		padding-right: 10px;
	}
	.about-item:nth-child(even) {
		padding-left: 10px;
	}
}
