/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 * Version: 2.0.7
 */

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Project Cards - Enhanced Design */
.project-card {
	background-color: white;
	border-radius: 1rem;
	overflow: hidden;
	transition: all 0.3s;
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
	border: none;
	cursor: pointer !important;
}

.project-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.08);
	cursor: pointer !important;
}

.project-card * {
	cursor: pointer !important;
}

.project-card .project-image img {
	transition: transform 0.5s ease;
	cursor: pointer !important;
}

.project-card:hover .project-image img {
	transform: scale(1.05);
}

/* Line clamping for text overflow */
.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Enhanced Filters */
.projects-filters {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.95);
}

.projects-filters input:focus,
.projects-filters select:focus {
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Swiper Gallery Styles */
.project-gallery-swiper {
	margin-bottom: 20px;
	position: relative;
	width: 100%;
	height: 400px;
}

.project-gallery-swiper .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.project-gallery-swiper .swiper-slide img,
.project-gallery-swiper .swiper-slide .gallery-main-image {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 8px;
	opacity: 1 !important;
	visibility: visible !important;
	position: relative !important;
	z-index: 1 !important;
}

.project-gallery-thumbs {
	height: 80px;
	box-sizing: border-box;
	padding: 10px 0;
	margin-top: 10px;
}

.project-gallery-thumbs .swiper-slide {
	width: 25%;
	height: 100%;
	opacity: 0.4;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.project-gallery-thumbs .swiper-slide img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 4px;
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.project-gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
	color: #263573 !important;
	background: rgba(255, 255, 255, 0.9) !important;
	border-radius: 50% !important;
	width: 44px !important;
	height: 44px !important;
	margin-top: -22px !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
	transition: all 0.3s ease !important;
	border: none !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: rgba(255, 255, 255, 1) !important;
	transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 18px !important;
	font-weight: 600 !important;
}

.swiper-pagination {
	position: relative !important;
	margin-top: 15px !important;
}

.swiper-pagination-bullet {
	background: #263573 !important;
	opacity: 0.3 !important;
	transition: all 0.3s ease !important;
	width: 12px !important;
	height: 12px !important;
	margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
	opacity: 1 !important;
	transform: scale(1.2) !important;
}

/* Enhanced Lightbox */
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	backdrop-filter: blur(5px);
}

.lightbox.hidden {
	display: none;
}

.lightbox-container {
	position: relative;
	max-width: 95vw;
	max-height: 95vh;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.lightbox-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.lightbox-controls {
	display: flex;
	align-items: center;
	gap: 15px;
}

.lightbox-counter-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-right: 15px;
}

.lightbox-counter {
	font-size: 14px;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.2);
	padding: 4px 12px;
	border-radius: 15px;
	backdrop-filter: blur(5px);
}

.lightbox-btn {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	padding: 8px 12px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
	backdrop-filter: blur(5px);
	font-size: 13px;
	font-weight: 500;
}

.lightbox-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-close {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	backdrop-filter: blur(5px);
	font-size: 18px;
	font-weight: bold;
}

.lightbox-close:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: scale(1.05);
}

.lightbox-image-wrapper {
	max-height: 80vh;
	overflow: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: #f8f9fa;
	scroll-behavior: smooth;
}

.lightbox-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.lightbox-image:active {
	transform: scale(0.98);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	z-index: 10;
}

.lightbox-nav:hover {
	background: white;
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.lightbox-nav-prev {
	left: 20px;
}

.lightbox-nav-next {
	right: 20px;
}

@media (max-width: 768px) {
	.lightbox-nav {
		width: 44px;
		height: 44px;
	}
	
	.lightbox-nav svg {
		width: 20px;
		height: 20px;
	}
}

/* Project Navigation */
.project-back-nav {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	transform: translateY(0);
	margin-bottom: 2rem;
}

.project-back-nav:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
	text-decoration: none;
	color: white;
}

.project-back-nav:hover svg {
	transform: translateX(-2px);
}

