@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
	font-family: Montserrat;
	margin: 0;
}

.container {
	max-width: calc(1140px + 1em);
    margin: auto;
    padding: 0 1em;
}

.page-heading {
    color: #424242;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 24px;
    min-height: 50px;
    border-bottom: 5px solid #D44313;
}

/* Navbar Style */

.header {
	background: rgb(0 0 0 / 70%);
    position: fixed;
    width: 100%;
    top: 0;
	z-index: 2;
}

.header .navbar {
	padding: 1.063em 1em;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(1140px + 1em);
    margin: auto;
}

.navbar-nav {
	display: flex;
	list-style-type: none;
	gap:  1em;
}

.navbar-collapse {
	margin-left:auto;
}

.navbar-nav .nav-item {
	position:relative;
}

.navbar-nav .nav-item .nav-link {
	color: #FFF;
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
	padding: 8px 15px;
}

.navbar-nav .nav-item:hover .nav-link {
	background: #fff;
    color: #424242;
}

.dropdown-menu {
	display:none;
    position: absolute;
    top: 34px;
    left: 0;
    background: #D44313;
    min-width: 175px;
}

.navbar-nav .nav-item.dropdown:hover .dropdown-menu,
.navbar-nav .nav-item.dropdown:focus-within .dropdown-menu{
	display:block;
}

.dropdown-menu .dropdown-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1.215em 1em;
    display: block;
	text-decoration: none;
}

.dropdown-menu .dropdown-link:hover {
	background: rgb(66 66 66 / 25%);
}

/* Nav Link Wrapper for Dropdown Items */
.nav-link-wrapper {
	display: flex;
	align-items: center;
	position: relative;
}

.dropdown-toggle {
	display: none;
	background: transparent;
	border: none;
	padding: 8px;
	cursor: pointer;
	color: #D44313;
	transition: transform 0.3s ease;
}

.dropdown-toggle svg {
	width: 16px;
	height: 10px;
	display: block;
}

/* Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 10000;
	position: relative;
}

.hamburger span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #fff;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.navbar-nav .nav-item:hover .nav-link svg {
	transform: rotate(180deg);
}

.navbar-nav .nav-item:hover .nav-link svg path {
	fill: #424242;
}

.theme-button {
	background: #D44313;
    padding: 0.57em 0.85em;
	display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Landing Page style */

.banner-section {
	position:relative;
}

.banner-section h1 {
	position: absolute;
    top: 0;
    bottom: 0;
    color: #FFF;
    text-align: center;
    font-size: 128px;
    font-weight: 900;
    width: 100%;
    margin: auto 0;
    height: fit-content;
    mix-blend-mode: soft-light;
    padding-top: 2em;
}

.banner-section img {
	max-width: 100%;
	width: 100%;
	margin-bottom: -5px;
}

.banner-section video {
	max-width: 100%;
	width: 100%;
	margin-bottom: -5px;
	display: block;
	object-fit: cover;
}

.brand-strip {
	background:#D44313;
	color: #fff;
	text-align: center;
	font-size: 40px;
	font-weight: 900;
	padding: 20px 1em;
}

.content-section {
	padding:50px 0;
}

.content-section p {
	color: #000;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	margin: 0 0 54px;
}

.content-section h3 {
	color: #424242;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	margin-bottom:25px;
}

.content-section .theme-button {
	margin: auto;
    width: fit-content;
    display: block;
    font-size: 24px;
    font-weight: 700;
    padding: 0.646em 1.0977em;
	text-transform: none;
}

.contact-form {
	margin-top: 30px;
}

.industries-section,
.certifications-section {
	padding:50px 0;
}

.industries-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industries-card img {
    pointer-events: none;
}

.industries-card {
	position: relative;
    background: #D9D9D9;
    padding: 74.03% 0 0;
    height: 0;
    overflow: hidden;
	display: block;
    width: 100%;
}

.industries-card img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.industries-card h3 {
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #D44313;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 36px;
    margin: 0;
    padding: 0.292em 0em;
}

.team-member-card .team-member-info {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #D44313;
	color: #fff;
	text-align: center;
	padding: 0.45em 0.5em;
}

.team-member-card h3 {
	position: static;
	background: none;
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	margin: 0;
	padding: 0;
}

.team-member-title {
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 18px;
	margin: 2px 0 0;
}

