@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ==============================
   Gotham Font Family
   Path: /assets/fonts/
   ============================== */

   @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Light.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
  }
  
  @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-LightItalic.otf') format('opentype');
	font-weight: 300;
	font-style: italic;
  }
  
  @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Book.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
  }
  
  @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-BookItalic.otf') format('opentype');
	font-weight: 400;
	font-style: italic;
  }
  
  @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
  }
  
  @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-MediumItalic.otf') format('opentype');
	font-weight: 500;
	font-style: italic;
  }
  
  @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
  }
  
  @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-BoldItalic.otf') format('opentype');
	font-weight: 700;
	font-style: italic;
  }
  
  @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Black.otf') format('opentype');
	font-weight: 900;
	font-style: normal;
  }
  
  @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-BlackItalic.otf') format('opentype');
	font-weight: 900;
	font-style: italic;
  }
  
  /* Optional Ultra & Thin variants */
  @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Thin.otf') format('opentype');
	
	font-style: normal;
  }
  
  @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Ultra.otf') format('opentype');
	font-weight: 950;
	font-style: normal;
  }
  

: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: 'Gotham';
	--body-font: "Poppins", sans-serif;
}

/* ====================== */
/*      BASE STYLES       */
/* ====================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.btn {
	border-radius: 0;
	padding: 10px;
	transition: all ease-in-out 0.6s;
	font-size: 0.8rem;
}
.form-check{
	min-height: 1.7rem;
}
.form-check-input:checked{
	background-color: #000;
    border-color: #000;
}
.gradient-white-text {
	background: linear-gradient(90deg, silver, #fff);
	background-size: 100% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.gradient-black-text {
	background: linear-gradient(90deg, rgb(0, 0, 0), #808080);
	background-size: 100% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: fit-content;
}
.text-justify{
	text-align: justify ;
}
.theme-list ul {
	display: flex;
	flex-direction: column;
	gap: 8px;              
	padding-left: 1.25rem;  
	margin-bottom: 0;       
  }
  
html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: var(--body-font);
	font-size: 14px;
	font-weight: 400;
	color: var(--text-color);
	background-color: var(--background-color);
	line-height: 1.6;
	overflow-x: hidden;
}
@media (max-width: 576px) {
  html {
    font-size: 13px;
  }
}

.text-off-white{
	color: #e0e0e0;
}

/* ---------------------------
   NAVBAR / HEADER
   --------------------------- */
   .navbar {
	background-color: #000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-brand .logo {
	height: 40px;
}

/* For mobile screens (max width 576px in Bootstrap) */
@media (max-width: 576px) {
	.navbar-brand .logo {
		height: 30px;
	}
}

/* Nav Links */
header .nav-link {
	position: relative;
	color: #fff;
	padding: 0 0.5rem !important;
	font-weight: 400;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	font-size: 0.8rem;
}

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;	
	align-items: start;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
	z-index: 999;
	padding-top:50px;
	padding-top:50px;
}

.fullscreen-menu.open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.fullscreen-menu ul {
	list-style: none;
	padding: 0;	
}

.fullscreen-menu ul li {
	margin: 8px 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;
}

/* Ensure the toggle icon can rotate (inline-block) and has a smooth transition */
.toggle-icon {
	margin-left: 8px;
	font-size: 1.3rem;
	transition: transform 0.3s ease;
	display: inline-block; /* <- important for rotation */
	transform-origin: center center;
}

/* First-level submenu (accordion) */
.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 .submenu li a {
	font-size: 1.1rem;
    color: #aaa;
}

/* open state for first-level submenu */
.fullscreen-menu ul li.has-submenu.open .submenu {
	max-height: 500px;
	opacity: 1;
	margin-top: 10px;
}

/* rotate icon when open for first-level */
.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: 250px;
	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.8rem;
}

.dropdown-menu-custom li a:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Second-Level Desktop Dropdown */
.sub-dropdown-wrapper {
	position: relative;
}

.sub-dropdown-menu {
	position: absolute;
	top: 0;
	left: 100%;
	min-width: 300px;
	background: #000;
	padding: 0.5rem 0;
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.6s ease-in-out;
	z-index: 1000;
}

