/* ====================== */
/*      FONT DEFINITIONS   */
/* ====================== */
@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;
}


/* ====================== */
/*    GLOBAL VARIABLES    */
/* ====================== */
:root {
	--primary-color: #fff;
	--primary-hover-color: #fff;
	--primary-active-color: #fff;
	--secondary-color: #E15CD6;
	--background-color: #fff;
	--text-color: #333;
	--heading-font: 'MADE Outer Sans', sans-serif;
	--body-font: 'MADE Outer Sans', sans-serif;
}


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

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;	
}


/* ====================== */
/*    LAYOUT & CONTAINERS */
/* ====================== */
@media (min-width: 1600px) {
	.container {
		max-width: 1440px;
	}
}

@media (min-width: 1920px) {
	.container {
		max-width: 1600px;
	}
}


/* Responsive container padding calculations */
@media (min-width: 992px) {

	/* lg */
	.ps-container-align {
		padding-left: calc((100vw - 960px) / 2) !important;
	}
}

@media (min-width: 1200px) {

	/* xl */
	.ps-container-align {
		padding-left: calc((100vw - 1140px) / 2) !important;
	}
}

@media (min-width: 1400px) {

	/* xxl */
	.ps-container-align {
		padding-left: calc((100vw - 1320px) / 2) !important;
	}
}

@media (min-width: 1600px) {
	.ps-container-align {
		padding-left: calc((100vw - 1440px) / 2) !important;
	}
}

@media (min-width: 1920px) {
	.ps-container-align {
		padding-left: calc((100vw - 1600px) / 2) !important;
	}
}


/* ====================== */
/*      TYPOGRAPHY        */
/* ====================== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font);
	margin-bottom: 10px;
	font-weight: 100;
}

p {
	margin-bottom: 15px;
}

.gradient-text {
	background: linear-gradient(90deg, #000000, silver, silver);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 900;
	text-transform: uppercase;
	display: inline;
}

.text-primary {
	color: var(--primary-color) !important;
}

.text-secondary {
	color: var(--secondary-color) !important;
}

.text-white-grey {
	color: #c1c1c1 !important;
}

.text-justify {
	text-align: justify;
}

/* ====================== */
/*      LINKS & BUTTONS   */
/* ====================== */
a {
	color: #000;
	text-decoration: none;
	transition: color 1s ease-in-out;
}

.btn {
	padding: 10px 20px;
	font-size: 12px;
	text-decoration: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	border-radius: var(--border-radius);
	justify-content: center;
	font-weight: 300;
}

.btn-dark {
	background: #000;
	border: #000;
	transition: all ease-in-out 0.6s;
}

.btn-light {
	background: #fff;
	border: #fff;
	transition: all ease-in-out 0.6s;
}

.btn-light:hover {
	background: #fff;
	border: #fff;
	box-shadow: 0 0 12px 3px #ffffffaa;
	transform: translateY(-1px);
}

.btn-transparent {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
	transition: background 1s, color 1s;
	position: relative;
}

.btn-transparent:hover {
	border: 1px solid #fff;
	color: #000;
	background: #fff;
}

.btn-transparent span {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 8px;
	position: relative;
}

.btn-transparent span::after {
	content: "";
	width: 16px;
	height: 16px;
	background-image: url('../images/arrow.png');
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s ease-in-out;
}

.btn-transparent:hover span::after {
	transform: translate(5px, -50%);
	filter: invert(1);
}

.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--primary-color);
	--bs-btn-border-color: var(--primary-color);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--primary-hover-color);
	--bs-btn-hover-border-color: var(--primary-hover-color);
	--bs-btn-focus-shadow-rgb: 88, 189, 220;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--primary-active-color);
	--bs-btn-active-border-color: var(--primary-active-color);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: var(--primary-color);
	--bs-btn-disabled-border-color: var(--primary-color);
}


/* ====================== */
/*      FORM ELEMENTS     */
/* ====================== */
input,
textarea {
	padding: 10px;
	border-radius: var(--border-radius);
}

textarea {
	resize: vertical;
}

.form-control,
.form-select {
	font-weight: 100;
	color: #000;
	padding: 0.75rem;
	font-size: 13px
}

.search-box .form-control,
.search-box .form-select {
	background: transparent;
}

.form-control::placeholder,
.form-select::placeholder {
	color: #ffffff !important;
	opacity: 1;
}

.form-control:focus,
.form-select:focus {
	box-shadow: none;
}

#file-name {
	color: #ffffff80;
	font-size: 14px;
	display: none;
}


/* ====================== */
/*      PRELOADER         */
/* ====================== */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader-logo img {
	animation: pulseLogo 1.2s infinite ease-in-out;
	filter: contrast(1) invert(1);
}