.project-back-nav:visited {
	color: white;
}

.project-back-nav svg {
	transition: transform 0.3s ease;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

/* Utilities */
.mb-8 {
	margin-bottom: 2rem;
}

/* Featured Image */
.project-featured-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 1.5rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Projects Grid */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

@media (max-width: 1024px) {
	.projects-grid {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.projects-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.project-card {
		margin: 0 auto;
		max-width: 400px;
	}
}

@media (max-width: 640px) {
	.projects-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 1rem;
	}
	
	.project-card {
		max-width: 100%;
	}
	
	.projects-filters {
		padding: 1rem;
	}
	
	.projects-filters .flex-col {
		gap: 1rem;
	}
	
	.lightbox-container {
		margin: 10px;
		max-width: calc(100vw - 20px);
		max-height: calc(100vh - 20px);
	}
	
	.lightbox-header {
		padding: 12px 15px;
		flex-wrap: wrap;
		gap: 10px;
	}
	
	.lightbox-controls {
		gap: 10px;
	}
	
	.lightbox-image {
		border-radius: 6px;
	}
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.loading {
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.project-card:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), 0 6px 15px rgba(0, 0, 0, 0.10);
}

.lightbox-btn:focus,
.lightbox-close:focus,
.lightbox-nav:focus {
	outline: 2px solid rgba(255, 255, 255, 0.8);
	outline-offset: 2px;
}

@media print {
	.projects-filters,
	.lightbox,
	.project-back-nav {
		display: none !important;
	}
	
	.project-card {
		break-inside: avoid;
		box-shadow: none;
		border: 1px solid #e5e7eb;
	}
}

@media (prefers-color-scheme: dark) {
	.project-card {
		background: #1f2937;
		border: 1px solid #374151;
	}
	
	.project-card h3 {
		color: #f9fafb;
	}
	
	.project-card p {
		color: #d1d5db;
	}
	
	.projects-filters {
		background: rgba(31, 41, 55, 0.95);
		border-color: #374151;
	}
}

.lightbox-image-wrapper::-webkit-scrollbar {
	width: 8px;
}

.lightbox-image-wrapper::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}

.lightbox-image-wrapper::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 4px;
}

.lightbox-image-wrapper::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.5);
}

.fade-in {
	animation: fadeIn 0.5s ease-in;
}

.slide-up {
	animation: slideUp 0.5s ease-out;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Project Navigation Styles */
.project-navigation {
	margin: 3rem 0;
	border-top: 1px solid #e5e7eb;
	padding-top: 2rem;
}

.project-nav-link {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	background: white;
}

.project-nav-link:hover {
	border-color: #263573;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
	text-decoration: none;
}

.project-nav-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #6b7280;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.project-nav-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.project-nav-link:hover .project-nav-title {
	color: #263573;
}

.project-nav-excerpt {
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.project-navigation .flex {
		flex-direction: column;
		gap: 1rem;
	}
	
	.project-navigation .flex-1 {
		flex: none;
	}
	
	.project-navigation .flex-shrink-0 {
		flex-shrink: 1;
	}
	
	.project-nav-link {
		padding: 1rem;
		text-align: center;
	}
}

/* Force orange styling to be overridden */
.project-navigation-bottom button[style*="orange"],
.project-navigation-bottom button[style*="orange"]:hover,
.project-navigation-bottom button[style*="orange"]:focus {
	background: #D9D9D9 !important;
	border-color: #D9D9D9 !important;
	color: #000000 !important;
}

/* ===== PROJECT SHOWCASE - PROPER FIGMA MATCH ===== */

.via-projects-showcase {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: #F9FAFB;
	padding: 20px 20px;
	min-height: 100vh;
	overflow-x: hidden;
}