.sub-dropdown-wrapper:hover .sub-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Links inside second-level */
.sub-dropdown-menu li a {
	display: block;
	padding: 6px 20px;
	font-size: 0.8rem;
	color: #fff;
	text-decoration: none;
}

.sub-dropdown-menu li a:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* ---------------------------
   MOBILE SECOND LEVEL FIXES
   - ensure second-level (nested) toggles rotate correctly
   - ensure second-level li font-size is 1rem
   --------------------------- */

/* Hide ONLY second-level submenus by default */
.fullscreen-menu .submenu .has-submenu .submenu {
	display: none;
}

/* Show second-level submenu when open */
.fullscreen-menu .submenu .has-submenu.open > .submenu {
	display: block;
}

/* Second-level submenu links â€“ 1rem font size on mobile
   Increased specificity to ensure it overrides other rules */
@media (max-width: 991px) {
	.fullscreen-menu .submenu .has-submenu .submenu li a {
		font-size: 0.9rem !important; 
		color:#aaa;
	}
}

/* Second-level submenu toggle: make sure rotation applies to nested toggles too.
   NOTE: removed the child-only selector and use descendant to match markup. */
.fullscreen-menu .submenu .has-submenu .toggle-icon {
	transition: transform 0.3s ease;
	cursor: pointer;
	display: inline-block;
}

/* THIS is the important fix â€” match placement of .toggle-icon inside .menu-toggle.
   Use descendant selector (not >) so it matches your structure. */
.fullscreen-menu .submenu .has-submenu.open .toggle-icon {
	transform: rotate(180deg);
}

/* safety */
.icon-bar img{
	height: 25px;
}

/* ====================== */
/*     HOME PAGE START     */
/* ====================== */


/* 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 Section Styles --- */

  /* --- Signage Section Styles --- */
.signage-card {
	transition: transform 0.4s ease, filter 0.4s ease;
	position: relative;
  }
  
  .signage-card img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: transform 0.4s ease;
  }
  
  .signage-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
  }
  
  .signage-card:hover img {
	transform: scale(1.05);
	filter: brightness(0.8);
  }
  .signage-card .caption a
  {
  color:#fff !important;
  text-decoration:none !important;
  }
  
  /* --- Scroll Area --- */
  .signage-scroll {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	gap: 1rem; /* Equal space between items */
	padding: 0 0.75rem 1rem 0; /* Start tight, add end space for last item */
	scroll-snap-type: x mandatory;
  }
  
  .signage-scroll::-webkit-scrollbar {
	display: none;
  }
  
  /* --- Item Layout --- */
  .signage-item {
	flex: 0 0 50%;
	scroll-snap-align: start;
	box-sizing: border-box;
  }
  
  @media (min-width: 992px) {
	.signage-item {
	  flex: 0 0 24%;
	}
  }
  
  /* --- Scroll Buttons --- */
  .btn-prev,
  .btn-next {
	opacity: 0.9;
	transition: opacity 0.3s ease;
  }
  .btn-prev:hover,
  .btn-next:hover {
	opacity: 1;
  }
  
  /* --- Button Wrapper Positioning --- */

	.signage-controls {
	  left: auto;
	  right: 0.75rem;
	  position: absolute;	  
	}  
  
  /* --- Caption on Image --- */
  .caption {
	position: absolute;
	bottom: 15px;
	left: 15px;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	z-index: 2;
	text-align: start;
	width: calc(100% - 30px);
  }
  