.services-area-section {
	display: flex;
	align-items: center;
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
	gap: 50px;
	flex-direction: column;
}

.services-area-section p {
	margin:0;
	padding-right: 1em;
}

.services-area-section img {
	max-width: 500px;
	width: 100%;
}

.certifications--list {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
	gap: 32px;
}

.certifications--list p {
	margin:0;
	padding-right: 1em;
}

.certifications--list img {
	max-width: 266px;
}

footer {
	background:#424242;
	margin-top: 50px;
	padding-top:30px;
	color: #fff;
}

footer .page-heading a {
	color:#fff;
	text-decoration: none;
}

.footer-logo {
	display:block;
	max-width: 170px;
	margin-bottom:34px;
}

footer .address {
	margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    max-width: 231px;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: end;
}

.footer-links .footer-link-a {
	color: #fff;
    text-align: right;
    font-size: 16px;
    font-weight: 600;
    line-height: 36px;
    text-transform: uppercase;
    text-decoration: none;
	margin-bottom: 5px;
}

.footer-links .theme-button {
	margin-top:5px;
}

.copyright-footer {
    background: #D44313;
    padding: 12px 0;
	margin-top:30px;
	color: #fff;
}

.copyright-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-footer .container p {
	font-size: 14px;
	font-weight: 400;
	line-height: 36px;
	margin: 0;
}

.copyright-footer .social-links {
	display: flex;
    align-items: center;
	gap: 25px;
	margin: 0;
    padding: 0;
}

/* Inside Pages Style */

.inside-page-banner {
	height: 540px;
	position: relative;
}

.inside-page-banner img {
	height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.inside-page-banner .inside-page-banner-title {
    background: rgb(208 71 17 / 90%);
    position: absolute;
	padding: 1.594em 0;
    bottom: 0;
    left: 0;
    width: 100%;
}

.inside-page-banner .inside-page-banner-title h1 {
	color: #fff;
	font-size: 40px;
	font-weight: 900;
	margin: 0;
}

.inside-page-banner .inside-page-banner-title .container {
	display: flex;
    align-items: center;
    justify-content: space-between;
}

select.custome-select {
	border: 1px solid #424242;
	background-color: #fff;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'><path d='M9.0001 11.4557L9.86448 10.5827L18 2.27697L16.2712 0L9 7.42078L1.7288 0L0 2.27697L8.13552 10.5827L9.0001 11.4557Z' fill='%23424242'/></svg>");
	color: #424242;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 75px 16px 30px;
    background-repeat: no-repeat;
    appearance: none;
    background-position: center right 12px;
}

.about-content,
.retail-hospitality,
.accordion-section,
.slider-section {
	padding: 50px 0;
}

.about-content p {
	color: #000;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	margin-top: 0;
}

.about-content-row {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-content-row img {
	max-width: 100%;
}

.core-values-row {
	display: flex;
    align-items: flex-start;
    gap: 24px;
	margin-bottom: 50px;
}

.core-values-row div {
	flex: 0 0 calc(50% - 12px);
}

.core-values-row:nth-of-type(even) {
	flex-direction: row-reverse;
}

.core-values-row h3 {
	color: #D44313;
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 15px;
}

.core-values-img {
	max-height: 355px;
	overflow: hidden;
}

.core-values-img img {
	object-fit: cover;
	object-position: center;
	height: 100%;
	width: 100%;
}

.our-history-card p,
.retail-hospitality p{
	font-size: 18px;
	line-height: 26px;
	margin-top: 0;
}

.retail-hospitality-list h6 {
	color: #D44313;
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 13px;
}

.four-grid-industries-list {
	grid-template-columns: repeat(4, 1fr);
}

.four-grid-industries-list .industries-card {
	padding: 92.62% 0 0;
}

.four-grid-industries-list .industries-card h3 {
	font-size: 16px;
	line-height: 20px;
    padding: 0.938em 0em;
}

/* accordion */

.accordion-item {
	margin-bottom: 0;
}

.accordion-header {
	position:relative;
	min-height: 50px;
	cursor:pointer;
    border-bottom: 5px solid transparent;
	pointer-events: none;
}

.accordion-item.active .accordion-header {
	border-bottom: 5px solid #D44313;
}

.accordion-header h3 {
	color: #424242;
	font-size: 36px;
	font-weight: 800;
	margin: 0;
	padding-right: 32px;
}

.accordion-item .accordion-header .arrow {
	width: 48px;
	height: 26px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='26' viewBox='0 0 48 26' fill='none'%3E%3Cpath d='M24.0003 26L26.3053 24.0185L48 5.16783L43.3899 0L24 16.8422L4.61013 0L0 5.16783L21.6947 24.0185L24.0003 26Z' fill='%23EE6028'/%3E%3C/svg%3E");
	transition: transform 0.3s ease;
	display: none;
    position: absolute;
    right: 0;
    bottom: 15px;
}

.accordion-item.active .arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='26' viewBox='0 0 48 26' fill='none'%3E%3Cpath opacity='0.5' d='M23.9997 0L21.6947 1.98147L0 20.8322L4.61013 26L24 9.15776L43.3899 26L48 20.8322L26.3053 1.98147L23.9997 0Z' fill='%23424242'/%3E%3C/svg%3E");
}

.accordion-item .accordion-content {
	max-height: 0;
  	overflow: hidden;
	transition: max-height 0.35s ease;
	visibility:hidden;
	display: flex;
    gap: 50px;
}

.accordion-img {
    width: 100%;
    height: 270px;
    max-width: 400px;
	min-width: 400px;
}

.accordion-img img {
	height: 100%;
	width : 100%;
	object-fit: cover;
	object-position :center;
}

.accordion-item.active .accordion-content {
	max-height:max-content;
	padding: 25px 0;
	visibility:visible;
}

.accordion-item .accordion-content p,
ul li {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	margin:0 0 25px;;
}

ul li {
	margin-bottom: 2px;
}

.accordion-item .accordion-content .content-grid {
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	gap:24px;
}

.accordion-item .accordion-content .highlight {
	color: #D44313;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 40px;
}

.accordion-item .accordion-content img {
	max-width:100%;
	width:100%;
}

/* Slider CSS */

.slider-list { position: relative; }

.slider-list .slide {
    display: none;
    width: 100%;
    user-select: none;
	position: relative;
    padding-top: 64.101%;
	overflow:hidden;
}

.slider-list .slide img {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	object-fit: cover;
    object-position: center;
}

.slider-list .slide.active { display: block; }

.slider-list .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    cursor: pointer;
    border: 0;
    background: transparent;
	z-index: 1;
  }