@keyframes pulseLogo {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(0.8);
		opacity: 0.8;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}


/* ====================== */
/*      HEADER/NAV        */
/* ====================== */
.logo {
	filter: contrast(1) invert(1);
}

header {
	background: #000;
	position: relative;
	padding: 5px 0;
}

.header-bar.header-bar-black {
	background: #000000;
	border-radius: 50px;
}

header .nav-link {
	position: relative;
	color: #fff;
	font-size: 0.7rem;
	padding: 0 0.5rem !important;
	font-weight: 100;
	z-index: 1;
	text-transform: uppercase;
	height: 100%;
	display: flex;
	align-items: center;
}

header .nav-link:hover,
header .nav-link.active,
header .nav-link:visited {
	color: #fff !important;
}

header .nav-link::before,
header .nav-link.active::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;
	z-index: 3;
}

header .nav-link::after,
header .nav-link.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -30px;
	height: 30px;
	background: rgb(255 255 255 / 30%);
	filter: blur(25px);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 2;
}

header .nav-link:hover::before,
header .nav-link.active::before {
	width: 100%;
}

header .nav-link:hover::after,
header .nav-link.active::after {
	opacity: 1;
}

header .header-enquire,
.footer-above .footer-enquire {
	background: #fff;
	color: #000;
	border-radius: 72px;
	box-shadow: 0 0 12px 3px #ffffffaa;
	transition: all 0.4s ease-in-out;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
}

header .header-enquire:hover,
.footer-above .footer-enquire:hover {
	box-shadow: 0 0 16px 4px #ffffffaa;
	transform: translateY(-1px);
}

/* Mobile Navigation */
@media (max-width: 991px) {
	#navbarSupportedContent {
		display: none !important;
	}
}

.navbar-toggler {
	border: none;
	background: #000;
	outline: none;
	cursor: pointer;
	border-radius: 0;
}

.hamburger-icon {
	border: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 20px;
	height: 15px;
	cursor: pointer;
}

.hamburger-icon span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: white;
	border-radius: 2px;
	transition: all 0.3s ease-in-out;
}

.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 Base === */
.fullscreen-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: black;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 999;
}

.fullscreen-menu.open {
	opacity: 1;
	visibility: visible;
}

.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);
}

/* === Close Button === */
.close-menu {
	position: absolute;
	top: 20px;
	right: 30px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	color: #fff;
}

.close-menu i {
	font-size: 1.5rem;
}

/* === Submenu Styles === */
.fullscreen-menu ul li.has-submenu {
	position: relative;
}

.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;
	text-decoration: none;
}

.fullscreen-menu ul li.has-submenu .toggle-icon {
	margin-left: 8px;
	font-size: 1.3rem;
	transition: transform 0.3s ease;
}

/* Default hidden submenu */
.fullscreen-menu ul li.has-submenu .submenu {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

/* Submenu open state */
.fullscreen-menu ul li.has-submenu.open .submenu {
	max-height: 500px; /* enough to fit links */
	opacity: 1;
	margin-top: 10px;
}


/* Submenu links */
.fullscreen-menu ul li.has-submenu .submenu li {
	margin: 10px 0;
}

.fullscreen-menu ul li.has-submenu .submenu li a {
	font-size: 1.1rem;
	color: #ddd;
	transition: color 0.3s;
}

.fullscreen-menu ul li.has-submenu .submenu li a:hover {
	color: var(--primary-color);
}


/* ====================== */
/*      VIDEO SECTIONS    */
/* ====================== */
.video-container {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.video-container video {
	position: absolute;
	top: 0%;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-container-bottom {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 100%;
}

.video-container::before {
	position: absolute;
	content: '';
	display: block;
	background: #000;
	width: 100%;
	height: 100%;
	bottom: 0;
}

.text-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	color: #fff;
	z-index: 1;
}

.video-sub-container {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 300px 0;
}

.video-sub-container video {
	position: absolute;
	top: 0%;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-sub-container::after {
	position: absolute;
	content: '';
	display: block;
	background: linear-gradient(270.06deg, #000000 11.77%, rgba(0, 0, 0, 0) 74.11%);
	height: 100%;
	width: 100%;
	top: 0;
}

.video-sub-container::after {
	position: absolute;
	content: '';
	display: block;
	background: linear-gradient(180.36deg, #000000 15.61%, rgba(0, 0, 0, 0.382459) 67.53%, rgba(0, 0, 0, 0) 91.21%);
	height: 50%;
	width: 100%;
	z-index: 1;
	top: 0;
}

.social-bar {
	display: flex;
	align-items: center;
	gap: 1.5rem;
  }
  
  .social-icon {
	position: relative;
	width: 30px;
	height: 30px;
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	transition: all 0.6s ease-in-out;
	}
  
  .social-icon i {
	font-size: 14px;
	}
  
  /* Hover effect */
  .social-icon:hover {
	background: #fff;
	color: #000;
  }
  

/* ====================== */
/*      CARDS             */
/* ====================== */
.card {
	border-radius: 0;
	border-color: #e7e7e7;
}

#services-home .card {
	height: 100%;
	background: transparent;
	transition: 1s ease-in-out;
	position: relative;
	border: 1px solid #000;
	border-radius: 0;
}

#services-home .card::after {
	position: absolute;
}

#case-study .card {
	background: transparent;
	border-radius: 15px;
	overflow: hidden;
	transition: 0.4s ease-in-out;
}

#case-study .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 3px 30px rgb(88 189 220 / 20%);
	border: 1px solid #000000;
}

#case-study .card-image {
	overflow: hidden;
	border-radius: 15px;
}

