.project-hero {
	position: relative;
	padding: 140px 0 110px;
	background-size: cover;
	background-position: center;
	color: #ffffff;
	overflow: hidden;
}

.project-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.25) 100%);
}

.project-hero .auto-container {
	position: relative;
}

.project-hero h2 {
	font-size: 48px;
	margin-bottom: 18px;
	color: #ffffff;
}

.project-hero .page-title_text {
	max-width: 700px;
	color: #f4f4f4;
	font-weight: 500;
}

.project-detail--modern {
	position: relative;
}

.project-detail--modern .project-detail_heading {
	font-size: 38px;
	margin-bottom: 10px;
}

.project-detail_intro {
	font-size: 18px;
	color: #4f5660;
	margin-bottom: 25px;
	max-width: 960px;
}

.project-detail--modern .project-detail_list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	padding: 20px;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.project-detail--modern .project-detail_list li {
	border: 1px solid #edf1f5;
	border-radius: 12px;
	padding: 14px;
}

.project-detail_layout {
	margin-top: 35px;
}

.project-detail_layout h3 {
	margin-bottom: 12px;
}

.project-detail_layout p {
	color: #4b5563;
}

.project-detail_image img {
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.project-highlights {
	margin-top: 16px;
}

.project-highlights ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.project-highlights li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 8px;
	font-weight: 600;
	color: #1f2937;
}

.project-highlights li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #fdc223;
}

.project-gallery {
	margin-top: 40px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.project-gallery_main {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
	max-width: 100%;
	aspect-ratio: 3/2;
	background-color: #f8fafc;
}

.project-gallery_main img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.project-gallery_nav {
	position: absolute;
	inset: 0 0 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 12px;
}

.project-gallery_nav button {
	pointer-events: auto;
	border: none;
	background: rgba(255, 255, 255, 0.82);
	color: #0f172a;
	font-size: 18px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	transition: all 0.2s ease;
}

.project-gallery_nav button:hover {
	background: #0f172a;
	color: #ffffff;
}

.project-gallery_thumbs {
	display: flex;
	gap: 12px;
	margin-top: 16px;
	overflow-x: auto;
	padding-bottom: 6px;
	scrollbar-width: thin;
}

.project-gallery_thumb {
	flex: 0 0 120px;
	border: 2px solid transparent;
	border-radius: 12px;
	padding: 0;
	background: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.project-gallery_thumb img {
	width: 100%;
	display: block;
	border-radius: 10px;
}

.project-gallery_thumb.is-active {
	border-color: #fdc223;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.project-docs {
	margin-top: 42px;
}

.project-docs_grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
}

.project-doc_card {
	background: #ffffff;
	border-radius: 14px;
	border: 1px solid #edf1f5;
	box-shadow: 0 10px 34px rgba(15, 23, 42, 0.08);
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.project-doc_header h4 {
	margin-bottom: 6px;
}

.project-doc_header p {
	margin: 0;
	color: #475569;
}

.project-doc_preview {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	background: #0f172a;
}

.project-doc_preview iframe {
	display: block;
	width: 100%;
	height: 260px;
	border: none;
	background: #0f172a;
}

.project-grid .project-block_three {
	margin-bottom: 14px;
}

.project-grid .project-block_three-inner {
	display: flex;
	flex-direction: column;
	height: 100%;

}

.project-grid .project-block_three-image {
	position: relative;
	height: 440px;
	overflow: hidden;
	border-radius: 16px;
}

.project-grid .project-block_three-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.project-grid .project-block_three_button .theme-btn.btn-style-one i {
	background: none !important;
	box-shadow: none !important;
	width: 18px;
	height: 18px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.project-grid .project-block_three_button .theme-btn.btn-style-one i img {
	width: 10px;
	height: 10px;
}

.project-grid .project-block_three-overlay {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 26px;
}

.project-grid .project-block_three-location {
	align-items: center;
	gap: 8px;
}

.project-grid .project-block_three-location i {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.project-grid .project-block_three-location i img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	filter: brightness(0) invert(1);
}

.project-block_three-text {
	color: #f8fafc;
	margin-top: 6px;
}

@media (max-width: 991px) {
	.project-hero {
		padding: 120px 0 90px;
	}

	.project-hero h2 {
		font-size: 36px;
	}

	.project-detail--modern .project-detail_heading {
		font-size: 32px;
	}

	.project-gallery_thumb {
		flex-basis: 100px;
	}

	.project-grid .project-block_three-inner {
		/* min-height: 520px; */
	}

	.project-grid .project-block_three-image {
		height: 380px;
	}
}

@media (max-width: 767px) {
	.project-hero {
		padding: 110px 0 80px;
	}

	.project-hero h2 {
		font-size: 30px;
	}

	.project-gallery_nav button {
		width: 38px;
		height: 38px;
	}
}