.slider-list .arrow.left { left: 10px; }
.slider-list .arrow.right { right: 10px; }

.slider-gallery .thumbnail-wrapper {
    margin-top: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
  }

.slider-gallery .thumbnails {
    overflow-x: auto;
    display: flex;
    gap: 24px;
    scrollbar-width: none; /* Firefox */
    cursor: grab;
    flex: 1;
  }

.slider-gallery .thumbnails::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.slider-gallery .thumb {
    width: 170px;
    height: 128px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s, border-color 0.3s;
	background: #D9D9D9;
    flex-shrink: 0;
	overflow:hidden;
}

.slider-gallery .thumb img {
	width: 100%;
    height: 100%;
	object-fit:cover;
	object-position:center;
}

.slider-gallery .thumb.active {
    opacity: 1;
    border-color: #000;
}


/* Form Style */

.form-skin .gform_fields {
    display: flex !important;
    flex-wrap: wrap;
    margin-left: -.5em;
    margin-right: -.5em;
    padding: 0;
}

.form-skin .gfield, 
.form-skin .ginput_complex span {
    display: block;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: calc(100% - 1em);
    margin-bottom: .5em;
    margin-right: .5em;
    margin-left: .25em;
}

.form-skin .gfield_label:not(.gfield_label_before_complex), 
.form-skin .ginput_complex label,
.gform_legacy_markup_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
    position: absolute;
    top: .5em;
    left: 1.5em;
    font-size: 12px !important;
    letter-spacing: .05em !important;
    font-weight: 500;
    text-transform: capitalize;
}

.form-skin input[type=email], 
.form-skin input[type=tel], 
.form-skin input[type=text], 
.form-skin select, .form-skin textarea {
	display: block;
    padding: 1.55em 1em 0.95em 1em !important;
    width: 100% !important;
    min-height: 52px;
    border: .15em solid #f4f4f4;
    border-radius: 0;
    font-size: 1em !important;
    font-weight: 500;
    letter-spacing: .025em !important;
    line-height: 1;
    background-color: #f4f4f4 !important;
    transition: border-color .15s linear;
}