/* 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;	
	display: flex;
	flex-direction: column;
	height: 100%;
  }
  
  .flip-card-inner {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5;
	transition: transform 0.8s;
	transform-style: preserve-3d;
	flex: 1;
  }

  .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:hover .flip-card-inner {
	transform: rotateY(180deg);
  }
  
  /* Front & Back Faces */
  .flip-card-front,
  .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	overflow: hidden;	
  }
  
  .flip-card-front img,
  .flip-card-back img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  /* Overlay heading on front */
  .overlay-text {
	position: absolute;
	bottom: 20px;
	left: 20px;
	font-weight: 300;
	z-index: 2;
	color: #fff;
	text-transform: uppercase;
  }
  
  /* Back Side */
  .flip-card-back {
	transform: rotateY(180deg);	
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.6);
	z-index: 3;	
  }
  
  .flip-card-back .p-3 {
	display: flex;
	flex-direction: column;
	justify-content: end;
	flex: 1;
	height: 100%;
  }
  
  .flip-card-back h3 {
	text-transform: uppercase;
	margin-bottom: 0.75rem;	
	}
  
  /* Equal paragraph height via flex-basis */
  .flip-card-back p {
	min-height: 70px;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 1rem;
	}
  
  .flip-card-back .btn {
	text-transform: uppercase;	
	align-self: flex-start;
	cursor: pointer;
  }
  
  /* Equal height grid columns */
  .row.g-4 > [class*='col-'] {
	display: flex;
  }
  .flip-card {
	flex: 1;
  }
  @media (min-width: 992px) { /* lg breakpoint */
  .h-lg-auto {
    height: auto !important;
  }
}

  /* ========== MOBILE VERSION ========== */
  @media (max-width: 767.98px) {
	.flip-card-inner {
	  transform: none !important;
	  aspect-ratio: auto;
	  position: relative;
	  display: flex;
	  flex-direction: column;
	  height: auto;
	}
  
	.flip-card-front {
	  display: none !important;
	}
  
	.flip-card-back {
	  transform: none !important;
	  position: relative;	 
	  display: flex;
	  flex-direction: column;
	  height: 100%;
	}
  
	.flip-card-back img {
	  width: 100%;
	  height: auto;
	  aspect-ratio: 5 / 4;
	  object-fit: cover;
	  display: block;
	}
	.flip-card-back h3 {
		text-transform: uppercase;
		margin-bottom: 0.75rem;
		}
	  
	.flip-card-back .p-3 {
	  flex: 1;
	  display: flex;
	  flex-direction: column;
	  justify-content: end;	 
	  padding-top: 1.25rem !important;
	  padding-bottom: 1.25rem !important;
	}
  
	.flip-card-back p {
	  min-height: 100px;
	  overflow: hidden;
	}
  }
  
  
/* --- Project Scroll Section --- */
.project-scroll {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	gap: 1rem; /* space between cards */
	padding: 0 0.75rem 1rem 0; /* avoid start gap, keep end padding */
	scroll-snap-type: x mandatory;
  }
  #project .service-card img {
    aspect-ratio: 5 / 3;
    object-fit: cover;
}
  .project-scroll::-webkit-scrollbar {
	display: none;
  }
  
  .project-item {
	flex: 0 0 100%;
	scroll-snap-align: start;
	box-sizing: border-box;
  }
  
  @media (min-width: 992px) {
	.project-item {
	  flex: 0 0 50%; 
	}
  }
  
  /* --- Buttons --- */
  .project-controls {
	left: auto;
	right: 0.75rem;
	position: absolute;
}

  .btn-prev,
  .btn-next {
	opacity: 0.9;
	transition: opacity 0.3s ease;
  }
  .btn-prev:hover,
  .btn-next:hover {
	opacity: 1;
  }
  
  .products {
	position: relative;
  }
  
  .scroll-container {
	position: relative;	
  }
  
  .scroll-track {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	gap: 1rem;
	scroll-snap-type: x mandatory;
  }
  
  .scroll-track::-webkit-scrollbar {
	display: none;
  }
  
  .product-card {
	flex: 0 0 50%;
    background: #fff;
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    scroll-snap-align: start;

  }
  
  .product-card:hover {
	transform: translateY(-4px);
  }
  
  @media (min-width: 992px) {
	.product-card {
	  flex: 0 0 24%; /* 4 visible on desktop */
	}
  }
  
  .product-card img {
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
  }
  
  .product-card .card-body {
	padding: 1rem;
	}
  
	.product-card h3.fs-5 {	
		display: flex;	
		justify-content: flex-start;
		min-height: 48px;
		}
		@media (max-width: 767.98px) {
			.product-card h3.fs-5 {				
				min-height: 60px;
				}
		  }
  .product-card .btn-dark {
	border-radius: 0;
    text-transform: uppercase;
    width: fit-content;   
  }
  
  /* Scroll Controls */
  .product-controls {
	position: absolute;
	bottom: 0;
	left: auto;
	right: 0.75rem;	
  }
  
  
  .product-controls .btn:hover {
	opacity: 1;
  }
  