#case-study .card-image img {
	transition: 0.6s ease-in-out;
	width: 100%;
}

#case-study .card:hover .card-image img {
	transform: scale(1.05);
}

#promise .card {
	transition: background-color 0.6s ease-in-out, color 0.6s ease-in-out, border 0.6s ease-in-out;
}

#promise .card:hover {
	color: #fff;
	background: linear-gradient(90deg, #333, #555, #777);
}


/* ====================== */
/*      ACCORDIONS        */
/* ====================== */
.faq-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.faq-video {
	width: 120px;
	height: 50px;
	border-radius: 60px;
	object-fit: cover;
	overflow: hidden;
}

#faq .accordion-item {
	border: none;
	padding: 0;
	position: relative;
	overflow: hidden;
}

#faq .accordion-header {
	margin-bottom: 30px;
	color: var(--text-color);
}

#faq .accordion-button {
	background: transparent;
	box-shadow: none;
	padding: 0;
	border: 0;
	color: var(--text-color);
	transition: color 0.3s ease-in-out;
}

#faq .accordion-button:hover {
	color: var(--secondary-color);
}

#faq .accordion-item::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	background: var(--secondary-color);
	width: 6.66%;
	transition: width 0.6s ease-in-out;
}

#faq .accordion-item:hover::before {
	width: 66.6666%;
}

#faq .accordion-button::after {
	width: 40px;
	height: 40px;
	background: black;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	content: "";
	background-image: url('../images/arrow-down.png');
	background-size: 60%;
	background-position: center;
	background-repeat: no-repeat;
	font-weight: 900;
	color: white;
	transform: rotate(0deg);
	transition: transform 1s ease-in-out;
}

#faq .accordion-button:not(.collapsed)::after {
	transform: rotate(180deg);
	background: var(--secondary-color);
	background-image: url('../images/arrow-down.png');
	background-size: 60%;
	background-position: center;
	background-repeat: no-repeat;
	transform: scaleY(-1);
}

#jobAccordion .accordion-item {
	background: transparent;
	border: none;
}

#jobAccordion .accordion-button:not(.collapsed),
#jobAccordion .accordion-button {
	box-shadow: none;
}

#jobAccordion .accordion-header .accordion-button {
	color: #fff;
	background: transparent;
	border-bottom: 1px solid #4a494980;
}

#jobAccordion .accordion-button::after {
	content: '+';
	font-size: 24px;
	color: #fff;
	margin-left: auto;
	transition: transform 0.6s ease-in-out;
	background: none;
}

#jobAccordion .accordion-button:not(.collapsed)::after {
	content: '-';
	transform: rotate(0deg);
}


/* ====================== */
/*      LISTS             */
/* ====================== */
.custom-bullets ul {
	list-style: none;
	position: relative;
	margin: 0;
	padding: 0;
}

.custom-bullets ul li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.custom-bullets ul li::before {
	content: "\f133";
	font-family: "bootstrap-icons" !important;
	font-size: 1.1rem;
	line-height: 1;
	position: static;
	transform: none;
}

.listing-one ul li {
	line-height: 1.6rem;
	margin-bottom: 0.75rem;
	color: rgba(255, 255, 255, .5) !important;
}

.listing-one ul li::marker {
	color: var(--primary-color);
}


/* ====================== */
/*      BORDER EFFECTS    */
/* ====================== */
.border-bottom-line-animation {
	padding: 0;
	position: relative;
	transition: all 1s ease-in-out;
}

.hover-effect p {
	transition: color 1s ease-in-out;
}

.hover-effect {
	transition: all 1s ease-in-out;
}