.gform_legacy_markup_wrapper .ginput_complex.ginput_container_address .ginput_right {
	width: 100%;
    margin: 0;
    padding: 0 !important;
}

.contact-form .form-skin {
	margin-top: 4em !important;
	max-width: 50em;
}

.form-skin .button.gform_button {
	background: #D44313;
    padding: 0.8em 0.85em;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    font-size: 18px !important;
    font-weight: 700;
    border: 1px solid #D44313;
    box-shadow: none;
    min-width: 150px;
    text-transform: uppercase;
    font-family: Montserrat;
}

.four-grid-industries-list .industries-card.no-image {
	padding: 0;
    height: auto;
}

.four-grid-industries-list .industries-card.no-image .team-member-info {
	position: initial;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.four-grid-industries-list .industries-card .team-member-info .team-member-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    margin: -7px 0 0.5em;
	color: #fff;
}

.form-skin .gfield:not(.show-label) .gfield_label_before_complex, 
.form-skin .gfield_checkbox input, .form-skin .gfield_radio input {
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    position: absolute;
}

body .gform_legacy_markup_wrapper .top_label div.ginput_container {
    margin-top: 0 !important;
}

body .gform_legacy_markup_wrapper ul li.gfield {
    margin-top: 0 !important;
}

.form-skin .gfield--two-thirds {
    width: calc(calc(100% / 3 * 2) - .5em);
	padding-right: 0 !important;
}

.form-skin .gfield--third {
    width: calc(calc(100% / 3) - 2em);
}

.four-grid-industries-list .industries-card.team-member-card {
	padding: inherit;
    height: auto;
	background:transparent;
	overflow:visible;
}

.four-grid-industries-list .industries-card.team-member-card.no-image .team-member-info {
	color:#fff;
	background: #D44313;
	min-height: 150px;
}

.four-grid-industries-list .industries-card.team-member-card img {
	position: inherit;
    height: auto;
    object-fit: contain;
}

.four-grid-industries-list .industries-card.team-member-card .team-member-info {
	position: relative;
    padding: 15px 20px;
    text-align: center;
    box-sizing: border-box;
    margin-top: -4px;
}

.four-grid-industries-list .industries-card.team-member-card .team-member-info h3,
.four-grid-industries-list .industries-card.team-member-card .team-member-info p {
	padding: 0;
	line-height: normal;
    margin: 0;
}

.four-grid-industries-list .industries-card.team-member-card .team-member-info p {
	font-weight:500;
}

.four-grid-industries-list .industries-card.team-member-card.no-image .team-member-info h3,
.four-grid-industries-list .industries-card.team-member-card.no-image .team-member-info p {
	text-align:center;
	color:inherit;
}

.capabilities-section {
	padding: 50px 0;
	margin: 50px 0;
    background: #D44313;
    color: #fff;
}

.capabilities-section .page-heading {
	color: #fff;
    border-bottom: 5px solid #fff;
}

.capabilities-list {
	grid-template-columns: repeat(4, 1fr);
    display: grid;
	gap: 50px;
	margin: 50px 0;
	text-align: center;
}

.capabilities-list-icon svg {
	width: auto;
    max-height: 70px;
	margin: auto;
}

.capabilities-list-icon .capabilities-icon {
	text-align:center;
}

.capabilities-list-icon h6 {
	margin: 20px 0 0;
    font-size: 22px;
}

.white-theme-button {
	background: #fff;
    color: #D44313;
    text-transform: capitalize;
    margin: auto;
	display: inline-block;
}

.project-details {
    background: #fff;
    border: 5px solid #D44313;
    width: fit-content;
    padding: 20px;
	min-width: 270px;
	margin-top: -5.5em;
	margin-left: auto;
}

.project-details p {
	max-width: 100% !important;
    margin-top: 1em;
    font-size: 18px;
	line-height: normal;
}

.project-details p b {
	display: block;
}

.project-content {
	display: flex;
    align-items: flex-start;
    gap: 3em;
}

body .about-content:has(.project-details) .container {
	position:relative;
}

.home-our-work-img {
	position:relative;
}

.home-our-work-img .theme-button {
	position: absolute;
	bottom: 20px;
	right: 20px;
	pointer-events:none;
}

.home-our-work-img img {
	width: 100%;
    max-width: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
}


/* Media Query */