.project-showcase-container {
	max-width: 1366px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.project-showcase-content {
	display: grid;
	grid-template-columns: 30% 70%;
	gap: 60px;
	align-items: start;
	width: 100%;
	box-sizing: border-box;
}

/* ===== LEFT COLUMN - PROJECT DETAILS ===== */
.project-details-section {
	padding-top: 0;
}

.project-showcase-title {
	font-family: 'Inter', sans-serif !important;
	font-style: normal !important;
	font-weight: 600 !important;
	font-size: 36px !important;
	line-height: 44px !important;
	color: #000000 !important;
	margin: 0 0 30px 0 !important;
	max-width: 400px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.project-details-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.detail-row {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.detail-label {
	font-family: 'Inter', sans-serif !important;
	font-style: normal !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	line-height: 19px !important;
	color: #000000 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.detail-value {
	font-family: 'Inter', sans-serif !important;
	font-style: normal !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 19px !important;
	color: #000000 !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* ===== RIGHT COLUMN - IMAGE SECTION ===== */
.project-images-section {
	position: relative;
}

.project-image-carousel {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	overflow: visible;
}

/* The main container that holds the image AND the arrows */
.carousel-container {
	position: relative;
	width: 100%;
	max-width: 535px;
	height: auto;
	aspect-ratio: 535/401;
	margin: 0 auto;
}

/* The actual image container */
.carousel-main-image {
	position: relative;
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	border-radius: 12px;
	overflow: hidden;
}

.carousel-main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===== NAVIGATION ARROWS - POSITIONED RELATIVE TO CAROUSEL-CONTAINER ===== */
.carousel-btn {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 50px !important;
	height: 50px !important;
	background: rgba(217, 217, 217, 0.9) !important;
	border: none !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	z-index: 999 !important;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.carousel-btn:hover {
	background: #c7c7c7 !important;
}

.carousel-btn:disabled {
	opacity: 0.5 !important;
	cursor: not-allowed !important;
}

/* Position arrows for desktop */
.carousel-prev {
	left: 15px !important;
}

.carousel-next {
	right: 15px !important;
}

/* Ensure buttons are visible on all screen sizes */
@media (min-width: 768px) {
	.carousel-prev {
		left: -40px !important;
	}

	.carousel-next {
		right: -40px !important;
	}
}

@media (min-width: 1024px) {
	.carousel-prev {
		left: -60px !important;
	}

	.carousel-next {
		right: -60px !important;
	}

	.carousel-btn {
		width: 55px !important;
		height: 55px !important;
	}
}

@media (min-width: 1400px) {
	.project-showcase-container {
		max-width: 90%;
	}

	.carousel-prev {
		left: -80px !important;
	}

	.carousel-next {
		right: -80px !important;
	}

	.carousel-btn {
		width: 60px !important;
		height: 60px !important;
		background: rgba(217, 217, 217, 0.95) !important;
	}

	.carousel-btn svg {
		width: 28px !important;
		height: 28px !important;
		stroke-width: 2.5 !important;
	}
}

@media (min-width: 1800px) {
	.project-showcase-container {
		max-width: 80%;
	}

	.carousel-prev {
		left: -70px !important;
	}

	.carousel-next {
		right: -70px !important;
	}

	.carousel-btn {
		width: 65px !important;
		height: 65px !important;
		background: rgba(217, 217, 217, 0.95) !important;
	}

	.carousel-btn svg {
		width: 30px !important;
		height: 30px !important;
		stroke-width: 2.5 !important;
	}
}

.carousel-btn svg {
	width: 24px !important;
	height: 24px !important;
	color: #666666 !important;
	stroke: #666666 !important;
	stroke-width: 2.5 !important;
	fill: none !important;
}

/* ===== THUMBNAILS ===== */
.carousel-thumbnails {
	display: flex;
	gap: 10px;
	margin-top: 15px;
	overflow-x: auto;
	padding-bottom: 10px;
	scroll-behavior: smooth;
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
	justify-content: center;
	width: 100%;
}

.thumbnail {
	flex: 0 0 80px;
	height: 60px;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.2s ease;
	opacity: 0.7;
}

.thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumbnail:hover {
	transform: scale(1.05);
	box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.16);
}

.thumbnail.active {
	box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.20);
}

/* ===== BOTTOM NAVIGATION ===== */
.project-navigation-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
	padding: 0;
}

.nav-btn {
	width: 161px !important;
	height: 36px !important;
	background: #D9D9D9 !important;
	border: none !important;
	border-radius: 6px !important;
	font-family: 'Inter', sans-serif !important;
	font-style: normal !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	line-height: 19px !important;
	color: #000000 !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	letter-spacing: 0 !important;
}

.nav-btn:hover:not(:disabled) {
	background: #c7c7c7 !important;
}

#next-project {
	background: #263573 !important;
	color: white !important;
}

#next-project:hover:not(:disabled) {
	background: #2563eb !important;
}