.border-bottom-line-animation::before,
.border-bottom-line-animation::after {
	content: '';
	height: 1px;
	position: absolute;
	bottom: 0;
	transition: width 1s ease-in-out, transform 1s ease-in-out;
}

.border-bottom-line-animation::before {
	width: 6.66666667%;
	background: var(--primary-color);
	left: 0;
}

.border-bottom-line-animation::after {
	width: 60%;
	background: #222;
	left: 6.66666667%;
}

.hover-effect:hover .border-bottom-line-animation::before {
	width: 66.66666667%;
	transform: scaleX(1);
	z-index: 1;
}

.hover-effect:not(:hover) .border-bottom-line-animation::before {
	transform-origin: left;
	z-index: 1;
}


/* ====================== */
/*      QUOTE STYLES      */
/* ====================== */
#quote .col:not(:last-child) {
	position: relative;
}

#quote .col:not(:last-child)::before {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 30%;
	width: 1px;
	background: #c1c1c1;
	content: '';
}

.blockquote {
	position: relative;
}

.blockquote::before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	background: url(../images/quote.png) no-repeat top left;
	display: block;
	width: 100%;
	height: 100%;
}

.quote-icon {
	transform: translate(10px, 5px);
	z-index: 0;
}

.blockquote p {
	position: relative;
	z-index: 1;
}


/* ====================== */
/*      SPECIAL SECTIONS  */
/* ====================== */
.cta-container {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}


.bg-style-1 {
	position: relative;
}

.bg-style-1::before {
	position: absolute;
	top: 50%;
	transform: translateY(-30%);
	left: 0;
	background: radial-gradient(closest-side at 0% 50%, rgba(42, 168, 220, 1), rgba(42, 168, 220, 0) 80%);
	content: '';
	width: 10%;
	height: 30%;
}


/* ====================== */
/*      CONTACT FORM      */
/* ====================== */
#contact-form .form {
	border: 1px solid #4a494980;
}

#contact-form .form-control,
#contact-form .form-select {
	border: 1px solid #4a494980;
}

#contact-form .form-control::placeholder,
#contact-form .form-select::placeholder {
	color: #ffffff80 !important;
	opacity: 1;
}

#contact-form .form-select,
#contact-form .form-label {
	color: #ffffff80;
}

#contact-form .form-select option {
	background-color: black;
	color: white;
}

#contact-form .form-select option:hover {
	background-color: var(--primary-color) !important;
	color: white;
}

#contact-form .form-select option:disabled {
	color: #ffffff80;
}


/* ====================== */
/*      ADDRESS STYLES    */
/* ====================== */
.address .icon {
	height: 24px;
	filter: brightness(0) invert(1);
}

.address a {
	color: rgba(255, 255, 255, .5) !important;
}

.address a:hover {
	color: var(--primary-color) !important;
}


/* ====================== */
/*      FOOTER            */
/* ====================== */
footer {
	color: #999;
}

footer.border-top, footer .border-top  {
	border-top: 1px solid #333 !important;
}

footer h3 {
	color: #fff;
}

footer ul {
	margin: 0;
	padding: 0;
}

footer ul li {
	list-style: none;
	text-decoration: none;
	line-height: 1.8;
}

footer ul li a {
	color: #999;
	transition: ease-in-out color 0.6s;
}

footer ul li a:hover {
	color: #fff;
}


/* ====================== */
/*      BRAND SCROLLER    */
/* ====================== */
.brand-scroller {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  position: relative;
}

.brand-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll-left 60s linear infinite;
  will-change: transform; /* helps Safari/Chrome smoothness */
}