@media screen and (max-width:1200px) {
	.header .navbar .navbar-brand {
		max-width: 200px;
	}
	
	.header .navbar .navbar-brand svg {
		max-width:100%;
	}
	.navbar-nav {
		gap:0;
		margin: 0;
		padding: 0;
	}
	
	.banner-section h1 {
		font-size: 60px;
	}
	
	.brand-strip {
		font-size: 32px;
	}
	
	.content-section p {
		font-size: 22px;
		margin: 0 0 40px;
	}
	
	.content-section .theme-button,
	.content-section h3 {
		font-size: 22px;
	}
	
	.page-heading {
		font-size: 32px;
		min-height: 45px;
	}
	
	.certifications--list {
		font-size: 22px;
		line-height: 30px;
	}
	
	.inside-page-banner .inside-page-banner-title h1 {
		font-size: 32px;
	}
	
	.core-values-row h3 {
		font-size: 26px;
	}
	
	.about-content p {
		font-size: 22px;
		line-height: 29px;
	}
	
	.retail-hospitality-list h6 {
		font-size: 28px;
	}
	
	.accordion-header h3 {
		font-size: 32px;
	}
	
	.accordion-item .accordion-content .highlight {
		font-size: 28px;
		line-height: 26px;
	}
	
	.capabilities-list {
		gap: 25px;
	}
	
	.capabilities-list-icon h6 {
		font-size: 18px;
	}
	
	.navbar-nav .nav-item .nav-link {
		font-size: 14px;
	}
}

@media screen and (max-width:992px) {
	.hamburger {
		display: flex;
	}
	
	.navbar-collapse {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(42, 42, 42, 0.98);
		padding: 80px 40px 40px;
		overflow-y: auto;
		z-index: 9999;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}
	
	.navbar-collapse.active {
		display: flex;
		flex-direction: column;
		opacity: 1;
		visibility: visible;
	}
	
	.navbar-nav {
		flex-direction: column;
		gap: 0;
		padding: 0;
		margin: 60px 0 auto 0;
		max-width: 600px;
		width: 100%;
		gap : 0 !important;
	}
	
	/* Mobile Menu Header */
	.mobile-menu-header {
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		padding: 0.2em 1em;
		align-items: center;
		justify-content: space-between;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	
	.navbar-collapse.active .mobile-menu-header {
		display: flex;
	}
	
	.mobile-menu-logo {
		max-width: 180px;
	}
	
	.mobile-menu-logo svg {
		width: 100%;
		height: auto;
	}
	
	.mobile-close {
		background: transparent;
		border: none;
		padding: 10px;
		cursor: pointer;
		color: #fff;
		font-size: 48px;
		line-height: 1;
		transition: color 0.3s ease;
		font-weight: 300;
	}
	
	.mobile-close:hover {
		color: #D44313;
	}
	
	/* Mobile Menu Footer */
	.mobile-menu-footer {
		display: none;
		margin-top: auto;
		padding-top: 30px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
	
	.navbar-collapse.active .mobile-menu-footer {
		display: block;
	}
	
	.mobile-menu-footer .theme-button {
		display: inline-block;
		margin-bottom: 20px;
	}
	
	.mobile-phone {
		display: flex;
		align-items: center;
		gap: 10px;
		color: #fff;
		font-size: 24px;
		font-weight: 700;
		text-decoration: none;
		transition: color 0.3s ease;
	}
	
	.mobile-phone:hover {
		color: #D44313;
	}
	
	.mobile-phone svg {
		width: 24px;
		height: 24px;
	}
	
	.nav-link-wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	
	.navbar-nav .nav-item .nav-link {
		padding: 20px 0;
		flex: 1;
		font-weight: 700;
	}
	
	.navbar-nav .nav-item:not(.dropdown) .nav-link {
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}
	
	.dropdown-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 15px 10px;
		color: #fff;
	}
	
	.nav-item.dropdown.active .dropdown-toggle {
		color: #D44313;
	}
	
	.nav-item.dropdown.active .dropdown-toggle svg {
		transform: rotate(180deg);
	}
	
	.navbar-nav .nav-item:hover .nav-link {
		background: transparent;
		color: #D44313;
	}
	
	.dropdown-menu {
		position: static;
		background: rgba(0, 0, 0, 0.3);
		padding: 0 0 0 30px;
		min-width: auto;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}
	
	.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
		display: none;
	}
	
	.navbar-nav .nav-item.dropdown.active .dropdown-menu {
		display: block;
		max-height: 500px;
	}
	
	.dropdown-menu .dropdown-link {
		padding: 15px 0;
		display: block;
		font-size: 18px;
		font-weight: 600;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}
	
	.dropdown-menu .dropdown-link:last-child {
		border-bottom: none;
	}
	
	.header .navbar {
		justify-content:space-between;
	}
	
	.header .navbar .theme-button {
		display: none;
	}
	
	.inside-page-banner .inside-page-banner-title h1 {
		font-size: 28px;
	}
	
	.inside-page-banner .inside-page-banner-title {
		padding: 1.25em 0;
	}
	.core-values-row h3 {
		font-size: 22px;
	}
	.about-content p {
		font-size: 18px;
		line-height: 22px;
	}
	.core-values-row {
		flex-direction: column !important;
    	gap: 10px;
		margin-bottom: 30px;
	}
	.four-grid-industries-list {
		grid-template-columns: repeat(3, 1fr);
	}
	.accordion-header {
		min-height: 40px;
	}
	.accordion-header h3 {
		font-size: 28px;
	}
	.accordion-item .accordion-content .highlight {
		font-size: 22px;
	}
	.accordion-item .accordion-content p,
	ul li {
		font-size: 16px;
	}
}

