@font-face {
	font-family: 'MADE Outer Sans';
	src: url('../fonts/MADEOuterSansThin.otf') format('opentype');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'MADE Outer Sans';
	src: url('../fonts/MADEOuterSansLight.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'MADE Outer Sans';
	src: url('../fonts/MADEOuterSansRegular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'MADE Outer Sans';
	src: url('../fonts/MADEOuterSansBold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'MADE Outer Sans';
	src: url('../fonts/MADEOuterSansBlack.otf') format('opentype');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--primary-color: #fff;
	--primary-hover-color: #fff;
	--primary-active-color: #fff;
	--secondary-color: #000;
	--background-color: #fff;
	--text-color: #333;
	--primary-light-color: #ccc;
	--heading-font: 'MADE Outer Sans', sans-serif;
	--body-font: 'MADE Outer Sans', sans-serif;
}

/* ====================== */
/*      BASE STYLES       */
/* ====================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.btn {
	border-radius: 0;
	font-weight: 100;
	font-size: small;
	padding: 10px 20px;
	transition: all ease-in-out 0.6s;
}

.gradient-white-text {
	background: linear-gradient(90deg, silver, #fff);
	background-size: 100% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: var(--body-font);
	font-size: 14px;
	font-weight: 100;
	color: var(--text-color);
	background-color: var(--background-color);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Navigation */
.navbar {
	background-color: #000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Nav Links */
header .nav-link {
	position: relative;
	color: #fff;
	font-size: 0.7rem;
	padding: 0 0.5rem !important;
	font-weight: 100;
	text-transform: uppercase;
	display: flex;
	align-items: center;
}

header .nav-link:hover,
header .nav-link.active {
	color: #fff !important;
}

/* Underline Hover */
header .nav-link::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	height: 3px;
	background: linear-gradient(90deg, #ffffff, #ffffff85);
	width: 0;
	transition: width 0.4s ease;
}

header .nav-link:hover::before,
header .nav-link.active::before {
	width: 100%;
}

/* Hover glow */
header .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -30px;
	height: 30px;
	background: rgba(255, 255, 255, 0.3);
	filter: blur(25px);
	opacity: 0;
	transition: opacity 0.4s ease;
}

header .nav-link:hover::after,
header .nav-link.active::after {
	opacity: 1;
}

/* Mobile Hidden Nav */
@media (max-width: 991px) {
	#navbarSupportedContent {
		display: none !important;
	}
}

/* Hamburger */
.navbar-toggler {
	border: none;
	background: #000;
	cursor: pointer;
}

.hamburger-icon {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 20px;
	height: 15px;
}

.hamburger-icon span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: white;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.navbar-toggler.open .hamburger-icon span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.navbar-toggler.open .hamburger-icon span:nth-child(2) {
	opacity: 0;
}

.navbar-toggler.open .hamburger-icon span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* Fullscreen Menu */
.fullscreen-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: black;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
	z-index: 999;
}

.fullscreen-menu.open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.fullscreen-menu ul {
	list-style: none;
	padding: 0;
	text-align: center;
}

.fullscreen-menu ul li {
	margin: 15px 0;
}

.fullscreen-menu ul li a {
	color: white;
	font-size: 1.3rem;
	text-decoration: none;
	transition: color 0.3s;
}

.fullscreen-menu ul li a:hover {
	color: var(--primary-color, #f5b400);
}

/* Close Button */
.close-menu {
	position: absolute;
	top: 20px;
	right: 30px;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
}

/* Submenu */
.fullscreen-menu ul li.has-submenu .menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	font-size: 1.3rem;
}

.toggle-icon {
	margin-left: 8px;
	font-size: 1.3rem;
	transition: transform 0.3s ease;
}

.fullscreen-menu ul li.has-submenu .submenu {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.4s ease;
}

.fullscreen-menu ul li.has-submenu.open .submenu {
	max-height: 500px;
	opacity: 1;
	margin-top: 10px;
}

.fullscreen-menu ul li.has-submenu.open .toggle-icon {
	transform: rotate(180deg);
}

/* Desktop Dropdown */

.dropdown-wrapper .dropdown-menu-custom {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	background: #000;
	color: #fff;
	padding: 0.5rem 0;
	margin: 0;
	list-style: none;
	border-radius: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.6s ease-in-out;
	z-index: 999;
}

.dropdown-wrapper:hover .dropdown-menu-custom {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu-custom li a {
	display: block;
	padding: 6px 20px;
	color: #fff;
	text-decoration: none;
	font-size: 0.7rem;
}

.dropdown-menu-custom li a:hover {
	background: rgba(255, 255, 255, 0.1);
}


/* Hero Section */
.hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	/* full viewport height */
	overflow: hidden;
}

.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.hero-section .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	/* dark overlay for contrast */
	z-index: 1;
}

.hero-section .container {
	z-index: 2;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
}

/* Section Styling */
.section-title {
	font-weight: 700;
	margin-bottom: 2rem;
	position: relative;
	padding-bottom: 10px;
}

.section-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background-color: var(--metro-gold);
}


.signage-card {
	transition: transform 0.4s ease, filter 0.4s ease;
}