.brand-track img {
  height: 100px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0; /* prevents squishing */
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-track img:hover {
  filter: grayscale(0%);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ====================== */
/*      CATEGORIES        */
/* ====================== */
.categories-scroll {
	display: flex;
	flex-wrap: nowrap;
	/* no line breaks */
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
}

.categories-scroll::-webkit-scrollbar {
	display: none;
}

.categories-scroll .card {
	box-sizing: border-box;
	border-radius: 0;
	border: 1px solid #000;
	transition: transform 0.3s ease-in-out;
	scroll-snap-align: start;
}

/* XL - 4 cards visible, 3 gaps */
@media (min-width: 1200px) {
	.categories-scroll .card {
		flex: 0 0 calc((100% - 60px) / 4);
	}
}

/* LG - 3 cards visible, 2 gaps */
@media (min-width: 992px) and (max-width: 1199.98px) {
	.categories-scroll .card {
		flex: 0 0 calc((100% - 40px) / 3);
	}
}

/* MD - 2 cards visible, 1 gap */
@media (min-width: 768px) and (max-width: 991.98px) {
	.categories-scroll .card {
		flex: 0 0 calc((100% - 20px) / 2);
	}
}

/* Mobile - 1 card visible, no gap needed */
@media (max-width: 767.98px) {
	.categories-scroll .card {
		flex: 0 0 100%;
	}
}

.categories-scroll .card:hover {
	transform: translateY(-5px);
}


/* ====================== */
/*      IMAGE EFFECTS     */
/* ====================== */
.image-wrapper {
	position: relative;
	overflow: hidden;
}

.image-wrapper img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	aspect-ratio: 1 / 1;
}

.image-wrapper .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.image-wrapper .project-title {
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	padding: 8px 16px;
	opacity: 0;
	transition: all 0.4s ease;
	width: 100%;
	text-align: center;
}

.image-wrapper:hover .overlay {
	opacity: 1;
}

.image-wrapper:hover .project-title {
	bottom: 15px;
	opacity: 1;
}

.product-brand {
	height: 40px;
	filter: brightness(0);
}

.thumb-img {
	cursor: pointer;
	max-width: 100%;
	transition: transform 0.3s;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.thumb-img {
		max-width: 30%;
	}
}


/* ====================== */
/*      DATE BOX          */
/* ====================== */
.date-box {
	position: relative;
	width: 80px;
	background: linear-gradient(45deg, #5a5a5a, #000000);
	color: #fff;
	text-align: center;
	flex-shrink: 0;
	border: 1px solid #000;
}

.date-box::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.date-box>div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.date-box h3 {
	line-height: 1;
}

.date-box p {
	line-height: 1.2;
}


/* ====================== */
/*      NEWS SCROLLER     */
/* ====================== */
.news-scroller {
  position: relative;
  overflow: hidden;
}

.news-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.news-item {
  flex: 0 0 100%;
}

@media (min-width: 992px) {
  .news-item {
    flex: 0 0 50%;
  }
}

.news-item img {
  aspect-ratio: 5 / 2;
  object-fit: cover;
}


/* ====================== */
/*      TESTIMONIALS      */
/* ====================== */
#testimonialTrack {
	display: flex;
	gap: 1.5rem; /* Bootstrap gap-4 */
	transition: transform 0.6s ease-in-out;
	will-change: transform;
  }
  
  #testimonialTrack > .flex-shrink-0 {
	flex: 0 0 calc((100% - 2 * 1.5rem) / 3); /* desktop: 3 cards */
  }
  
  @media (max-width: 991px) {
	#testimonialTrack > .flex-shrink-0 {
	  flex: 0 0 calc((100% - 1 * 1.5rem) / 2); /* tablet: 2 cards */
	}
  }
  
  @media (max-width: 767px) {
	#testimonialTrack > .flex-shrink-0 {
	  flex: 0 0 100%; /* mobile: 1 card */
	}
  }
  
  
.transition {
	transition: transform 0.6s ease-in-out;
	display: flex;
}

.object-fit-cover {
	object-fit: cover;
	aspect-ratio: 1 / 1;
}


/* ====================== */
/*      INSIGHTS MENU     */
/* ====================== */
.dropdown-wrapper {
	position: relative;
  }
  
  .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 {
	width: 100%;
  }
  
  .dropdown-menu-custom a {
	display: block;
	padding: 0.5rem 1rem;
	color: #fff;
	text-decoration: none;
	font-size: 0.7rem;
	transition: background 0.6s ease-in-out;
	  font-weight:100;
  }
  
  .dropdown-menu-custom a:hover {
	background: rgba(255, 255, 255, 0.1);
  }
  

/* ====================== */
/*      FILTER SYSTEM     */
/* ====================== */
.filter-section {
	background-color: #f8f9fa;
	padding: 20px;
	min-height: 100%;
}

.filter-section option {
	font-weight: 100 !important;
}

.filter-header {
	font-weight: 600;
	margin-bottom: 15px;
}

.filter-group {
	margin-bottom: 25px;
}