@media screen and (max-width:768px) {
	.banner-section h1 {
        font-size: 42px;
    }
	.brand-strip {
        font-size: 22px;
    }
	.content-section p,
	.industries-card h3 {
        font-size: 18px;
    }
	.content-section {
		padding: 30px 0;
	}
	.industries-list {
		gap: 18px;
	}
	.certifications--list {
        font-size: 18px;
        line-height: 27px;
        flex-direction: column;
    }
	.industries-section, 
	.certifications-section {
		padding: 30px 0;
	}
	.page-heading {
        font-size: 28px;
        min-height: 36px;
    }
	.retail-hospitality-list h6 {
		font-size: 22px;
	}
	.four-grid-industries-list {
		grid-template-columns: repeat(2, 1fr);
	}
	.accordion-item .accordion-content .content-grid {
		grid-template-columns: repeat(1, 1fr);
   	 	gap: 0;
	}
	.accordion-item .accordion-header .arrow {
		width: 28px;
    	height: 20px;
	}
	
	.capabilities-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px 25px;
	}
	
	.accordion-item .accordion-content {
		display: block;
	}
	.accordion-img {
		max-width: 100%;
    	height: auto;
	}
}

@media screen and (max-width:600px) {
	.header .navbar {
		padding: 0.6em 1em;
	}
	.header .navbar .navbar-brand {
        max-width: 130px;
    }
	.theme-button {
		font-size: 14px;
	}
	
	/* Mobile menu adjustments */
	.navbar-collapse {
		padding: 80px 20px 40px;
	}
	
	.mobile-menu-header {
		padding: 0.2em 1em;
	}
	
	.mobile-menu-logo {
		max-width: 130px;
	}
	
	.mobile-close {
		font-size: 40px;
	}
	
	.navbar-nav .nav-item .nav-link {
		font-size: 20px;
		padding: 15px 0;
	}
	
	.dropdown-menu .dropdown-link {
		font-size: 16px;
		padding: 12px 0;
	}
	
	.mobile-phone {
		font-size: 20px;
	}
	
	.banner-section h1 {
        font-size: 36px;
    }
	.brand-strip {
        font-size: 18px;
        padding: 10px 1em;
    }
	.content-section p, 
	.industries-card h3 {
        font-size: 16px;
        line-height: 26px;
    }
	.content-section p {
        margin: 0 0 20px;
    }
	.content-section h3 {
        font-size: 18px;
    }
	.content-section .theme-button {
		 font-size: 16px;
	}
	.page-heading {
        font-size: 22px;
        min-height: 33px;
    }
	.industries-list {
		grid-template-columns: repeat(1, 1fr);
	}
	.certifications--list {
        font-size: 16px;
        line-height: 26px;
		gap: 12px;
    }
	.footer-row {
		grid-template-columns: repeat(1, 1fr);
		text-align: center;
	}
	.footer-logo {
		margin: 0 auto 16px;
	}
	footer .address {
    	margin: auto;
	}
	.footer-links {
		align-items: center;
	}
	.copyright-footer .container {
		flex-direction: column;
		gap: 1em;
	}
	.inside-page-banner .inside-page-banner-title h1,
	.accordion-header h3 {
		font-size: 22px;
	}
	.gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
        line-height: normal !important;
    }
	.capabilities-list-icon h6 {
		font-size: 16px;
	}
	.project-content {
		display: block;
	}
	.project-details {
    	width: auto;
		margin-top:0;
	}
	body .about-content:has(.project-details) .container .project-content p {
		max-width: 100% !important;
	}
	.project-details p br {
		display: none;
	}
}