.nav-btn:disabled {
	background: #e5e5e5 !important;
	color: #999999 !important;
	opacity: 0.7 !important;
}

/* No projects state */
.no-projects {
	text-align: center;
	padding: 100px 20px;
	color: #666666;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
	.carousel-container {
		width: 100%;
		max-width: 500px;
	}
	
	.carousel-main-image {
		width: 100%;
		max-width: 500px;
	}
}

@media (max-width: 768px) {
	.via-projects-showcase {
		padding: 15px;
		overflow-x: hidden;
	}
	
	.project-showcase-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.project-image-carousel {
		padding: 0 10px;
	}
	
	.project-details-section {
		padding-top: 0;
		width: 100%;
		max-width: 100%;
	}
	
	.project-showcase-title {
		font-size: 24px !important;
		line-height: 1.2 !important;
		margin-bottom: 15px !important;
		max-width: none;
		word-break: break-word;
	}
	
	.project-details-grid {
		gap: 15px;
	}
	
	.detail-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	
	.detail-label {
		font-size: 14px;
	}
	
	.detail-value {
		font-size: 16px;
	}
	
	.project-images-section {
		width: 100%;
	}
	
	.carousel-container {
		width: 320px;
		height: 300px;
		max-width: 100%;
		position: relative;
		margin: 0 auto;
	}
	
	.carousel-main-image {
		width: 100%;
		height: 300px;
		max-width: 100%;
		border-radius: 8px;
	}
	
	.carousel-prev {
		left: 10px !important;
		top: 50% !important;
		transform: translateY(-50%);
		z-index: 10;
	}
	
	.carousel-next {
		right: 10px !important;
		top: 50% !important;
		transform: translateY(-50%);
		z-index: 10;
	}
	
	.carousel-btn {
		width: 44px !important;
		height: 44px !important;
		background: rgba(217, 217, 217, 0.95) !important;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
	}
	
	.carousel-btn svg {
		width: 22px !important;
		height: 22px !important;
		stroke-width: 3 !important;
	}
	
	.project-navigation-bottom {
		flex-direction: column;
		gap: 15px;
		margin-top: 30px;
		width: 100%;
	}
	
	.nav-btn {
		width: 100% !important;
		max-width: 200px !important;
	}
}

@media (max-width: 480px) {
	.thumbnail {
		flex: 0 0 70px;
		height: 55px;
	}
	
	.carousel-main-image {
		height: 340px;
	}
	
	.carousel-thumbnails {
		margin-top: 25px;
		padding-bottom: 20px;
	}
	
	.project-showcase-title {
		font-size: 22px !important;
	}
	
	.project-showcase-content {
		gap: 20px;
	}
	
	.carousel-btn {
		width: 40px !important;
		height: 40px !important;
		background: rgba(217, 217, 217, 0.95) !important;
	}
	
	.carousel-btn svg {
		width: 20px !important;
		height: 20px !important;
		stroke-width: 3 !important;
	}
	
	.nav-btn {
		width: 100%;
		padding: 12px;
		font-size: 14px;
	}
}

/* Temporarily hide Client / EPC Contractor section */
.detail-row:first-child {
	display: none !important;
}