.filter-group-title {
	font-weight: 500;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.filter-options {
	list-style: none;
	padding-left: 0;
	max-height: 300px;
	overflow-y: auto;
}

.filter-options li {
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	font-size: small;
}

.filter-options input[type="checkbox"] {
	margin-right: 10px;
}

.filter-options label {
	cursor: pointer;
	width: 100%;
}

.brand-card {
	border: 1px solid #eee;
	border-radius: 8px;
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
	margin-bottom: 20px;
}

.brand-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.brand-img-container {
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 8px 8px 0 0;
}

.brand-img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.brand-info {
	padding: 15px;
}

.brand-title {
	font-weight: 600;
	margin-bottom: 5px;
}

.clear-filters {
	color: var(--accent-color);
	text-decoration: none;
	font-size: 0.9rem;
}

.product-count {
	color: #666;
	font-size: 0.9rem;
}

.sort-options {
	border: 1px solid #ddd;
	border-radius: 0;
	padding: 8px 12px;
	font-size: small;
}

.sort-options option {
	font-weight: 100;
}

.loading-indicator {
	display: none;
	text-align: center;
	padding: 20px;
	color: #666;
}

.no-results {
	display: none;
	text-align: center;
	padding: 40px;
	color: #666;
}

@media (max-width: 768px) {
	.filter-section {
		margin-bottom: 30px;
	}
}


/* ====================== */
/*      MOBILE FILTERS    */
/* ====================== */
.filter-mobile-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	z-index: 9999;
	overflow-y: auto;
	padding: 20px;
}

.filter-mobile-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
	margin-bottom: 15px;
}

.filter-section.active {
	display: block !important;
}


/* ====================== */
/*      UTILITY CLASSES   */
/* ====================== */
.clickable {
	cursor: pointer;
}

.clickable.active {
	text-decoration: underline;
	font-weight: bold;
}

#quoteModal .form-control {
	border: none;
	border-bottom: 1px solid #fff;
	color: #fff;
	background: transparent;
	box-shadow: none;
}

#quoteModal .form-control::placeholder {
	color: #bbb;
}

#quoteModal .form-control:focus {
	box-shadow: none;
}

.inner-banner img {
	height: 80vh;
	object-fit: cover;
	width: 100%;
	object-position: bottom;
}

.brand-main {
	margin-top: -100px;
}

.brand-main .btn {
	background: #000;
	border: 1px solid #000;
	color: #fff;
	box-shadow: 0px 15px 40.8px 0px rgba(0, 0, 0, 0.18);
}

.brand-main .btn.active {
	background: #fff;
	border: 5px solid #000;
	color: #000;
}

.form-select#filter-brand-mobile {
	border: 1px solid #fff;
	position: relative;
	font-weight: 100;
}

#filter-brand-mobile option {
	font-weight: 100;
}

#brands .card {
	border-color: #000;
}

#brands .card .card-img {
	aspect-ratio: 5 / 4;
	object-fit: cover;
	border-radius: 0;
}

#brands .card .youtube-thumb.card-img {
	aspect-ratio: 16 / 9;
}

.brandIco {
	position: absolute;
	left: 15px;
	bottom: 15px;
}

.brandIco img {
	min-height: inherit;
	max-height: 55px;
	margin-bottom: 20px;
	width: auto;
	max-width: 120px;
	filter: contrast(1) invert(1);
}

.single_brand_logo img {
	max-height: 90px;
	width: auto;
	max-width: 180px;
	filter: invert(1) contrast(1);
}

.single_brand_logo a {
	min-height: 300px;
	max-height: 300px;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 47px 61px 0px rgba(0, 0, 0, 0.34);
}

.single_brand_header img {
	min-height: 300px;
	max-height: 300px;
	object-fit: cover;
	width: 100%;
}

.single_brand_gallery img {
	aspect-ratio: 5/3;
	object-fit: cover;
}

/* ====================== */
/*      SERIES        */
/* ====================== */
.series-scroll {
	display: flex;
	flex-wrap: nowrap;
	/* no line breaks */
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
}

.series-scroll::-webkit-scrollbar {
	display: none;
}

.series-scroll .card {
	box-sizing: border-box;
	border-radius: 0;
	border: 1px solid #000;
	transition: transform 0.3s ease-in-out;
	scroll-snap-align: start;
}

.series-scroll .card img {
	min-height: 270px;
	max-height: 270px;
	width: 100%;
	object-fit: cover;
}

/* LG - 3 cards visible, 2 gaps */
@media (min-width: 992px) {
	.series-scroll .card {
		flex: 0 0 calc((100% - 40px) / 3);
	}
}

/* MD - 2 cards visible, 1 gap */
@media (min-width: 768px) and (max-width: 991.98px) {
	.series-scroll .card {
		flex: 0 0 calc((100% - 20px) / 2);
	}
}

/* Mobile - 1 card visible, no gap needed */
@media (max-width: 767.98px) {
	.series-scroll .card {
		flex: 0 0 100%;
	}
}

/* Remove default Bootstrap arrow */
.accordion-button::after {
	display: none;
}

/* No border radius & spacing between items */
.custom-accordion .accordion-item {
	border: 2px solid #ddd;
	border-radius: 0;
	margin-bottom: 10px;
	/* gap between accordions */
}

/* Button styles */
.accordion-button {
	background: white;
	box-shadow: none;
	padding: 20px;
	font-size: 16px;
	font-weight: 100;
}