@media screen and (min-width: 992px) {
	.industries-list-center {
		grid-template-columns: repeat(auto-fit, 271px);
		justify-content: center;
	}
}

@media screen and (min-width:769px) {
	.hamburger {
		display: none !important;
	}

	.navbar-collapse {
		display: block !important;
		position: static;
		opacity: 1;
		visibility: visible;
		height: auto;
		width: auto;
		background: transparent;
		padding: 0;
		overflow: visible;
		z-index: auto;
	}

	.mobile-menu-header,
	.mobile-menu-footer {
		display: none !important;
	}

	.navbar-nav {
		flex-direction: row;
		gap: 1em;
		margin: 0;
		max-width: none;
		width: auto;
	}

	.nav-link-wrapper {
		border-bottom: none;
	}

	.navbar-nav .nav-item .nav-link {
		padding: 8px 15px;
		font-weight: 700;
	}

	.navbar-nav .nav-item:not(.dropdown) .nav-link {
		border-bottom: none;
	}

	.dropdown-toggle {
		display: none;
	}

	.dropdown-menu {
		position: absolute;
		background: #D44313;
		padding: 0;
		max-height: none;
		overflow: visible;
	}
	
}


/* Client Logos Carousel */

.client-logos-section {
	width: 100%;
	margin-top: 80px !important;
}

.client-logos-section h6 {
	color: #424242;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 40px !important;
}

.client-logos-carousel {
	position: relative;
	padding: 0 60px;
}

.client-logos-carousel .slick-list .slick-track {
	display:flex !important;
}

.slick-carousel .slick-slide {
	padding: 0 15px;
	outline: none;
}

.logo-item {
	display: flex !important;
    align-items: center;
    justify-content: center;
    height: 280px !important;
    padding: 0;
    box-sizing: border-box;
}

.logo-item + .logo-item {
    border-left: 1px solid #DFDFDF;
}

.client-logo {
	aspect-ratio: 3/2;
    width: auto;
    height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

/* Slick Slider Styling */
.slick-prev,
.slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px !important;
	height: 50px !important;
	padding: 0 !important;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.3s ease;
	z-index: 10;
	font-size: 0;
	line-height: 44px;
	outline: none;
}

.slick-prev::before,
.slick-next::before {
	font-size: 54px !important;
	color: #000 !important;
}

.slick-prev {
	left: 0;
}

.slick-next {
	right: 0;
}

/* Responsive Design for Logo Carousel */
@media (max-width: 1024px) {
	.logo-item {
		height: 140px;
		padding: 25px;
	}

	.client-logo {
		max-height: 90px;
	}

	.client-logos-carousel {
		padding: 0 45px;
	}

	.slick-prev {
		left: 0;
	}

	.slick-next {
		right: 0;
	}
}

@media (max-width: 768px) {
	.logo-item {
		height: 130px;
		padding: 20px;
	}

	.client-logo {
		max-height: 80px;
	}

	.client-logos-carousel {
		padding: 0 35px;
	}

	.slick-prev {
		left: 0;
	}

	.slick-next {
		right: 0;
	}

	.slick-prev,
	.slick-next {
		width: 36px;
		height: 36px;
		line-height: 36px;
	}

	.slick-prev::before,
	.slick-next::before {
		font-size: 16px !important;
	}
}

@media (max-width: 480px) {
	.logo-item {
		height: 110px;
		padding: 15px;
	}

	.client-logo {
		max-height: 150px;
	}

	.client-logos-carousel {
		padding: 0 25px;
	}

	.slick-prev {
		left: 0;
	}

	.slick-next {
		right: 0;
	}

	.slick-prev,
	.slick-next {
		width: 32px;
		height: 32px;
		line-height: 32px;
	}

	.slick-prev::before,
	.slick-next::before {
		font-size: 36px !important;
	}
}