/* 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;
	
}

.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;
}
footer .logo{
	height: 30px;
}
.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: #000;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	font-size: 14px;
	transition: all 0.3s ease;
}

.social-link:hover {	
	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;
}

/* ====================== */
/*     HOME PAGE END     */
/* ====================== */


/* ====================== */
/*     CATEGORY PAGE START     */
/* ====================== */

.hero-banner{
	position: relative;
}

.hero-banner img {
	aspect-ratio: 4 / 1;
	width: 100%;
	object-fit: cover;
  }
  
  /* Small devices (Ã¢â€°Â¥576px and <992px) */
  @media (max-width: 991.98px) {
	.hero-banner img {
	  aspect-ratio: 2 / 1;
	}
  }
  
  /* Extra small devices (<576px) */
  @media (max-width: 575.98px) {
	.hero-banner img {
	  aspect-ratio: 1 / 1;
	}
  }
  
.hero-banner::before{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;	
}

.hero-banner-text{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
	text-align: center;	
}

.category-img{
	position: relative;
	overflow: hidden;
}
.category-img img{
	width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 0.6s;
}
.category-img:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}


#product .card{	
	transition: transform 0.6s;
}
#product .card:hover{
	transform: translateY(-4px);
}
#product .card .product-img{
	aspect-ratio: 5 / 4;
	object-fit: cover;	
}
#product .card h3{
    display: flex;    
    justify-content: flex-start;
}

/* Remove Bootstrap's default arrow completely */
.accordion-button::after {
	display: none !important;
  }
  
  /* Remove outline and shadow */
  .accordion-button:focus,
  .accordion-button:active {
	box-shadow: none !important;
	outline: none !important;
  }
  
  /* Icon rotation on open */
  .accordion-button i {
	transition: transform 0.3s ease;
  }
  
  .accordion-button:not(.collapsed) i {
	transform: rotate(180deg);
  }
  

/* ====================== */
/*     CATEGORY PAGE END     */
/* ====================== */

/* ====================== */
/*     PRODUCT PAGE START     */
/* ====================== */

#quoteModal input::placeholder,
#quoteModal textarea::placeholder {
  color: #fff;
  opacity: 1; /* ensures full visibility */
}

#quoteModal .form-control{
	font-size: 14px;
}

.thumbs-vertical {
   display: flex;
   flex-direction: column;
   width: 25%;
   height: 480px;
   overflow-x: hidden;
   overflow-y: auto;
   gap: 10px;
   padding-right: 6px;
   }
/* Each thumbnail height: 1/3 of container minus gaps */
.thumb {
  flex: 0 0 calc((100% - 20px) / 3); /* 3 thumbs + 2 gaps */
  border: none;
  background: transparent;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.thumb.active img {
  border: 2px solid #111;
}

/* Scrollbar styling */
.thumbs-vertical::-webkit-scrollbar {
  width: 6px;
}

.thumbs-vertical::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}
#mainImageWrapper {
    width: 75%;
    
  }
  #mainImage{
   width: 100%;
   border-radius: 8px;
   height: 480px;
   object-fit: cover;
  }
/* ---- Mobile: horizontal ---- */
@media (max-width: 991.98px) {
  .gallery-wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }
  #mainImageWrapper {
    width: 100%;
  }
  

  .thumbs-vertical {
    flex-direction: row;
    width: 100%;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    padding-bottom: 6px;
  }

  .thumb {
    flex: 1 0 calc((100% - 20px) / 3);
    height: auto;
  }

  .thumbs-vertical::-webkit-scrollbar {
    height: 6px;
  }
}

/* ====================== */
/*     PRODUCT PAGE END     */
/* ====================== */