/* Remove Bootstrap focus glow */
.accordion-button:focus {
	box-shadow: none;
}

/* Icon styles */
.custom-accordion-btn {
	display: flex;
	align-items: center;
	gap: 10px;
}

.custom-accordion-btn .icon {
	font-weight: bold;
	font-size: 18px;
	width: 18px;
	display: inline-block;
	text-align: center;
}

.accordion-button:not(.collapsed) {
	background: #fff;
	color: #000;
}

/* Toggle icon */
.accordion-button:not(.collapsed) .icon::before {
	content: "-";
}

.accordion-button.collapsed .icon::before {
	content: "+";
}

.news-shadow {
	box-shadow: 0px 47px 61px 0px rgba(0, 0, 0, 0.34);
}

/* Default: no scroll */
.thumbs-wrapper {
	overflow: hidden;
}

/* Enable scroll only when >3 */
.scroll-enabled {
	overflow: auto;
}

/* Desktop: vertical scroll, 3 thumbs max visible */
@media (min-width: 992px) {
	.row.align-items-stretch {
		align-items: stretch;
	}

	.scroll-enabled {
		overflow-y: auto;
		overflow-x: hidden;
		height: 100%;
		/* match main image column */
	}

	.thumbs-wrapper {
		display: flex;
		flex-direction: column;
		height: 100%;
		/* same height as main image */
		gap: 0.5rem;
		/* spacing between thumbs */
	}

	.thumbs-wrapper img.thumb-img {
		flex: 0 0 calc((100% - (2 * 0.5rem)) / 3);
		object-fit: contain;
	}
}

/* Mobile: horizontal scroll */
@media (max-width: 991px) {
	.scroll-enabled {
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		max-width: 100%;
	}

	.thumbs-wrapper {
		display: flex;
		flex-direction: row;
		gap: 0.5rem;
		/* horizontal spacing */
	}

	.thumbs-wrapper img.thumb-img {
		height: auto;
		flex: 0 0 auto;
	}
}

/* Scrollbar styling */
.scroll-enabled::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

.scroll-enabled::-webkit-scrollbar-thumb {
	background: #aaa;
	border-radius: 3px;
}

/* Apply fixed VH heights only on desktop */
@media (min-width: 992px) {
	.contact-wrapper {
		position: relative;
	}

	.contact-wrapper::before {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 50%;
		background: url(../images/contact-us-banner.jpg) top center no-repeat;
		background-size: cover;
		content: '';

	}

	/* Left column blocks */
	.hero-block {
		height: 60vh;
		background: transparent;
	}

	.address-block {
		height: 60vh;
		background: #fff;
	}

	/* Right column form matches full height */
	.form-block {
		height: 120vh;
	}
}

/* Always apply these (all breakpoints) */
.form-block {
	background: #000;
	z-index: 999;
}

/* Form styling */
.contact-wrapper .form-control,
.contact-wrapper .form-select {
	background: #000;
	border-radius: 0;
	color: #fff;
	font-weight: 100;
}

.contact-wrapper .form-select option {
	font-weight: 100;
}


#officeSlider {
	width: 100%;
	overflow: hidden;
}

#officeSlides {
	display: flex;
	transition: transform 0.6s ease-in-out;
}

.slide-img {
	width: 66.66%;
	/* 2/3 of parent */
	flex-shrink: 0;

}

/* ---------- Main Image ---------- */
/* Main image wrapper */
#mainImageWrapper {
	position: relative;
	overflow: hidden;
	height: 480px; /* desktop fixed height */
	display: flex;
	align-items: center;
	justify-content: center; /* ensures centering */
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 1px solid #eeeeee;
	padding: 25px;
	}
  
  /* Main image */
  #mainImage {
	transition: transform 0.6s ease-in-out;
	cursor: zoom-in;
	transform-origin: center center; /* zoom from center */
  }
  
  /* Zoom effect */
  #mainImageWrapper:hover #mainImage {	
	cursor: zoom-out;
  }
  
  /* ---------- Zoom Popup ---------- */
  .zoom-popup {
	display: none; /* hidden by default */
	position: absolute;
	top: 0;
	left: 100%; 
	margin-left: 15px;
	width: 400px;
	height: 400px;
	overflow: hidden;
	border: 1px solid #ddd;
	background: #fff;
	z-index: 1000;
  }
  .zoom-popup img {
	position: absolute;
	top: 0;
	left: 0;
	transform: scale(1.5); /* zoom level */
	transform-origin: top left;
	transition: transform 0.1s;
	pointer-events: none;
  }
  
  /* ---------- Thumbnails ---------- */
  .thumb-img {
	cursor: pointer;
	object-fit: contain;
	transition: transform 0.6s ease-in-out;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 1px solid #eeeeee;
	}
 
  
  /* --- Desktop (lg and up) --- */
  @media (min-width: 992px) {
	.thumbs-container {
	  overflow-y: auto;
	  overflow-x: hidden;
	  max-height: 480px;
	}
	.thumb-img {
	  height: calc((480px / 3) - 10px);
	  width: 100%;
	  margin-bottom: 10px;
	}
  }
  
  /* --- Mobile (< lg) --- */
  @media (max-width: 991px) {
	.thumbs-container {
	  overflow-x: auto;
	  overflow-y: hidden;
	  display: flex;
	  flex-direction: row;
	  max-width: 100%;
	}
	.thumb-img {
	  flex: 0 0 calc(100% / 3);
	  width: calc(100% / 3);
	  height: auto;
	  margin-right: 0.5rem;
	}
  }
  
  /* --- Scrollbar Styling --- */
  .thumbs-container::-webkit-scrollbar {
	width: 6px;
	height: 6px;
  }
  .thumbs-container::-webkit-scrollbar-thumb {
	background-color: #000;
	border-radius: 10px;
  }
  .thumbs-container {
	scrollbar-width: thin;
	scrollbar-color: #000 transparent;
  }


