.content-header {
	position: relative;
	height: 60vh;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.content-header-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.content-header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(92, 92, 92, 0.6) 0%,
		rgba(92, 92, 92, 0.6) 100%
	);
	z-index: 2;
}

.content-header-content {
	position: relative;
	z-index: 3;
}

/* Header Title Shadow */
.header-title-shadow {
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 1px 1px 4px rgba(0, 0, 0, 0.5),
		0px 0px 3px rgba(0, 0, 0, 0.8);
}

.breadcrumb-nav {
	background-color: #f8f9fa;
	padding: 15px 0;
	border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
	background-color: transparent;
	margin-bottom: 0;
	padding: 0;
}

.breadcrumb-item a {
	color: #6c757d;
	text-decoration: none;
}

.breadcrumb-item a:hover {
	color: #f4623a;
	text-decoration: underline;
}

.breadcrumb-item.active {
	color: #495057;
}

.content-section {
	padding: 60px 0;
}

.content-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 30px;
	color: #000000;
}

.content-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #000000;
	margin-bottom: 40px;
}

.gallery-section {
	background-color: #f8f9fa;
	padding: 60px 0;
}

.gallery-title {
	text-align: center;
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 50px;
	color: #2c3e50;
}

/* Gallery Images Consistent Sizing */
.portfolio-box {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	aspect-ratio: 16/12; /* Consistent aspect ratio for all gallery items */
}

.portfolio-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.portfolio-box:hover img {
	transform: scale(1.05);
}