.signage-card img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: transform 0.4s ease;
	position: relative;
}

.signage-card::before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	display: block;
	background: rgb(0, 0, 0, .2);
	content: '';
	z-index: 1;
}

.signage-card:hover img {
	transform: scale(1.05);
	filter: brightness(0.8);
}

.caption {
	position: absolute;
	bottom: 15px;
	left: 15px;
	color: #fff;
	font-weight: 300;
	text-transform: uppercase;
	font-size: 0.9rem;
	z-index: 2;
	text-align: start;
	width: 100%;
}

/* Cards */
.service-card {
	border: none;
	border-radius: 0;
	transition: transform 0.3s ease;
	height: 100%;
	background: #000;
}

.service-card:hover {
	transform: translateY(-5px);
}


/* Flip Cards */
.flip-card {
	perspective: 1000px;

}

.flip-card-inner {
	position: relative;
	width: 100%;
	aspect-ratio: 4/5;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

.flip-card-inner::before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	display: block;
	background: rgb(0, 0, 0, .2);
	content: '';
	z-index: 1;
}

.flip-card-inner h3 {
	text-transform: uppercase;
	z-index: 2;
}

.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
	position: absolute;
	width: 100%;
	aspect-ratio: 4/5;
	overflow: hidden;
	backface-visibility: hidden;
}

.flip-card-front img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
}

.overlay-text {
	position: absolute;
	bottom: 20px;
	left: 20px;
	font-weight: 300;

}

.flip-card-back {
	border: #ccc 1px solid;
	transform: rotateY(180deg);
	padding: 1rem;
	z-index: 2;

}

#project .service-card img {
	aspect-ratio: 5 / 3;
	object-fit: cover;
}


.products {
	background: #fff;
}

.scroll-container {
	overflow: hidden;
	position: relative;
}

.scroll-track {
	display: flex;
	gap: 1rem;
	animation: scrollLeft 40s linear infinite;
}

.scroll-track:hover {
	animation-play-state: paused;
}

@keyframes scrollLeft {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.product-card {
	width: 270px;
	border: 1px solid #e6e6e6;
	background: #fff;
	flex-shrink: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-card img {
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
}

.product-card .card-body {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.product-card h3.fs-5 {
	min-height: 48px;
	display: flex;
	align-items: center;
	font-weight: 300;
}

.product-card .btn-dark {
	border-radius: 0;
	text-transform: uppercase;
	width: fit-content;
}


/* Stats Section */

.stats-row {
	position: relative;
}

.stat-item {
	position: relative;
}

.stat-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background-color: #dcdcdc;
}

.stat-item:last-child::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background-color: #dcdcdc;
}

@media (max-width: 767.98px) {

	.stat-item:last-child::after,
	.stat-item::before {
		display: none;
	}
}

.stat-number {
	color: #666;
	transition: color 0.3s ease;
	font-weight: 100;
}

.stat-number:hover {
	color: #666;
}

.logo-slider {
	overflow: hidden;
	position: relative;
	white-space: nowrap;
}

.logo-track {
	display: flex;
	width: calc(250px * 12);
	animation: scroll 25s linear infinite;
}

.logo-track img {
	width: 180px;
	height: auto;
	margin: 0 40px;
	filter: grayscale(100%);
	opacity: 0.8;
	transition: all 0.3s ease;
}

.logo-track img:hover {
	filter: grayscale(0);
	opacity: 1;
	transform: scale(1.05);
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 768px) {
	.logo-track img {
		width: 120px;
		margin: 0 20px;
	}
}

#insights .service-card img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

/* Footer */
footer {
	background-color: #000;
	color: #aaa;
}

.icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #f1f1f1;
	font-size: 14px;
	transition: all 0.3s ease;
	vertical-align: middle;
}

.icon-circle:hover {
	background-color: #fff;
	color: #000;
	border-color: #fff;
}

.social-icons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #f1f1f1;
	font-size: 14px;
	transition: all 0.3s ease;
}

.social-link:hover {
	background-color: #fff;
	color: #000;
	transform: translateY(-3px);
}

collab-section {
	background-color: #000;
	/* optional if you want dark bg */
	color: #fff;
}

.collab-box {
	border: 1px solid rgba(255, 255, 255, 0.25);
	background-color: transparent;
	transition: all 0.3s ease;
}

.collab-box:hover {
	border-color: rgba(255, 255, 255, 0.5);
}

footer ul {
	list-style: none;
	padding-left: 0;
}

footer ul li {
	margin-bottom: 0.5rem;
}

footer ul li a {
	color: #aaa;
	text-decoration: none;
	transition: color 0.3s ease;
}

footer ul li a:hover {
	color: white;
}

/* Client Logos */
.client-logos img {
	filter: grayscale(100%);
	transition: filter 0.3s ease;
	max-height: 60px;
}

.client-logos img:hover {
	filter: grayscale(0%);
}

/* Building Directory */
.building-directory {
	background-color: #f8f9fa;
	padding: 30px;
	border-left: 5px solid var(--metro-gold);
}

.floor-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-color);
}

.floor-label {
	font-size: 0.9rem;
	color: #666;
}