/* Service Page Start */
.service-banner{	
	position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.service-banner img{
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-banner::before{
	position: absolute;
	content: '';
	background: rgba(0, 0, 0, 0.1);
	left: 0;
	top: 0;
	width: 100%;
	height:100% ;
	z-index: 1;
}

/* Scroll timeline for vertical page scroll */
/* Animation base */
.fadeInLeft, .fadeInRight {
	opacity: 0;
	visibility: hidden; 
	position: relative;
	will-change: transform, opacity;
	transition: transform 0.9s ease-out, opacity 0.9s ease-out;
  }
  
  .fadeInLeft { transform: translateX(-100%); }
  .fadeInRight { transform: translateX(100%); }
  
  .fadeInLeft.show, .fadeInRight.show {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
  }
  .service-item img{
	height: 100px;
  }
  /* Initial state */
.fade-up {
	opacity: 0;
	transform: translateY(100px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  /* When visible */
  .fade-up.visible {
	opacity: 1;
	transform: translateY(0);
  }
  
  .wow {
	visibility: hidden; /* hidden until animated */
  }

  /* Zoom In Animation */
  @keyframes zoomIn {
	0% {
	  opacity: 0;
	  transform: scale(0.8);
	}
	100% {
	  opacity: 1;
	  transform: scale(1);
	}
  }

  .zoomIn {
	animation: zoomIn 0.8s ease forwards;
  }

  /* Flip Card Styles */
  .flip-container {
	perspective: 1000px;
	width: 100%;
	aspect-ratio: 5/ 3;	
  }
  #projects .flip-container{
	aspect-ratio: 3 / 1;
  }
  .flipper {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.6s;
  }
  .flip-container:hover .flipper {
	transform: rotateY(180deg);
  }
  .front, .back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;	
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 15px;
	color: #fff;
  }
  .front {
	background-size: cover;
	background-position: center;
	background: rgba(0, 0, 0, 0.2);
  }
  .back {
	background: #000;
	transform: rotateY(180deg);
	flex-direction: column;
	justify-content: center;
  }
  .testimonial-section {
	position: relative;	
	color: #fff;
	padding: 80px 0;
  }
  .testimonial-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
  }
  .testimonial-content {
	position: relative;
	z-index: 2;
  }
  .testimonial-card {
	background: rgba(0, 0, 0, 0.6);
	border-radius: 10px;
	padding: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
  }
  .testimonial-stars {
	color: #00c37a;
	font-size: 1.2rem;
  }
  .testimonial-text {
	font-size: 0.95rem;
	margin: 15px 0;
	flex-grow: 1;
  }
  .testimonial-name {
	font-weight: bold;
	margin-top: 10px;
  }
  .overlay{
	position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.6);
  }
  .special-heading{
	position: relative;
	padding-top: 10px;
    padding-left: 10px;
  }
  .special-heading::before {
    height: 32px;
    width: 3px;
}
.special-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #262626;
    height: 3px;
    width: 40px;
}
.special-heading::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #262626;
    width: 3px;
    height: 40px;
}
/* Service Page End */

.counter{
	text-transform:none;
}
.post
{
    margin-bottom: 70px;
    margin-top: -60px;
}
.whatsapp-float {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
 .whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 5px;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    width: 60px;       /* fixed width */
    height: 60px;      /* fixed height */
    font-size: 28px;
    border-radius: 50%; /* perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
}