/* ====================== */
/*     PROJECT PAGE START     */
/* ====================== */
.project-hero-banner {
    position: relative;
}
.project-hero-banner img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
.project-hero-banner::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
@media (max-width: 575.98px) {
	.project-hero-banner img {
	  aspect-ratio: 1 / 1;
	}
  }

  #project .product-card img,  #projectsGrid .product-card img{
	aspect-ratio: 2 / 1;
  }


 /* Testimonial section styling */
#testimonialCarousel .carousel-inner {
	min-height: 220px; 
  }
  
  #testimonialCarousel .carousel-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
  }
  
  /* Controls width and spacing of testimonial text */
  .testimonial-content {
	max-width: 750px;
	min-height: 200px;
  }
  
  /* Rotates the closing quote icon */
  .rotate-180 {
	transform: rotate(180deg);
  }
  
  /* Optional: smoother transition for fade */
  .carousel-fade .carousel-item {
	transition: opacity 1s ease-in-out;
  }
  
  #projectFilterSelect, #projectFilterSelect option, #projectFilters button{
	text-transform: uppercase;
  }
  .project-card img{
	object-fit: cover;
	aspect-ratio: 2 / 1 ;
  }
  #certifications .icon{
	height: 80px;
	object-fit: contain;
	aspect-ratio: initial;
	}

.achievements{
	background: #000;
	width: fit-content;
	padding: 10px 20px;
	border-radius: 50px;
	color: #FFF;
}

.three-col-lg ul {
    margin: 0;
    padding-left: 1.2rem;
    columns: 1;          /* Mobile: 1 column */
}

.three-col-lg ul li {
    margin-bottom: 1rem;
    padding: 0 10px;
}

/* Medium screens (md â‰¥ 768px): 2 columns */
@media (min-width: 768px) {
    .three-col-lg ul {
        columns: 2;
    }
}

/* Large screens (lg â‰¥ 992px): 3 columns */
@media (min-width: 992px) {
    .three-col-lg ul {
        columns: 3;
    }
}


.thumbnail-wrap {
	position: relative;
	overflow: hidden;
	cursor: pointer;
  }
  
  .thumbnail-wrap .thumb {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 0;
  }
  

  .play-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	width:36px;         
	height: 36px;
	transform: translate(-50%, -50%);
	z-index: 2;
	pointer-events: none;   
	filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
  }
  
  
  .video-card .thumbnail-wrap {
	outline: none;
  }
  

/* Testimonail Scroll */


  
  .scroll-track {
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	gap: 1rem;
	padding-bottom: 0.25rem; 
  }
  
  /* hide desktop scrollbar if you want */
  .scroll-track::-webkit-scrollbar { height: 8px; }
  .scroll-track::-webkit-scrollbar-thumb { border-radius: 999px; }
  
  /* Make trainee cards a fixed fraction of the container so N cards fit exactly */
  .testimonial-card {	
	box-sizing: border-box;	
	flex: 0 0 auto;
	border-radius: 0;
	border-color: #666;
  }
  
 
  @media (max-width: 767.98px) {
	.testimonial-card { width: calc(100%); }
  }
  
  @media (min-width: 768px) and (max-width: 991.98px) {
	.testimonial-card {
	  width: calc((100% - 1rem) / 2);
	}
  }
  
  @media (min-width: 992px) {
	.testimonial-card {
	  width: calc((100% - 2 * 1rem) / 3);
	}
  }
  
  /* Equal height: card-inner uses flex column and h-100 to stretch; footer pushed to bottom with mt-auto */
  .card-inner { min-height: 100%; }
  
  /* Optional small tweak so images don't overflow */
  .quote-img { max-width: 48px; height: auto; display: block; }
  
  @media (min-width: 992px) {
  .contact-form{
	transform: translateY(-50px);
	position: relative;
	}
}
.contact-form .form-control {
    font-size: 14px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #fff;
  opacity: 1; 
}


.fav-btn.active{
	background: #000;
	border-radius: 8px;
}
.fav-btn.active img{
filter: brightness(0) invert(1);
}
.wpcf7 form p {
    margin: 0;
    padding: 0;
    display: contents; 
}
