/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Luxine - Architecture & Interior Design HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Our Scrolling Ticker css
06. About Us css
07. Our Services css
08. Why Choose Us css
09. Intro Video css
10. How It Works css
11. Our Projects css
12. Our Awards css
13. Our Pricing css
14. Our Testimonials css
15. Our FAQs css
16. Our Blog css
17. Footer css
18. About Us Page css
19. Services Page css
20. Services Single css
21. Blog Archive css
22. Blog Single css
23. Projects Page css
24. Project Single css
25. Team Page css
26. Team Single css
27. Pricing Page css
28. Testimonials Page css
29. Image Gallery css
30. Video Gallery css
31. FAQs Page css
32.	Contact Us Page css
33. 404 Error Page css
34. Responsive css
35. Home - Version 2 css
36. Home - Version 3 css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #0F395C;
	/* Corporate Navy */
	--secondary-color: #FDFAF4;
	/* Warm Ivory */
	--bg-color: #FDFAF4;
	/* General Background */
	--text-color: #4A3728;
	/* Warm Dark Brown Body Text */
	--accent-color: #CA8C19;
	/* Bohri Gold Primary Accent */
	--accent-secondary-color: #EEC06B;
	/* Soft Gold Secondary Accent */
	--white-color: #FFFFFF;
	--divider-color: rgba(15, 57, 92, 0.08);
	/* Navy with opacity for dividers */
	--dark-divider-color: rgba(255, 255, 255, 0.1);
	--error-color: rgb(230, 87, 87);
	--default-font: "DM Sans", sans-serif;
	--accent-font: "Space Grotesk", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html,
body {
	width: 100%;
	overflow-x: clip;
}

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--text-color);
	background: var(--bg-color);
}

::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}

::selection {
	color: var(--primary-color);
	background-color: var(--accent-secondary-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	margin: 0;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

.container {
	max-width: 1500px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 100px;
	padding: 17px 45px 17px 24px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover {
	background-position: right center;
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	width: 12px;
	height: 12px;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.readmore-btn {
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6em;
	text-transform: capitalize;
	color: var(--primary-color);
	padding-right: 22px;
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	width: 12px;
	height: 12px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.dark-section {
	background-color: var(--primary-color);
	background-image: url('../images/dark-section-bg-shape.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-row .section-title.section-title-center {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
}

.section-title-content p {
	margin-bottom: 20px;
}

.section-title-content p:last-child {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	display: inline-block;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6em;
	text-transform: capitalize;
	color: var(--primary-color);
	background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: left center;
	background-size: 18px auto;
	padding-left: 26px;
	margin-bottom: 15px;
}

.section-title h1 {
	font-size: 80px;
	font-weight: 400;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 52px;
	font-weight: 400;
	line-height: 1.2em;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
	color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.topbar {
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	padding: 15px 0;
}

.topbar-contact-info ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-contact-info ul li {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	color: var(--white-color);
	line-height: 1.4em;
}

.topbar-contact-info ul li img {
	max-width: 18px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li:hover img {
	filter: brightness(0) invert(0);
}

.topbar-contact-info ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li:hover a {
	color: var(--primary-color);
}

.topbar-social-links {
	text-align: right;
}

.topbar-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-social-links ul li {
	display: inline-block;
	font-family: var(--default-font);
	font-size: 14px;
	line-height: normal;
	border-right: 1px solid var(--dark-divider-color);
	margin-right: 15px;
	padding-right: 15px;
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.topbar-social-links ul li a {
	display: flex;
	align-items: center;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover i,
.topbar-social-links ul li a:hover {
	color: var(--primary-color);
}

header.main-header {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	background: transparent;
	border-radius: 0;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
	padding: 25px 0px;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 10px;
	position: relative;
}

.main-menu ul li a {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;
	padding: 12px 10px !important;
	color: var(--white-color);
	background: transparent;
	border-radius: 0px;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-secondary-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0.8);
	transform-origin: top;
	padding: 8px 0;
	margin: 0;
	list-style: none;
	width: 245px;
	border-radius: 12px;
	position: absolute;
	left: 0;
	top: 100%;
	background: #0F395C;
	border: 1px solid rgba(202, 140, 25, 0.25);
	border-top: 3px solid #CA8C19;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 245px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	padding: 8px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: #FFFFFF !important;
	padding: 10px 22px !important;
	font-size: 14px;
	font-weight: 500;
	display: block;
	transition: all 0.25s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: #CA8C19 !important;
	background-color: rgba(202, 140, 25, 0.08) !important;
	padding: 10px 22px 10px 26px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	/* Override the SlickNav plugin's own default (background:#4c4c4c; padding:5px)
	   which otherwise shows through as a grey box even while the inner nav below
	   is collapsed/hidden. */
	background: transparent;
	padding: 0;
}

/* .slicknav_menu itself has no open/closed state — SlickNav only toggles
   display:none on the inner .slicknav_nav <ul>. All visual chrome (bg,
   padding, border, shadow) must live on that inner nav instead — anything
   put on the wrapper renders even while collapsed (a shadow, for example,
   paints outside a zero-height box and shows as a stray line). */
.slicknav_menu .slicknav_nav {
	padding: 8px 0;
	background: #0F395C;
	border-bottom: 2px solid #CA8C19;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 4px 0;
	background: #08243C;
	border-left: 2px solid #CA8C19;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 8px 20px;
	color: #FFFFFF;
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: rgba(202, 140, 25, 0.12);
	color: #CA8C19;
}

.slicknav_menu ul ul li a {
	padding: 8px 20px 8px 32px;
	color: rgba(255, 255, 255, 0.9);
}

.slicknav_menu ul ul li a:hover {
	color: #CA8C19;
	background-color: transparent;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/**** 	    04. Hero css		 ****/
/************************************/

.hero {
	position: relative;
	background-image: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 0 !important;
	height: 100vh !important;
	min-height: 700px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 50%;
	z-index: 1;
}

.hero .container {
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 1100px;
	text-align: center;
	margin: 0 auto;
}

.hero-content .section-title p {
	max-width: 900px;
	font-weight: 500;
	margin-left: auto;
	margin-right: auto;
}

.hero-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 30px;
	margin-top: 60px;
}

.video-play-button {
	display: inline-flex;
	align-items: center;
}

.video-play-button a {
	position: relative;
	height: 50px;
	width: 50px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button:hover a {
	background-position: right center;
}

.video-play-button a i {
	font-size: 16px;
	color: var(--white-color);
	margin-left: 2px;
}

.video-play-button p {
	font-size: 16px;
	font-weight: 600;
	color: var(--white-color);
	margin: 0 0 0 10px;
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker {
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	padding: 24px 0;
}

.scrolling-ticker-box {
	--gap: 30px;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

.scrolling-content span {
	display: inline-flex;
	align-items: center;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.1em;
	text-transform: uppercase;
	color: var(--white-color);
}

.scrolling-content span img {
	width: 100%;
	max-width: 30px;
	margin-right: 30px;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/************************************/
/***       06. About Us css       ***/
/************************************/

.about-us {
	padding: 100px 0;
}

.about-us-images {
	display: flex;
	flex-wrap: wrap;
	background-image: url('../images/about-us-image-bg.png');
	background-repeat: no-repeat;
	background-position: bottom 165px left 48px;
	background-size: auto;
	margin-right: 15px;
}

.about-us-image-box-1 {
	width: 78%;
	position: relative;
	z-index: 2;
}

.about-us-image figure {
	display: block;
	border-radius: 20px;
}

.about-us-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.104;
	object-fit: cover;
	border-radius: 20px;
}

.about-us-image-box-2 {
	position: relative;
	width: 22%;
	z-index: 1;
}

.about-us-image-title {
	margin-bottom: 10px;
}

.about-us-image-title h2 {
	font-size: 5.729vw;
	font-weight: 700;
	line-height: 0.7em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
	cursor: none;
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-stroke: 1px var(--divider-color);
}

.about-us-image-box-2 .about-us-image figure {
	border-radius: 30px;
	margin-left: -300px;
	margin-top: 120px;
}

.about-us-image-box-2 .about-us-image figure img {
	aspect-ratio: 1 / 0.9264;
}

.about-us-list {
	margin-bottom: 40px;
}

.about-us-list ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-us-list ul li {
	width: calc(50% - 15px);
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
}

.about-us-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 18px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 0;
	left: 0;
}

.about-us-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-us-item {
	width: calc(50% - 15px);
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.about-us-item-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.about-us-item-title h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.about-us-item-header .icon-box img {
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.about-us-item:hover .about-us-item-header .icon-box img {
	transform: rotateY(180deg);
	filter: brightness(0) invert(0);
}

.about-us-item-content p {
	margin: 0;
}

.about-us-item-content ul {
	border-top: 1px solid var(--divider-color);
	list-style: none;
	margin: 20px 0 0;
	padding: 20px 0 0;
}

.about-us-item-content ul li {
	position: relative;
	padding-left: 15px;
}

.about-us-item-content ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 5px;
	height: 5px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	transform: translateY(-50%);
}

.about-us-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 30px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	color: var(--primary-color);
	margin-bottom: 0;
}

.section-footer-text p span {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	color: var(--white-color);
	line-height: 1em;
	padding: 5px 10px;
	border-radius: 20px;
	margin-right: 10px;
}

.section-footer-text p a {
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--accent-secondary-color);
}

.section-footer-text ul {
	width: 100%;
	padding: 0;
	margin: 20px 0 0;
	list-style: none;
}

.section-footer-text ul li {
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
	color: var(--primary-color);
	margin-right: 10px;
}

.section-footer-text ul li:last-child {
	margin: 0;
}

.section-footer-text ul li i {
	font-size: 16px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li {
	color: var(--white-color);
}

.dark-section .section-footer-text p a {
	color: var(--accent-color);
}

.dark-section .section-footer-text p a:hover {
	color: var(--accent-secondary-color);
}

.section-footer-text.section-footer-contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
	width: 30px;
	height: 30px;
	padding: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

.section-footer-text.section-footer-contact span img {
	width: 100%;
	max-width: 16px;
}

.satisfy-client-images {
	display: inline-flex;
	align-items: center;
}

.satisfy-client-image {
	position: relative;
	display: inline-block;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	margin-left: -16px;
	overflow: hidden;
	z-index: 1;
}

.satisfy-client-image:first-child {
	margin-left: 0;
}

.satisfy-client-image figure {
	display: block;
}

.satisfy-client-image figure img {
	width: 100%;
	max-width: 50px;
}

.satisfy-client-image.add-more {
	width: 52px;
	height: 52px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.satisfy-client-image.add-more:hover {
	background-position: right center;
}

.satisfy-client-image.add-more h3 {
	font-size: 16px;
	color: var(--white-color);
}

.section-footer-text.section-satisfy-img {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image {
	margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image:first-child {
	margin-left: 0;
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
	max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
	width: 32px;
	height: 32px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
	width: 100%;
	max-width: 16px;
}

.section-footer-text.section-satisfy-img ul {
	margin: 5px 0 0;
}

.about-us-footer .section-footer-text {
	margin-top: 0;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services {
	background: var(--secondary-color) url('../images/section-bg-shape-1.png') no-repeat;
	background-position: bottom right;
	background-size: auto;
	padding: 100px 0;
}

.service-item {
	position: relative;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	min-height: 400px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.service-item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--white-color);
	border-radius: 20px;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.service-item.active::before,
.service-item:hover::before {
	transform: translate(100%, -100%);
}

.service-item-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-image,
.service-item:hover .service-item-image {
	opacity: 1;
}

.service-item-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	opacity: 40%;
}

.service-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-item-body {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: 100%;
	z-index: 2;
}

.service-item-body .icon-box img {
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-body .icon-box img,
.service-item:hover .service-item-body .icon-box img {
	filter: brightness(0) invert(1);
}

.service-item-content h2 {
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item-content h2 a {
	color: inherit;
}

.service-item.active .service-item-content h2,
.service-item:hover .service-item-content h2 {
	color: var(--white-color);
}

.service-item-content p {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin: 20px 0 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-content p,
.service-item:hover .service-item-content p {
	color: var(--white-color);
	border-color: var(--dark-divider-color);
}

.service-item-btn {
	margin-top: 40px;
}

.service-item-btn a {
	position: relative;
	width: 50px;
	height: 50px;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.service-item-btn a:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-btn a::before,
.service-item:hover .service-item-btn a::before {
	transform: scale(1);
}

.service-item .service-item-btn a:hover {
	background-position: right center;
}

.service-item-btn a img {
	width: 100%;
	max-width: 14px;
	transition: all 0.4s ease-in-out;
}

.service-item .service-item-btn a:hover img {
	transform: rotate(45deg);
}

.service-item.active .service-item-btn a img,
.service-item:hover .service-item-btn a img {
	filter: brightness(0) invert(1);
}

/************************************/
/***     08. Why Choose Us css    ***/
/************************************/

.why-choose-us {
	padding: 100px 0;
}

.why-choose-item {
	margin-bottom: 30px;
}

.why-choose-item:last-child {
	margin-bottom: 0;
}

.why-choose-item .icon-box {
	margin-bottom: 30px;
}

.why-choose-item .icon-box img {
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(0);
	transform: rotateY(180deg);
}

.why-choose-item-content h3 {
	font-size: 20px;
}

.why-choose-item-content p {
	margin: 10px 0 0;
}

.why-choose-progress-list {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.skills-progress-bar {
	margin-bottom: 30px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skills-progress-bar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
	color: var(--primary-color);
}

.skills-progress-bar .skill-data .skill-title {
	font-family: var(--accent-font);
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 10px;
	background: var(--secondary-color);
	border-radius: 100px;
	overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 100px;
}

.why-choose-btn {
	margin-top: 40px;
}

.why-choose-images {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
}

.why-choose-image-box-1 {
	position: relative;
	width: 65%;
	z-index: 2;
}

.why-choose-image-box-2 {
	width: 35%;
	padding-bottom: 55px;
}

.why-choose-image-box-1 .contact-us-circle {
	display: inline-block;
	margin: 0 0 50px 3.906vw;
}

.contact-us-circle a {
	display: inline-block;
	border-radius: 50%;
}

.contact-us-circle a img {
	width: 100%;
	max-width: 120px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.contact-us-circle a:hover img {
	animation-play-state: paused;
}

.why-choose-image figure {
	display: block;
	border-radius: 20px;
}

.why-choose-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.055;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-image-box-1 .why-choose-image figure {
	border: 10px solid var(--bg-color);
	border-radius: 30px;
}

.why-choose-image-box-2 .why-choose-image figure {
	margin-left: -228px;
}

.why-choose-image-box-2 .why-choose-image figure img {
	aspect-ratio: 1 / 0.971;
}

.why-choose-counter-box {
	max-width: 235px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 20px;
	text-align: center;
	margin: 20px 0 0 10px;
	padding: 30px;
	transition: all 0.4s ease-in-out;
}

.why-choose-counter-box:hover {
	background-position: right center;
}

.why-choose-counter-box h2 {
	font-size: 34px;
	font-weight: 700;
	color: var(--white-color);
}

.why-choose-counter-box h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-top: 10px;
}

.why-choose-list-custom {
	margin-top: 35px;
	margin-bottom: 35px;
}

.why-choose-list-custom ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.why-choose-list-custom ul li {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.why-choose-list-custom ul li span.icon {
	font-size: 22px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	line-height: 1;
	margin-top: 3px;
	flex-shrink: 0;
}

.why-choose-list-custom ul li .text h4 {
	font-family: var(--primary-font);
	font-size: 18px;
	color: var(--primary-color);
	font-weight: 700;
	margin: 0 0 6px 0;
	text-transform: capitalize;
}

.why-choose-list-custom ul li .text p {
	font-family: var(--primary-font);
	font-size: 15px;
	color: var(--text-color);
	line-height: 1.65em;
	margin: 0;
}

.why-choose-us .section-footer-text {
	margin-top: 60px;
}

/************************************/
/***      09. Intro Video css     ***/
/************************************/

.intro-video-box {
	position: relative;
	background: transparent;
}

.intro-video-box .container-fluid {
	padding: 0;
}

.intro-video-image {
	position: relative;
	overflow: hidden;
}

.intro-video-image figure {
	display: block;
}

.intro-video-image figure:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 40%;
	z-index: 1;
}

.intro-video-image img {
	width: 100%;
	aspect-ratio: 1 / 0.47;
	object-fit: cover;
	transition: all 2s ease-in-out;
}

.intro-video:hover .intro-video-image img {
	transform: scale(1.03);
}

.intro-video .video-play-button {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.intro-video .video-play-button a {
	width: 100px;
	height: 100px;
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
	border: 1px solid var(--white-color);
	background: transparent;
	color: var(--white-color);
}

.video-play-button:hover a {
	border-color: var(--accent-color);
	color: var(--accent-color);
}

/************************************/
/***     10. How It Works css     ***/
/************************************/

.how-it-works {
	padding: 100px 0;
}

.how-works-item {
	position: relative;
	min-height: 395px;
	height: calc(100% - 30px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
	margin-bottom: 30px;
	overflow: hidden;
}

.how-works-item::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
}

.how-works-item:hover:before {
	height: 100%;
	border-radius: 20px;
}

.how-works-item .icon-box img {
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.how-works-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.how-works-item-body {
	position: relative;
	z-index: 1;
}

.how-works-item-content h3 {
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.how-works-item:hover .how-works-item-content h3 {
	color: var(--white-color);
}

.how-works-item-content p {
	margin: 10px 0 0;
	transition: all 0.4s ease-in-out;
}

.how-works-item:hover .how-works-item-content p {
	color: var(--white-color);
}

.how-works-item-content ul {
	border-top: 1px solid var(--divider-color);
	list-style: none;
	margin: 30px 0 0;
	padding: 30px 0 0;
}

.how-works-item-content ul li {
	position: relative;
	padding-left: 15px;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.how-works-item:hover .how-works-item-content ul li {
	color: var(--white-color);
}

.how-works-item-content ul li:last-child {
	margin-bottom: 0;
}

.how-works-item-content ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 5px;
	height: 5px;
	background: var(--accent-color);
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.how-works-item:hover .how-works-item-content ul li::before {
	background: var(--white-color);
}

.how-works-item-no {
	text-align: right;
	margin: 10px -50px -67px 0;
}

.how-works-item-no h2 {
	display: inline-block;
	font-size: 100px;
	font-weight: 700;
	line-height: 1em;
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-stroke: 1px var(--divider-color);
	transition: all 0.4s ease-in-out;
}

.how-works-item:hover .how-works-item-no h2 {
	-webkit-text-stroke-color: var(--dark-divider-color);
}

/************************************/
/***     11. Our Projects css     ***/
/************************************/

.our-projects {
	position: relative;
	padding: 100px 0;
}

.our-projects::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url('../images/section-bg-shape-2.png');
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto;
}

.our-projects .container {
	position: relative;
	z-index: 2;
}

.our-projects .container-fluid {
	position: relative;
	padding-right: 0;
	z-index: 2;
}

.project-slider {
	margin-left: calc(((100vw - 1500px) / 2));
	margin-right: calc(((100vw - 1500px) / 2));
}

.project-item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.project-item-image a {
	display: block;
	border-radius: 20px;
	cursor: none;
	overflow: hidden;
}

.project-item-image a figure {
	display: block;
	border-radius: 20px;
}

.project-item-image a figure img {
	width: 100%;
	aspect-ratio: 1 / 1.123;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.6s ease-in-out;
}

.project-item:hover .project-item-image a figure img {
	transform: scale(1.06);
}

.project-item-content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	height: 180px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.project-item-content::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.90) 6.72%, rgba(0, 0, 0, 0.00) 100%);
	width: 100%;
	height: 100%;
	z-index: -1;
}

.project-item-content h2 {
	font-size: 20px;
	color: var(--white-color);
	margin: 0 0 10px 0;
}

.project-item-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.project-item-content h2 a {
	color: inherit;
}

.project-item-content ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 15px;
}

.project-item-content ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.project-company-slider-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 80px;
}

.project-company-slider-content {
	max-width: 280px;
	border-right: 1px solid var(--dark-divider-color);
	padding-right: 40px;
	margin-right: 40px;
}

.project-company-slider-content h3 {
	font-size: 20px;
	color: var(--white-color);
	line-height: normal;
}

.project-company-slider {
	width: calc(100% - 320px);
	text-align: center;
}

.project-company-slider img {
	max-width: 164px;
	height: 40px;
}

/************************************/
/***      12. Our Awards css      ***/
/************************************/

.our-awards {
	padding: 100px 0;
}

.award-image-box {
	position: relative;
	height: 100%;
}

.award-image {
	height: 100%;
}

.award-image figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.award-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.792;
	object-fit: cover;
	border-radius: 20px;
}

.award-cta-box {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	background-color: var(--divider-color);
	border-radius: 20px;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 30px;
	z-index: 2;
}

.award-cta-box-content {
	max-width: 340px;
}

.award-cta-box-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.award-item-list {
	height: 100%;
	align-content: center;
	margin-left: 15px;
}

.award-item {
	border-bottom: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.award-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.award-item-info {
	width: calc(100% - 130px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 80px;
}

.award-item-image figure {
	display: block;
	border-radius: 20px;
}

.award-item-image figure img {
	width: 100%;
	max-width: 120px;
}

.award-item-cotent {
	width: calc(100% - 200px);
}

.award-item-cotent ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.award-item-cotent ul li {
	position: relative;
	line-height: 1.5em;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 15px;
}

.award-item-cotent ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.award-item-cotent h3 {
	font-size: 20px;
	margin-top: 5px;
}

.award-item-btn a {
	position: relative;
	width: 50px;
	height: 50px;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.award-item-btn a::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transform: scale(0);
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
}

.award-item:hover .award-item-btn a::before {
	transform: scale(1);
}

.award-item-btn a:hover:before {
	background-position: right center;
}

.award-item-btn a img {
	width: 100%;
	max-width: 14px;
	transition: all 0.4s ease-in-out;
}

.award-item:hover .award-item-btn a img {
	filter: brightness(0) invert(1);
}

.award-item .award-item-btn a:hover img {
	transform: rotate(45deg);
}

/************************************/
/***      13. Our Pricing css     ***/
/************************************/

.our-pricing {
	background: var(--secondary-color) url('../images/section-bg-shape-3.png') no-repeat;
	background-position: bottom right;
	background-size: auto;
	padding: 100px 0;
}

.pricing-item {
	height: calc(100% - 30px);
	background-color: var(--bg-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-item-header .icon-box {
	margin-bottom: 30px;
}

.pricing-item-header .icon-box img {
	width: 100%;
	max-width: 50px;
}

.pricing-item-title h3 {
	font-size: 20px;
}

.pricing-item-title p {
	margin: 5px 0 0;
}

.pricing-item-content {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

.pricing-item-content p {
	margin: 0;
}

.pricing-item-list h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.pricing-item-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-item-list ul li {
	position: relative;
	line-height: 1.5em;
	margin-bottom: 15px;
	padding-left: 25px;
}

.pricing-item-list ul li:last-child {
	margin-bottom: 0;
}

.pricing-item-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 18px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 0;
	left: 0;
}

.pricing-item-price {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.pricing-item-price h2 {
	font-size: 34px;
}

.pricing-item-price h2 sub {
	font-size: 16px;
	bottom: 0;
}

.pricing-item-btn {
	margin-top: 30px;
}

.pricing-item-btn .btn-default {
	width: 100%;
	text-align: center;
	padding: 17px;
}

.pricing-item-btn .btn-default::before {
	display: none;
}

.pricing-benefit-list {
	margin-top: 30px;
}

.pricing-benefit-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 60px;
}

.pricing-benefit-list ul li {
	display: inline-flex;
	align-items: center;
	color: var(--primary-color);
}

.pricing-benefit-list ul li img {
	width: 100%;
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/***   14. Our Testimonials css   ***/
/************************************/

.our-testimonials {
	padding: 100px 0;
}

.testimonial-image-box {
	position: relative;
	height: 100%;
}

.testimonial-image {
	height: 100%;
}

.testimonial-image figure {
	height: 100%;
	display: block;
	border-radius: 20px;
}

.testimonial-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.19;
	object-fit: cover;
	border-radius: 20px;
}

.testimonial-client-box {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	background-color: var(--divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 20px;
	padding: 20px;
}

.testimonial-client-box-content {
	margin-top: 20px;
}

.testimonial-client-box-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-item {
	background: var(--secondary-color);
	border-radius: 20px;
	min-height: 560px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 40px;
}

.testimonial-item-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.testimonial-item-logo img {
	width: 100%;
	max-width: 165px;
}

.testimonial-item-quote img {
	width: 100%;
	max-width: 50px;
}

.testimonial-item-content p {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0;
}

.testimonial-author-content {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.testimonial-author-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-author-content p {
	text-transform: capitalize;
	margin: 5px 0 0;
}

.our-testimonials .section-footer-text {
	margin-top: 60px;
}

/************************************/
/***       15. Our FAQs css       ***/
/************************************/

.our-faqs {
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.faqs-content {
	position: sticky;
	top: 30px;
}

.our-faqs .faq-accordion {
	margin-left: 15px;
}

.faq-accordion .accordion-item {
	margin-bottom: 40px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3em;
	background: transparent;
	border-bottom: 1px solid var(--divider-color);
	padding: 0 25px 20px 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item:last-child .accordion-header .accordion-button.collapsed {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f077';
	font-family: "FontAwesome";
	position: absolute;
	right: 0;
	top: 0;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	transform: rotate(180deg);
}

.faq-accordion .accordion-item .accordion-body {
	padding: 20px 20px 0 0;
}

.faq-accordion .accordion-item .accordion-body p {
	margin: 0;
}

.faqs-counter-list {
	border-top: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px 80px;
	padding-top: 80px;
	margin-top: 80px;
}

.faqs-counter-item {
	position: relative;
	width: calc(25% - 72px);
	text-align: center;
	padding: 15px 0;
}

.faqs-counter-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -40px;
	width: 1px;
	height: 100%;
	background: var(--divider-color);
}

.faqs-counter-item:nth-child(4n + 4):before {
	display: none;
}

.faqs-counter-item h2 {
	font-size: 52px;
	font-weight: 700;
}

.faqs-counter-item p {
	margin: 5px 0 0 0;
}

/************************************/
/***       16. Our Blog css       ***/
/************************************/

.our-blog {
	padding: 100px 0 70px;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	position: relative;
	margin-bottom: 20px;
}

.post-featured-image a {
	cursor: none;
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.post-featured-image figure {
	display: block;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.745;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.06);
}

.post-item-tags {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 1;
}

.post-item-tags a {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	font-family: var(--accent-font);
	text-transform: capitalize;
	color: var(--white-color);
	display: inline-block;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 5px;
	padding: 5px 15px 5px 30px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.post-item-tags a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
	background: var(--white-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.post-item-tags a:hover {
	background-color: var(--accent-color);
}

.post-item-content h2 {
	font-size: 20px;
}

.post-item-content h2 a {
	display: inline-block;
	color: inherit;
}

.post-item-btn {
	border-top: 1px solid var(--divider-color);
	margin-top: 20px;
	padding-top: 20px;
}

/************************************/
/***        17. Footer css        ***/
/************************************/

.main-footer {
	position: relative;
	padding: 100px 0 0;
}

.main-footer::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url(../images/section-bg-shape-4.png);
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: auto;
}

.main-footer .container {
	position: relative;
	z-index: 2;
}

.footer-header {
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 40px;
	margin-bottom: 60px;
}

.about-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.footer-logo {
	border-right: 1px solid var(--dark-divider-color);
	padding-right: 100px;
}

.footer-logo img {
	width: 100%;
	max-width: 146px;
}

.about-footer-content {
	max-width: 780px;
}

.about-footer-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-social-links ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.footer-social-links ul li a {
	width: 40px;
	height: 40px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
	background: var(--accent-color);
}

.footer-social-links ul li a i {
	font-size: 18px;
	color: inherit;
}

.footer-newsletter-box h3 {
	font-size: 30px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-newsletter-box p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-newsletter-form {
	margin-top: 40px;
}

.footer-newsletter-form .form-group {
	position: relative;
	display: flex;
	border-bottom: 1px solid var(--dark-divider-color);
}

.footer-newsletter-form .form-group .form-control {
	width: calc(100% - 40px);
	font-size: 16px;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 10px 20px 25px 0;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--white-color);
	opacity: 40%;
}

.footer-newsletter-form .form-group .newsletter-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	padding: 0;
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
	background-position: right;
}

.footer-newsletter-form .form-group .newsletter-btn img {
	width: 14px;
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img {
	transform: rotate(45deg);
}

.footer-links-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-left: 5.208vw;
}

.footer-links {
	max-width: 40%;
}

.footer-links h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	color: var(--white-color);
	line-height: 1.5em;
	background-image: url('../images/icon-asterisk.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 16px auto;
	padding-left: 24px;
	margin-bottom: 20px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--accent-secondary-color);
}

.footer-contact-links {
	max-width: 60%;
}

.footer-contact-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
}

.footer-contact-item:last-child {
	margin-bottom: 0;
}

.footer-contact-item .icon-box {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-contact-item:hover .icon-box {
	background-position: right center;
}

.footer-contact-item .icon-box img {
	width: 100%;
	max-width: 20px;
}

.footer-contact-content {
	width: calc(100% - 55px);
}

.footer-contact-content h3 {
	margin-bottom: 0;
}

.footer-contact-content p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.footer-contact-content p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-content p a:hover {
	color: var(--accent-secondary-color);
}

.footer-copyright {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--dark-divider-color);
	padding: 40px 0 60px;
	margin-top: 60px;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-privacy-policy ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-privacy-policy ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
}

.footer-privacy-policy ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -24px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 100px;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
}

.footer-privacy-policy ul li:last-child::before {
	display: none;
}

.footer-privacy-policy ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-privacy-policy ul li a:hover {
	color: var(--accent-secondary-color);
}

/************************************/
/***    18. About Us Page css     ***/
/************************************/

.page-header {
	position: relative;
	background: url('../images/page-header-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 260px 0 150px;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 2;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 80px;
	font-weight: 400;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	color: var(--white-color);
	text-transform: uppercase;
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol {
	position: relative;
	margin: 0;
	padding: 0;
	justify-content: center;
	z-index: 1;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.heights-page-header .breadcrumb,
.horizon-page-header .breadcrumb,
.pgh-wrap .breadcrumb {
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
}

.heights-page-header .breadcrumb-item a,
.horizon-page-header .breadcrumb-item a,
.pgh-wrap .breadcrumb-item a {
	color: rgba(255,255,255,0.55);
	font-size: 13px;
	text-decoration: none;
}

.heights-page-header .breadcrumb-item.active,
.horizon-page-header .breadcrumb-item.active,
.pgh-wrap .breadcrumb-item.active {
	color: #CA8C19;
	font-size: 13px;
}

.heights-page-header .breadcrumb-item + .breadcrumb-item::before,
.horizon-page-header .breadcrumb-item + .breadcrumb-item::before,
.pgh-wrap .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255,255,255,0.5);
}

.what-we-do {
	background: var(--secondary-color);
	padding: 100px 0;
}

.what-we-do-boxes {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.what-we-item-list {
	width: calc(28% - 20px);
}

.what-we-item {
	margin-bottom: 80px;
}

.what-we-item:last-child {
	margin-bottom: 0;
}

.what-we-item .icon-box {
	margin-bottom: 30px;
}

.what-we-item .icon-box img {
	width: 100%;
	max-width: 40px;
}

.what-we-item-content h3 {
	font-size: 20px;
}

.what-we-item-content p {
	margin: 10px 0 0;
}

.what-we-item-content ul {
	list-style: none;
	border-top: 1px solid var(--divider-color);
	margin: 20px 0 0;
	padding: 20px 0 0;
}

.what-we-item-content ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
}

.what-we-item-content ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	background: linear-gradient(180deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.what-we-image-box {
	width: calc(44% - 20px);
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: center;
	margin-bottom: -20px;
	padding: 0 20px;
}

.what-we-image-box-1 {
	width: 70%;
}

.what-we-image-box-2 {
	position: relative;
	width: 58%;
	z-index: 1;
}

.what-we-image figure {
	display: block;
	border-radius: 400px 400px 0 0;
}

.what-we-image figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 400px 400px 0 0;
}


.what-we-image-box-1 .what-we-image figure img {
	aspect-ratio: 1 / 1.581;
}

.what-we-image-box-2 .what-we-image figure {
	border: 6px solid var(--secondary-color);
	border-bottom: none;
	border-right: none;
}

.what-we-image-box-2 .what-we-image figure img {
	aspect-ratio: 1 / 1.474;
}

.what-we-image-box-2 .contact-us-circle {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.our-features {
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.feature-counter-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 30px 60px;
}

.feature-counter-item {
	position: relative;
	max-width: 240px;
}

.feature-counter-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -30px;
	width: 1px;
	height: 100%;
	background: var(--divider-color);
}

.feature-counter-item:last-child:before {
	display: none;
}

.feature-counter-item h2 {
	font-size: 52px;
	font-weight: 700;
}

.feature-counter-item h3 {
	font-size: 20px;
	margin-top: 5px;
}

.feature-video-box {
	position: relative;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.feature-image {
	height: 100%;
}

.feature-image figure {
	height: 100%;
	position: relative;
	display: block;
	border-radius: 20px;
}

.feature-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 40%;
}

.feature-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.52;
	object-fit: cover;
	border-radius: 20px;
}

.watch-our-video-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.watch-our-video-circle a {
	display: block;
	cursor: none;
	border-radius: 50%;
}

.watch-our-video-circle a img {
	width: 100%;
	max-width: 120px;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.feature-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.feature-item {
	width: calc(50% - 15px);
	min-height: 380px;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 40px 30px;
}

.feature-item-header .icon-box {
	margin-bottom: 30px;
}

.feature-item-header .icon-box img {
	width: 100%;
	max-width: 50px;
}

.feature-item-content h3 {
	font-size: 20px;
}

.feature-item-content p {
	margin: 10px 0 0;
}

.feature-item-body {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
}

.feature-item-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.feature-item-body ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
}

.feature-item-body ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 18px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 0;
	left: 0;
}

.our-feature-footer {
	margin-top: 60px;
}

.our-feature-footer-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

.our-feature-footer-list ul li {
	position: relative;
	background: transparent;
	border: 1px solid var(--divider-color);
	font-size: 16px;
	line-height: 1.25em;
	color: var(--primary-color);
	padding: 10px 20px 10px 32px;
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.our-feature-footer-list ul li::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.our-feature-footer-list ul li:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.our-feature-footer .section-footer-text {
	margin-top: 30px;
}

.cta-box {
	position: relative;
	background-image: url('../images/cta-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.cta-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 60%;
}

.cta-box .container {
	position: relative;
	z-index: 2;
}

.cta-client-box {
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 20px;
	max-width: 420px;
	margin-left: auto;
	padding: 40px;
}

.cta-client-box h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.cta-client-box p {
	color: var(--white-color);
	margin: 20px 0 0;
}

.cta-item-list {
	border-top: 1px solid var(--dark-divider-color);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 180px;
	padding-top: 60px;
}

.cta-item {
	width: calc(33.33% - 20px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.cta-item .icon-box img {
	width: 100%;
	max-width: 40px;
}

.cta-item-content {
	width: calc(100% - 55px);
}

.cta-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.our-team {
	padding: 100px 0;
}

.team-item {
	position: relative;
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.team-item-image a {
	display: block;
	cursor: none;
}

.team-item-image figure {
	position: relative;
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.team-item-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.30) 100%);
	z-index: 1;
}

.team-item-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.264;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.6s ease-in-out;
}

.team-item:hover .team-item-image figure img {
	transform: scale(1.06);
}

.team-item-body {
	position: absolute;
	left: 30px;
	bottom: 15px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-item-body {
	bottom: 30px;
}

.team-item-content h2 {
	font-size: 20px;
}

.team-item-content h2 a {
	color: var(--white-color);
}

.team-item-content p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.team-social-list {
	height: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	margin-top: 15px;
}

.team-item:hover .team-social-list {
	height: 40px;
	opacity: 1;
	visibility: visible;
}

.team-social-list ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 0;
}

.team-social-list ul li a {
	width: 40px;
	height: 40px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-list ul li a:hover {
	background-color: var(--white-color);
	color: var(--primary-color);
}

.team-social-list ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***     19. Services Page css    ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

/************************************/
/***    20. Services Single css   ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 15px;
}

.page-category-list {
	background: var(--secondary-color);
	border-radius: 20px;
	margin-bottom: 60px;
	overflow: hidden;
}

.page-category-list h3 {
	font-size: 20px;
	color: var(--white-color);
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	line-height: normal;
	padding: 20px 40px;
}

.page-category-list ul {
	list-style: none;
	margin: 0;
	padding: 40px;
}

.page-category-list ul li {
	font-weight: 600;
	line-height: 1.5em;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.page-category-list ul li:last-child {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.page-category-list ul li a {
	position: relative;
	display: block;
	font-family: var(--accent-font);
	text-transform: capitalize;
	color: var(--primary-color);
	padding-right: 25px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: url('../images/arrow-primary.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 12px;
	height: 12px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.sidebar-cta-box {
	position: relative;
	background: url('../images/sidebar-cta-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	text-align: center;
	border-radius: 20px;
	padding: 50px;
	overflow: hidden;
}

.sidebar-cta-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 40%;
	z-index: 0;
}

.sidebar-cta-box .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 40px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.sidebar-cta-box:hover .icon-box {
	background-position: right center;
}

.sidebar-cta-box .icon-box img {
	width: 100%;
	max-width: 24px;
}

.sidebar-cta-content {
	position: relative;
	z-index: 1;
}

.sidebar-cta-content h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.sidebar-cta-content p {
	color: var(--white-color);
	margin-bottom: 10px;
}

.sidebar-cta-content h4 {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 700;
	color: var(--white-color);
}

.sidebar-cta-content h4 a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-content h4 a:hover {
	color: var(--accent-secondary-color);
}

.page-single-image {
	margin-bottom: 30px;
}

.page-single-image figure {
	display: block;
	border-radius: 20px;
}

.page-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.5361;
	object-fit: cover;
	border-radius: 20px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry h2 {
	font-size: 52px;
	font-weight: 400;
	line-height: 1.2em;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.service-entry h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.service-entry ul {
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.service-entry ul li {
	position: relative;
	width: 100%;
	line-height: 1.5em;
	padding-left: 14px;
}

.service-entry ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	width: 5px;
	height: 5px;
	transform: translateY(-50%);
}

.service-entry ul li a {
	color: inherit;
}

.service-why-choose-box,
.service-process-box {
	margin-top: 60px;
}

.service-why-choose-item-box {
	margin-top: 40px;
}

.service-why-choose-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.service-why-choose-item-list:last-child {
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.service-why-choose-item {
	width: calc(50% - 15px);
}

.service-why-choose-item .icon-box {
	margin-bottom: 30px;
}

.service-why-choose-item .icon-box img {
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.service-why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(0);
	transform: rotateY(180deg);
}

.service-process-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-process-item {
	width: calc(33.33% - 20px);
	min-height: 310px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
}

.service-process-item-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.service-process-item-header .icon-box img {
	width: 100%;
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.service-process-item:hover .service-process-item-header .icon-box img {
	filter: brightness(0) invert(0);
	transform: rotateY(180deg);
}

.service-process-item-no h3 {
	margin-bottom: 0;
}

.service-process-item-content ul {
	border-top: 1px solid var(--divider-color);
	padding: 20px 0 0;
}

.service-process-box .section-footer-text {
	margin-top: 40px;
}

/************************************/
/***     21. Blog Archive css     ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 600;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/***      22. Blog Single css     ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content {
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 400;
	line-height: 1.2em;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: 0 0 0.42em;
}

.post-entry h1 {
	font-size: 80px;
}

.post-entry h2 {
	font-size: 52px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: var(--secondary-color) url('../images/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border-radius: 12px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	padding: 12px 20px;
	transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	width: 40px;
	height: 40px;
	transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***    23. Projects Page css     ***/
/************************************/

.page-projects {
	padding: 100px 0 70px;
}

.page-projects .project-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-projects .project-item .project-item-image a figure img {
	aspect-ratio: 1 / 1.06;
}

/************************************/
/***    24. Project Single css    ***/
/************************************/

.page-project-single {
	padding: 100px 0;
}

.project-category-list ul li {
	font-weight: 400;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.project-category-list ul li span {
	font-family: var(--accent-font);
	font-weight: 600;
	color: var(--primary-color);
}

.project-entry {
	margin-bottom: 60px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry h2 {
	font-size: 52px;
	font-weight: 400;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.project-entry h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.project-entry p:last-child {
	margin-bottom: 0;
}

.project-entry ul {
	list-style: none;
	padding: 0;
	margin: 20px 0 0;
}

.project-entry ul li {
	position: relative;
	line-height: 1.5em;
	margin-bottom: 15px;
	padding-left: 25px;
}

.project-entry ul li:last-child {
	margin-bottom: 0;
}

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 16px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 0;
	left: 0;
}

.project-overview-box,
.project-solution-box {
	margin-top: 60px;
}

.project-overview-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.project-overview-image {
	width: calc(50% - 15px);
}

.project-overview-image figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.project-overview-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.9;
	object-fit: cover;
	border-radius: 20px;
}

.project-overview-item-box {
	width: calc(50% - 15px);
	align-content: center;
}

.project-overview-item .icon-box {
	margin-bottom: 30px;
}

.project-overview-item .icon-box img {
	width: 100%;
	max-width: 50px;
}

.project-overview-list-contact-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.project-overview-list {
	width: calc(100% - 140px);
}

.project-overview-list ul {
	margin: 0;
}

.project-solution-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
	margin: 40px 0;
}

.project-solution-item {
	width: calc(33.33% - 20px);
}

.project-solution-item .icon-box {
	margin-bottom: 30px;
}

.project-solution-item .icon-box img {
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.project-solution-item:hover .icon-box img {
	filter: brightness(0) invert(0);
	transform: rotateY(180deg);
}

/************************************/
/***      25. Team Page css       ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/***     26. Team Single css      ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-single-image {
	margin-bottom: 60px;
}

.team-single-image figure {
	display: block;
	border-radius: 20px;
}

.team-single-image img {
	width: 100%;
	aspect-ratio: 1 / 1.24;
	object-fit: cover;
	border-radius: 20px;
}

.team-member-about,
.team-member-expertise {
	margin-bottom: 60px;
}

.team-contact-list {
	border: 1px solid var(--divider-color);
	border-right: none;
	border-bottom: none;
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.team-contact-item {
	width: 50%;
	background-color: var(--secondary-color);
	border-right: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 30px;
}

.team-contact-item:nth-child(-2n + 2) {
	border-radius: 0 20px 0 0;
}

.team-contact-item:last-child {
	border-radius: 0 0 20px 0;
}

.team-contact-item .icon-box {
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-contact-item:hover .icon-box {
	background-position: right center;
}

.team-contact-item .icon-box img {
	width: 100%;
	max-width: 24px;
}

.team-contact-item-content {
	width: calc(100% - 65px);
}

.team-contact-item-content h3 {
	font-size: 20px;
}

.team-contact-item-content p {
	margin: 5px 0 0;
}

.team-expertise-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.team-expertise-skills-list {
	width: 76%;
}

/************************************/
/***     27. Pricing Page css     ***/
/************************************/

.page-pricing {
	padding: 100px 0;
}

.page-pricing .pricing-item {
	background: var(--white-color);
}

/************************************/
/***  28. Testimonials Page css   ***/
/************************************/

.page-testimonials {
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

/************************************/
/***     29. Image Gallery css    ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***    30. Video Gallery css     ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 20px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 50%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***      31. FAQs Page css       ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.page-faqs .page-single-faqs {
	margin-bottom: 60px;
}

.page-faqs .page-single-faqs:last-child {
	margin-bottom: 0px;
}

/************************************/
/***    32. Contact Us Page css   ***/
/************************************/

.page-contact-us {
	padding: 100px 0 50px;
}

.contact-us-box {
	position: sticky;
	top: 30px;
	background: var(--secondary-color);
	border-radius: 20px;
	margin-right: 30px;
	padding: 50px;
}

.contact-us-box-content {
	margin-bottom: 60px;
}

.contact-us-box-content h3 {
	font-size: 30px;
}

.contact-us-box-content p {
	margin: 10px 0 0;
}

.contact-info-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.contact-info-item:last-child {
	border-bottom: none;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.contact-info-item .icon-box img {
	width: 100%;
	max-width: 40px;
}

.contact-info-item-content {
	width: calc(100% - 55px);
}

.contact-info-item-content h3 {
	font-size: 20px;
}

.contact-info-item-content p {
	margin: 5px 0 0;
}

.contact-info-item-content p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.contact-info-item-content p a:hover {
	color: var(--accent-secondary-color);
}

.contact-us-form {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 3.125vw;
}

.contact-form form .form-label {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--primary-color);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 5px;
	padding: 15px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
	opacity: 30%;
}

.google-map {
	padding: 50px 0 100px;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 650px;
	border-radius: 20px;
}

/************************************/
/***    33. 404 Error Page css    ***/
/************************************/

.error-page {
	padding: 100px 0px;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 700px;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 15px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1500px) {

	.project-slider {
		margin-left: 0;
		margin-right: 0;
	}
}

@media only screen and (max-width: 1440px) {

	.container {
		max-width: 1300px;
	}

	.about-us-item {
		padding: 30px 25px;
	}

	.service-item {
		min-height: 370px;
		padding: 30px 25px;
	}

	.service-item-btn {
		margin-top: 30px;
	}

	.why-choose-image-box-1 .contact-us-circle {
		margin-left: 20px;
	}

	.how-works-item {
		padding: 30px 20px;
	}

	.how-works-item-content ul {
		margin: 20px 0 0;
		padding: 20px 0 0;
	}

	.how-works-item-no {
		margin: 10px -28px -50px 0;
	}

	.project-slider {
		margin-left: calc(((100vw - 1300px) / 2));
	}

	.award-cta-box {
		right: 20px;
		bottom: 20px;
		left: 20px;
		padding: 20px;
	}

	.award-item {
		gap: 20px 30px;
	}

	.award-item-info {
		width: calc(100% - 80px);
		gap: 20px 30px;
	}

	.award-item-cotent {
		width: calc(100% - 150px);
	}

	.pricing-item {
		padding: 30px;
	}

	.testimonial-item {
		min-height: 500px;
		padding: 30px;
	}

	.testimonial-author-content {
		margin-top: 30px;
		padding-top: 30px;
	}

	.faqs-counter-list {
		gap: 30px 40px;
	}

	.faqs-counter-item {
		width: calc(25% - 32px);
		padding: 10px 0;
	}

	.faqs-counter-item::before {
		right: -20px;
	}

	.footer-logo {
		padding-right: 50px;
	}

	.about-footer-content {
		max-width: 700px;
	}

	.what-we-item {
		margin-bottom: 40px;
	}

	.what-we-item .icon-box {
		margin-bottom: 20px;
	}

	.feature-counter-list {
		gap: 30px;
	}

	.feature-counter-item::before {
		right: -15px;
	}

	.feature-item {
		min-height: 350px;
		padding: 30px 20px;
	}

	.page-category-list h3 {
		padding: 20px 30px;
	}

	.page-category-list ul {
		padding: 30px;
	}

	.page-category-list ul li {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.sidebar-cta-box {
		padding: 30px;
	}

	.service-process-item-list {
		gap: 20px;
	}

	.service-process-item {
		width: calc(33.33% - 13.33px);
		padding: 30px 20px;
	}

	.post-content {
		max-width: 1100px;
	}

	.project-overview-body {
		gap: 30px 20px;
	}

	.project-overview-image,
	.project-overview-item-box {
		width: calc(50% - 10px);
	}

	.project-overview-list {
		width: calc(100% - 120px);
	}

	.project-overview-list-contact-box .contact-us-circle a img {
		max-width: 100px;
	}

	.project-solution-item-list {
		gap: 20px;
		padding: 30px;
	}

	.project-solution-item {
		width: calc(33.33% - 13.33px);
	}

	.team-contact-item {
		padding: 20px;
	}

	.contact-us-box {
		padding: 30px;
	}
}

@media only screen and (max-width: 1024px) {

	.section-content-btn .section-btn {
		margin-top: 20px;
	}

	.section-title-content {
		margin-top: 10px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.topbar-social-links ul li {
		margin-right: 10px;
		padding-right: 10px;
	}

	.main-menu ul li {
		margin: 0;
	}

	.section-title h1 {
		font-size: 54px;
	}

	.hero-body {
		margin-top: 0;
	}

	.our-scrolling-ticker {
		padding: 20px 0;
	}

	.about-us-images {
		background-position: bottom 70px left 48px;
		max-width: 600px;
		margin: 0 auto 30px;
	}

	.about-us-image-title h2 {
		font-size: 80px;
	}

	.service-item {
		min-height: auto;
	}

	.why-choose-content {
		margin-bottom: 30px;
	}

	.why-choose-images {
		max-width: 705px;
		margin: 0 auto;
	}

	.how-works-item {
		min-height: auto;
	}

	.our-projects .container-fluid {
		padding-right: 15px;
	}

	.project-slider {
		margin-left: 0;
		margin-right: 0;
	}

	.project-company-slider-content {
		max-width: 240px;
		padding-right: 20px;
		margin-right: 20px;
	}

	.project-company-slider-content h3 {
		font-size: 18px;
	}

	.project-company-slider {
		width: calc(100% - 260px);
	}

	.project-company-slider img {
		max-width: 144px;
	}

	.award-image-box {
		height: auto;
		margin-bottom: 30px;
	}

	.award-image,
	.award-image figure,
	.award-image figure img {
		height: auto;
	}

	.award-item-list {
		height: auto;
		margin: 0;
	}

	.testimonial-image figure img {
		aspect-ratio: 1 / 1.03;
	}

	.faqs-content {
		position: initial;
		margin-bottom: 30px;
	}

	.our-faqs .faq-accordion {
		margin-left: 0px;
	}

	.faqs-counter-list {
		gap: 30px;
	}

	.faqs-counter-item {
		width: calc(25% - 24px);
	}

	.faqs-counter-item::before {
		right: -15px;
	}

	.faqs-counter-item p {
		font-size: 14px;
	}

	.about-footer {
		gap: 15px;
	}

	.footer-logo {
		border: none;
		padding-right: 0;
	}

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

	.footer-social-links ul {
		justify-content: left;
		margin-top: 20px;
	}

	.footer-newsletter-box {
		margin-bottom: 30px;
	}

	.footer-newsletter-box h3 {
		margin-bottom: 10px;
	}

	.footer-newsletter-form {
		margin-top: 20px;
	}

	.footer-links-box {
		margin-left: 0;
	}

	.what-we-item-list {
		width: calc(50% - 15px);
	}

	.what-we-image-box {
		width: 100%;
		max-width: 595px;
		margin-left: auto;
		margin-right: auto;
		padding: 0;
	}

	.feature-counter-list {
		justify-content: start;
		margin-top: 30px;
	}

	.feature-video-box {
		height: auto;
		margin-bottom: 30px;
	}

	.feature-image,
	.feature-image figure,
	.feature-image figure img {
		height: auto;
	}

	.cta-client-box {
		margin: 40px auto 0 0;
	}

	.cta-item-list {
		margin-top: 60px;
	}

	.team-item-image figure img {
		aspect-ratio: 1 / 1.15;
	}

	.page-single-sidebar {
		margin-right: 0;
	}

	.page-category-list h3 {
		padding: 15px 20px;
	}

	.page-category-list ul {
		padding: 20px;
	}

	.sidebar-cta-box {
		padding: 30px 20px;
	}

	.sidebar-cta-box .icon-box {
		margin: 0 auto 30px;
	}

	.page-single-image {
		margin-bottom: 20px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-why-choose-box,
	.service-process-box {
		margin-top: 40px;
	}

	.service-why-choose-item-list {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.service-why-choose-item-box {
		margin-top: 30px;
	}

	.service-process-item-list {
		margin-top: 30px;
	}

	.service-process-item {
		width: calc(50% - 10px);
	}

	.service-process-box .section-footer-text {
		margin-top: 30px;
	}

	.project-image figure img {
		aspect-ratio: 1 / 0.8;
	}

	.project-entry {
		margin-bottom: 40px;
	}

	.project-overview-box,
	.project-solution-box {
		margin-top: 40px;
	}

	.project-overview-body {
		margin: 30px 0;
	}

	.project-overview-image,
	.project-overview-item-box {
		width: 100%;
	}

	.project-overview-image figure img {
		aspect-ratio: 1 / 0.6;
	}

	.project-overview-list-contact-box {
		padding-top: 20px;
		margin-top: 20px;
	}

	.project-solution-item-list {
		margin: 30px 0;
	}

	.project-solution-item .icon-box {
		margin-bottom: 20px;
	}

	.contact-us-box {
		position: initial;
		margin: 0 0 30px 0;
	}

	.contact-us-box-content {
		margin-bottom: 30px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 550px;
	}
}

@media only screen and (max-width: 991px) {

	.btn-default {
		padding: 15px 40px 15px 18px;
	}

	.btn-default::before {
		right: 18px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		background-size: 16px auto;
		padding-left: 24px;
		margin-bottom: 10px;
	}

	.section-title h2 {
		font-size: 38px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.topbar-contact-info ul {
		gap: 20px;
	}

	.topbar-contact-info ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.topbar-social-links ul li a i {
		font-size: 16px;
	}

	header.main-header .header-sticky {
		width: 100%;
	}

	header.main-header .header-sticky.active {
		width: 100%;
		border-radius: 0;
	}

	.navbar {
		padding: 20px 0;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.hero {
		padding: 190px 0 100px;
	}

	.video-play-button a {
		width: 44px;
		height: 44px;
	}

	.video-play-button a i {
		font-size: 14px;
	}

	.our-scrolling-ticker {
		padding: 15px 0;
	}

	.scrolling-ticker-box {
		--gap: 20px;
	}

	.scrolling-content span img {
		width: 24px;
		margin-right: 20px;
	}

	.scrolling-content span {
		font-size: 22px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us-list {
		margin-bottom: 30px;
	}

	.about-us-list ul li::before {
		font-size: 16px;
	}

	.about-us-item {
		padding: 20px;
	}

	.about-us-footer {
		margin-top: 30px;
		padding-top: 30px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.section-footer-text ul {
		margin-top: 10px;
	}

	.section-footer-text ul li {
		font-size: 18px;
		margin-right: 5px;
	}

	.section-footer-text ul li i {
		font-size: 14px;
	}

	.about-us-footer .section-footer-text {
		margin-top: 0;
	}

	.our-services {
		background-size: 300px auto;
		padding: 50px 0;
	}

	.service-item {
		padding: 20px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-item .icon-box {
		margin-bottom: 20px;
	}

	.why-choose-progress-list {
		padding-top: 30px;
		margin-top: 30px;
	}

	.why-choose-btn {
		margin-top: 30px;
	}

	.contact-us-circle a img {
		max-width: 100px;
	}

	.intro-video-image img {
		aspect-ratio: 1 / 0.56;
	}

	.intro-video .video-play-button a {
		width: 80px;
		height: 80px;
		font-size: 16px;
	}

	.why-choose-us .section-footer-text {
		margin-top: 40px;
	}

	.how-it-works {
		padding: 50px 0;
	}

	.how-works-item {
		gap: 20px;
		padding: 20px;
	}

	.how-works-item-no {
		margin: 0 -25px -40px 0;
	}

	.how-works-item-no h2 {
		font-size: 75px;
	}

	.our-projects {
		padding: 50px 0;
	}

	.our-projects::before {
		background-size: 250px auto;
	}

	.project-company-slider-box {
		margin-top: 40px;
	}

	.our-awards {
		padding: 50px 0;
	}

	.award-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.our-pricing {
		background-size: 250px auto;
		padding: 50px 0;
	}

	.pricing-item {
		padding: 20px;
	}

	.pricing-item-header .icon-box {
		margin-bottom: 20px;
	}

	.pricing-item-content {
		padding-top: 15px;
		margin-top: 15px;
	}

	.pricing-item-list h3 {
		margin-bottom: 15px;
	}

	.pricing-item-list ul li {
		margin-bottom: 10px;
	}

	.pricing-item-list ul li::before {
		font-size: 16px;
	}

	.pricing-item-price {
		margin-top: 20px;
		padding-top: 20px;
	}

	.pricing-item-price h2 {
		font-size: 30px;
	}

	.pricing-item-btn {
		margin-top: 30px;
	}

	.pricing-item-btn .btn-default {
		padding: 15px;
	}

	.pricing-benefit-list {
		margin-top: 5px;
	}

	.pricing-benefit-list ul {
		gap: 15px 30px;
	}

	.pricing-benefit-list ul li img {
		max-width: 18px;
		margin-right: 10px;
	}

	.our-testimonials {
		padding: 50px 0;
	}

	.testimonial-client-box {
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.testimonial-item {
		min-height: 400px;
		padding: 20px;
	}

	.testimonial-item-content p {
		font-size: 18px;
	}

	.testimonial-author-content {
		padding-top: 20px;
		margin-top: 20px;
	}

	.our-testimonials .section-footer-text {
		margin-top: 40px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 0 25px 15px 0;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 15px 0px 0 0;
	}

	.faqs-counter-list {
		margin-top: 40px;
		padding-top: 40px;
	}

	.faqs-counter-item {
		padding: 0px;
	}

	.faqs-counter-item h2 {
		font-size: 38px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-item-tags {
		top: 15px;
		left: 15px;
	}

	.post-item-tags a {
		font-size: 14px;
		padding: 5px 10px 5px 25px;
	}

	.post-item-tags a::before {
		left: 10px;
	}

	.post-item-btn {
		margin-top: 15px;
		padding-top: 15px;
	}

	.main-footer {
		padding: 50px 0 0;
	}

	.main-footer::before {
		background-size: 500px auto;
	}

	.footer-header {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.footer-newsletter-box h3 {
		font-size: 26px;
	}

	.footer-links h3 {
		margin-bottom: 20px;
	}

	.footer-links ul li {
		margin-bottom: 15px;
	}

	.footer-contact-item {
		margin-bottom: 20px;
	}

	.footer-contact-content h3 {
		margin-bottom: 0;
	}

	.footer-about-column {
		padding-bottom: 20px;
	}

	.footer-copyright {
		margin-top: 30px;
		padding: 30px 0;
	}

	.footer-about-logo {
		text-align: center;
	}

	.footer-about-logo img {
		margin: 0 auto;
	}

	.footer-about-socials {
		margin-top: 8px !important;
	}

	.footer-about-socials ul {
		justify-content: center !important;
	}

	.footer-about-socials ul li a {
		width: 36px;
		height: 36px;
	}

	.footer-properties-strip {
		margin-top: 8px;
	}

	.properties-strip-label {
		font-size: 9px;
	}

	.page-header {
		padding: 170px 0 80px;
	}

	.page-header-box h1 {
		font-size: 54px;
	}

	.what-we-do {
		padding: 50px 0;
	}

	.what-we-item {
		margin-bottom: 30px;
	}

	.what-we-item-content ul {
		margin-top: 15px;
		padding-top: 15px;
	}

	.what-we-item-content ul li::before {
		font-size: 16px;
	}

	.what-we-image-box {
		margin-bottom: -50px;
	}

	.our-features {
		padding: 50px 0;
	}

	.feature-counter-item h2 {
		font-size: 38px;
	}

	.watch-our-video-circle a img {
		max-width: 100px;
	}

	.feature-item {
		padding: 20px;
		min-height: auto;
	}

	.feature-item-header .icon-box {
		margin-bottom: 20px;
	}

	.feature-item-body ul li::before {
		font-size: 16px;
	}

	.our-feature-footer {
		margin-top: 40px;
	}

	.our-feature-footer-list ul {
		gap: 10px;
	}

	.our-feature-footer-list ul li {
		font-size: 14px;
		padding: 8px 10px 8px 22px;
	}

	.our-feature-footer-list ul li::before {
		left: 10px;
	}

	.our-feature-footer .section-footer-text {
		margin-top: 20px;
	}

	.cta-box {
		padding: 50px 0;
	}

	.cta-client-box {
		max-width: 100%;
		margin-top: 30px;
		padding: 30px;
	}

	.cta-item-list {
		padding-top: 30px;
		margin-top: 30px;
	}

	.cta-item {
		width: calc(50% - 15px);
	}

	.cta-item-content h3 {
		font-size: 18px;
	}

	.our-team {
		padding: 50px 0;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.page-single-sidebar {
		position: initial;
		margin-bottom: 30px;
	}

	.page-category-list {
		margin-bottom: 30px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.service-why-choose-item .icon-box {
		margin-bottom: 20px;
	}

	.service-process-item {
		padding: 20px;
		min-height: 280px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry h2 {
		font-size: 38px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-tags .tag-links a {
		padding: 12px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-projects {
		padding: 50px 0 20px;
	}

	.page-project-single {
		padding: 50px 0;
	}

	.project-entry p {
		margin-bottom: 15px;
	}

	.project-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.project-overview-item .icon-box {
		margin-bottom: 20px;
	}

	.project-entry ul li {
		margin-bottom: 10px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-single-image {
		margin-bottom: 30px;
	}

	.team-single-image img {
		aspect-ratio: 1 / 0.95;
	}

	.team-member-about,
	.team-member-expertise,
	.team-philosophy {
		margin-bottom: 40px;
	}

	.page-pricing {
		padding: 50px 0;
	}

	.page-testimonials {
		padding: 50px 0 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs .page-single-faqs {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0 25px;
	}

	.contact-us-box-content h3 {
		font-size: 26px;
	}

	.contact-info-item {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.contact-us-form {
		padding: 20px;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.google-map {
		padding: 25px 0 50px;
	}

	.error-page {
		padding: 50px 0px;
	}

	.error-page-image {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px) {

	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.section-title p {
		margin-top: 15px;
	}

	.topbar {
		padding: 10px 0;
	}

	.topbar-contact-info ul {
		justify-content: center;
	}

	.topbar-social-links {
		display: none;
	}

	.hero {
		padding: 140px 0 50px;
	}

	.hero-content .section-title h3 {
		font-size: 14px;
	}

	.hero-body {
		gap: 15px;
	}

	.video-play-button p {
		font-size: 14px;
	}

	.scrolling-ticker-box {
		--gap: 15px;
	}

	.scrolling-content span img {
		width: 20px;
		margin-right: 15px;
	}

	.scrolling-content span {
		font-size: 20px;
	}

	.about-us-images {
		background: transparent;
		gap: 15px;
	}

	.about-us-image-box-1,
	.about-us-image-box-2 {
		width: 100%;
	}

	.about-us-image-title h2 {
		writing-mode: initial;
		text-align: center;
	}

	.about-us-image-box-2 .about-us-image figure {
		border: none;
		margin-left: 0px;
	}

	.about-us-list ul {
		gap: 10px;
	}

	.about-us-list ul li {
		width: 100%;
	}

	.about-us-item {
		width: 100%;
	}

	.about-us-item-header {
		margin-bottom: 20px;
	}

	.about-us-item-title h3 {
		font-size: 18px;
	}

	.about-us-item-header .icon-box img {
		max-width: 40px;
	}

	.about-us-item-content ul {
		margin: 15px 0 0;
		padding: 15px 0 0;
	}

	.satisfy-client-image figure img {
		max-width: 38px;
	}

	.satisfy-client-image.add-more {
		width: 40px;
		height: 40px;
	}

	.service-item-content h2 {
		font-size: 18px;
	}

	.service-item-content p {
		padding-top: 15px;
		margin-top: 15px;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
	}

	.skills-progress-bar {
		margin-bottom: 20px;
	}

	.skills-progress-bar .skill-data {
		margin-bottom: 15px;
	}

	.skills-progress-bar .skill-data .skill-title,
	.skills-progress-bar .skill-data .skill-no {
		font-size: 18px;
	}

	.why-choose-image-box-1 {
		gap: 10px;
	}

	.why-choose-image-box-1 .contact-us-circle {
		margin-top: 30px;
	}

	.contact-us-circle a img {
		max-width: 100px;
	}

	.why-choose-images {
		gap: 20px;
	}

	.why-choose-image-box-1 {
		width: 100%;
	}

	.why-choose-image-box-2 {
		width: 100%;
		padding: 0;
	}

	.why-choose-image-box-1 .why-choose-image figure {
		border: none;
	}

	.why-choose-image-box-2 .why-choose-image figure {
		margin: 0;
	}

	.why-choose-image-box-1 .contact-us-circle {
		display: none;
	}

	.why-choose-counter-box {
		max-width: 100%;
		padding: 20px;
		margin: 20px 0 0 0;
	}

	.why-choose-counter-box h2 {
		font-size: 28px;
	}

	.why-choose-counter-box h3 {
		font-size: 18px;
	}

	.how-works-item {
		padding: 20px;
	}

	.how-works-item-content h3 {
		font-size: 18px;
	}

	.how-works-item-content p {
		margin: 5px 0 0;
	}

	.how-works-item-content ul {
		margin: 15px 0 0;
		padding: 15px 0 0;
	}

	.how-works-item-content ul li {
		margin-bottom: 10px;
	}

	.project-item-content h2 {
		font-size: 18px;
	}

	.project-company-slider-content {
		max-width: 100%;
		border: none;
		margin: 0 auto 15px;
		padding-right: 0;
	}

	.project-company-slider {
		width: 100%;
	}

	.award-cta-box {
		position: initial;
		background: var(--primary-color);
		margin-top: 20px;
	}

	.award-cta-box-content h3 {
		font-size: 18px;
	}

	.award-item-info,
	.award-item-cotent {
		width: 100%;
	}

	.award-item-cotent h3 {
		font-size: 18px;
	}

	.pricing-item {
		gap: 20px;
	}

	.pricing-item-title h3 {
		font-size: 18px;
	}

	.pricing-item-list h3 {
		font-size: 18px;
	}

	.pricing-item-price h2 {
		font-size: 26px;
	}

	.pricing-benefit-list ul {
		gap: 10px 20px;
	}

	.pricing-benefit-list ul li {
		font-size: 14px;
	}

	.pricing-benefit-list ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.testimonial-image-box {
		height: auto;
		margin-bottom: 30px;
	}

	.testimonial-image,
	.testimonial-image figure,
	.testimonial-image figure img {
		height: auto;
	}

	.testimonial-item {
		min-height: initial;
		gap: 20px;
	}

	.testimonial-item-logo img {
		max-width: 130px;
	}

	.testimonial-item-quote img {
		max-width: 40px;
	}

	.testimonial-item-content p {
		font-size: 16px;
	}

	.testimonial-author-content h3 {
		font-size: 18px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 18px;
	}

	.faqs-counter-item {
		width: calc(50% - 15px);
	}

	.faqs-counter-item:nth-child(2n + 2):before,
	.faqs-counter-item:last-child:before {
		display: none;
	}

	.faqs-counter-item h2 {
		font-size: 26px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.footer-social-links ul {
		gap: 10px;
	}

	.footer-newsletter-box h3 {
		font-size: 22px;
	}

	.footer-links,
	.footer-contact-links {
		max-width: 100%;
	}

	.footer-links h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-contact-content h3 {
		margin-bottom: 0;
	}

	.footer-copyright {
		flex-direction: column-reverse;
		gap: 10px;
		padding: 15px 0;
	}

	.footer-privacy-policy ul {
		gap: 10px 20px;
	}

	.footer-privacy-policy ul li::before {
		right: -14px;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.what-we-item-list {
		width: 100%;
	}

	.what-we-item-content h3 {
		font-size: 18px;
	}

	.what-we-image-box-1 .what-we-image figure {
		margin-right: 0;
	}

	.feature-counter-item {
		width: 100%;
		max-width: 100%;
	}

	.feature-counter-item::before {
		display: none;
	}

	.feature-counter-item h2 {
		font-size: 26px;
	}

	.feature-counter-item h3 {
		font-size: 18px;
	}

	.feature-image figure img {
		aspect-ratio: 1 / 0.55;
	}

	.watch-our-video-circle a img {
		max-width: 80px;
	}

	.feature-item {
		gap: 20px;
		width: 100%;
	}

	.feature-item-content h3 {
		font-size: 18px;
	}

	.feature-item-body {
		padding-top: 20px;
	}

	.cta-client-box {
		padding: 20px;
	}

	.cta-client-box h3 {
		font-size: 18px;
	}

	.cta-item-list {
		gap: 20px;
	}

	.cta-item {
		width: 100%;
	}

	.team-item-body {
		left: 20px;
		bottom: 5px;
	}

	.team-item:hover .team-item-body {
		bottom: 20px;
	}

	.page-category-list h3 {
		font-size: 18px;
	}

	.sidebar-cta-box .icon-box {
		margin-bottom: 20px;
	}

	.page-single-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-entry ul {
		margin: 15px 0 0;
	}

	.service-why-choose-item-list {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 30px;
	}

	.service-why-choose-item {
		width: 100%;
	}

	.service-process-item {
		width: 100%;
		min-height: initial;
	}

	.service-process-item-content ul {
		padding: 15px 0 0;
	}

	.post-single-meta ol li,
	.post-single-meta ol li i {
		font-size: 16px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.post-entry h3 {
		font-size: 18px;
	}

	.tag-links {
		font-size: 18px;
	}

	.project-entry h2 {
		font-size: 26px;
	}

	.project-entry h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.project-overview-list {
		width: 100%;
	}

	.project-solution-item-list {
		padding: 20px;
	}

	.project-solution-item {
		width: 100%;
	}

	.team-single-image img {
		aspect-ratio: 1 / 1.24;
	}

	.team-contact-item {
		width: 100%;
	}

	.team-contact-item:nth-child(-2n + 2) {
		border-radius: 0;
	}

	.team-contact-item-content h3 {
		font-size: 18px;
	}

	.team-expertise-skills-list {
		width: 100%;
	}

	.contact-us-box {
		padding: 20px;
	}

	.contact-us-box-content h3 {
		font-size: 22px;
	}

	.contact-us-box-content p {
		margin: 5px 0 0;
	}

	.contact-info-item-content h3 {
		font-size: 18px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}
}

@media (max-width: 575px) {
	.what-we-do-boxes {
		align-items: flex-start;
		gap: 20px;
	}

	.what-we-item {
		display: flex;
		gap: 16px;
		align-items: flex-start;
		margin-bottom: 20px;
	}

	.what-we-item .icon-box {
		flex-shrink: 0;
		width: 36px;
		height: 36px;
		margin-bottom: 0;
	}

	.what-we-item .icon-box svg {
		max-width: 36px;
		height: auto;
	}

	.what-we-item-content h3 {
		font-size: 16px;
	}

	.what-we-item-content ul {
		margin-top: 10px;
		padding-top: 10px;
	}
}

@media (max-width: 575px) {
	.section-title {
		margin-bottom: 24px;
	}

	.section-title h3 {
		font-size: 13px;
		margin-bottom: 8px;
	}

	.section-title h2 {
		font-size: 22px;
		line-height: 1.3em;
	}

	.section-title p {
		margin-top: 12px;
		font-size: 14px;
	}
}

/************************************/
/***   35. Home - Version 2 css   ***/
/************************************/

.hero-metal {
	position: relative;
	background: url('../images/hero-bg-image-metal.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 195px 0 90px;
	overflow: hidden;
}

.hero-metal::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 50%;
	z-index: 0;
}

.hero-metal .container {
	position: relative;
	z-index: 2;
}

.hero-content-metal {
	height: 100%;
	align-content: center;
	padding-right: 5.208vw;
}

.hero-content-metal .section-title h3 {
	line-height: 1em;
	background-color: var(--dark-divider-color);
	background-position: left 16px center;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 100px;
	padding: 11px 16px 11px 44px;
}

.hero-content-metal .section-title h1 {
	font-size: 60px;
}

.hero-content-body-metal {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 20px;
	padding: 30px;
}

.hero-body-item-metal {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.hero-body-item-metal .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.hero-body-item-metal:hover .icon-box {
	background-position: right center;
}

.hero-body-item-metal .icon-box img {
	width: 100%;
	max-width: 24px;
}

.hero-body-item-content-metal {
	width: calc(100% - 65px);
}

.hero-body-item-content-metal h3 {
	color: var(--white-color);
	font-size: 20px;
}

.hero-content-footer-metal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
	margin-top: 40px;
}

.video-play-button-metal {
	display: inline-flex;
	align-items: center;
}

.video-play-button-metal a {
	position: relative;
	height: 50px;
	width: 50px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button-metal:hover a {
	background-position: right center;
}

.video-play-button-metal a:before,
.video-play-button-metal a:after {
	content: '';
	position: absolute;
	top: -15px;
	left: -15px;
	width: 100%;
	height: 100%;
	border: 40px solid var(--white-color);
	opacity: 50%;
	border-radius: 50%;
	transform: scale(0.5);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button-metal a:after {
	animation-delay: .3s;
}

.video-play-button-metal a i {
	font-size: 16px;
	color: var(--white-color);
	margin-left: 2px;
}

.video-play-button-metal p {
	font-size: 16px;
	font-weight: 600;
	color: var(--white-color);
	margin: 0 0 0 20px;
}

.hero-image-metal {
	position: relative;
	padding-right: 40px;
}

.hero-image-metal figure {
	display: block;
	border-radius: 20px 20px 0 0;
}

.hero-image-metal figure img {
	width: 100%;
	aspect-ratio: 1 / 1.4273;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
	margin-bottom: -90px;
}

.hero-image-metal .get-in-touch-circle-metal {
	position: absolute;
	top: 35px;
	right: 0;
}

.get-in-touch-circle-metal a {
	display: inline-block;
	border-radius: 50%;
}

.get-in-touch-circle-metal a img {
	width: 100%;
	max-width: 180px;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 50%;
	animation: infiniterotatemetal 20s infinite linear;
}

@keyframes infiniterotatemetal {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.get-in-touch-circle-metal a img:hover {
	animation-play-state: paused;
}

.about-us-metal {
	padding: 100px 0;
}

.about-us-images-metal {
	position: relative;
	background-image: url('../images/about-us-images-bg-metal.png');
	background-repeat: no-repeat;
	background-position: top 50px right 50px;
	background-size: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 30px;
	margin-right: 25px;
}

.about-us-image-box-1-metal {
	width: calc(43% - 15px);
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 40px;
	margin-bottom: 60px;
	background-image: url(../images/about-us-image-1-bg-metal.png);
	background-repeat: no-repeat;
	background-position: bottom 45px left;
	background-size: auto;
}

.about-us-image-box-2-metal {
	position: relative;
	width: calc(57% - 15px);
	z-index: 1;
}

.about-us-image-metal {
	width: 100%;
}

.about-us-image-metal figure {
	display: block;
	border-radius: 20px;
}

.about-us-image-metal figure img {
	width: 100%;
	aspect-ratio: 1 / 0.88;
	object-fit: cover;
	border-radius: 20px;
}

.about-us-image-box-1-metal .about-us-image-metal figure {
	margin-right: -226px;
}

.about-us-image-box-2-metal .about-us-image-metal figure img {
	aspect-ratio: 1 / 1.17;
}

.about-counter-box-metal h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1em;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about-counter-box-metal p {
	margin: 5px 0 0;
}

.about-us-body-metal,
.about-us-list-metal {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.about-us-list-metal ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-us-list-metal ul li {
	position: relative;
	width: calc(50% - 10px);
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--primary-color);
	padding-left: 30px;
}

.about-us-list-metal ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 20px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 0;
	left: 0;
}

.about-achievement-client-box-metal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
}

.about-achievement-box-metal {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.about-achievement-image-metal figure {
	display: block;
}

.about-achievement-image-metal figure img {
	width: 100%;
	max-width: 85px;
}

.about-achievement-content-metal {
	width: calc(100% - 105px);
}

.about-achievement-content-metal p {
	margin: 0;
}

.about-client-box-metal {
	width: calc(50% - 15px);
}

.about-client-box-metal .satisfy-client-images {
	margin-bottom: 15px;
}

.about-client-box-content-metal p {
	margin: 0;
}

.our-services-metal {
	background: var(--secondary-color) url(../images/section-bg-shape-1.png) no-repeat;
	background-position: bottom right;
	background-size: auto;
	padding: 100px 0;
}

.service-item-metal {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	min-height: 430px;
	background: var(--white-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px 35px;
}

.service-item-metal .icon-box {
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.service-item-metal:hover .icon-box {
	background-position: right center;
}

.service-item-metal .icon-box img {
	width: 100%;
	max-width: 24px;
}

.service-item-content-metal h2 {
	font-size: 20px;
}

.service-item-content-metal h2 a {
	color: inherit;
}

.service-item-content-metal p {
	margin: 10px 0 0;
}

.service-item-content-metal ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
}

.service-item-content-metal ul li {
	font-size: 14px;
	font-weight: 600;
	line-height: 1em;
	color: var(--primary-color);
	background: var(--secondary-color);
	border-radius: 100px;
	padding: 8px 16px;
}

.service-item-btn-metal {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.why-choose-us-metal {
	padding: 100px 0;
}

.why-choose-images-metal {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 30px;
	margin-right: 15px;
}

.why-choose-image-box-1-metal {
	width: calc(52% - 15px);
	background: linear-gradient(180deg, var(--secondary-color) 0%, rgba(251, 249, 246, 0.00) 100%);
	border-radius: 20px;
}

.why-choose-counter-box-metal {
	text-align: center;
	padding: 40px;
}

.why-choose-counter-box-metal h2 {
	font-size: 48px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.why-choose-counter-box-metal p {
	margin: 5px 0 0;
}

.why-choose-image-1-metal figure {
	display: block;
	border-radius: 10px;
}

.why-choose-image-1-metal figure img {
	width: 100%;
	aspect-ratio: 1 / 1.22;
	object-fit: cover;
	border-radius: 10px;
}

.why-choose-image-box-2-metal {
	width: calc(48% - 15px);
}

.why-choose-image-box-2-metal .get-in-touch-circle-metal {
	position: relative;
	text-align: center;
	margin-bottom: -70px;
	z-index: 2;
}

.why-choose-image-box-2-metal .get-in-touch-circle-metal a img {
	width: 100%;
	max-width: 140px;
}

.why-choose-image-2-metal figure {
	display: block;
	border-radius: 20px;
}

.why-choose-image-2-metal figure img {
	width: 100%;
	aspect-ratio: 1 / 1.4223;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-item-list-metal {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.why-choose-item-metal {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.why-choose-item-metal .icon-box {
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.why-choose-item-metal:hover .icon-box {
	background-position: right center;
}

.why-choose-item-metal .icon-box img {
	width: 100%;
	max-width: 24px;
}

.why-choose-item-content-metal {
	width: calc(100% - 65px);
}

.why-choose-item-content-metal h3 {
	font-size: 20px;
}

.why-choose-item-content-metal p {
	margin: 5px 0 0;
}

.why-choose-progress-bar-metal {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.skills-progress-bar-metal {
	margin-bottom: 40px;
}

.skills-progress-bar-metal:last-child {
	margin-bottom: 0;
}

.skills-progress-bar-metal .skill-data-metal {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.skills-progress-bar-metal .skill-data-metal .skill-title-metal,
.skills-progress-bar-metal .skill-data-metal .skill-no-metal {
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
	color: var(--primary-color);
}

.skills-progress-bar-metal .skill-data-metal .skill-title-metal {
	font-family: var(--accent-font);
}

.skills-progress-bar-metal .skillbar-metal .skill-progress-metal {
	position: relative;
	width: 100%;
	height: 10px;
	background: var(--secondary-color);
	border-radius: 100px;
	overflow: hidden;
}

.skills-progress-bar-metal .skillbar-metal .skill-progress-metal .count-bar-metal {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 100px;
}

.why-choose-btn-metal {
	margin-top: 40px;
}

.what-we-do-metal {
	padding: 100px 0;
}

.what-we-list-contact-box-metal {
	max-width: 630px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.what-we-list-metal {
	width: calc(100% - 140px);
}

.what-we-list-metal ul {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.what-we-list-metal ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
	margin-bottom: 20px;
	padding-left: 25px;
}

.what-we-list-metal ul li:last-child {
	margin-bottom: 0;
}

.what-we-list-metal ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 18px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 0;
	left: 0;
}

.what-we-list-contact-box-metal .get-in-touch-circle-metal a img {
	width: 100%;
	max-width: 120px;
}

.what-we-btn-metal {
	margin-top: 40px;
}

.what-we-do-images-metal {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-left: 15px;
}

.what-we-image-box-1-metal {
	width: calc(52% - 15px);
}

.what-we-image-metal {
	height: 100%;
}

.what-we-image-metal figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.what-we-image-metal figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.6;
	object-fit: cover;
	border-radius: 20px;
}

.what-we-image-box-2-metal {
	width: calc(48% - 15px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.what-we-item-metal {
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 20px;
	padding: 30px 20px;
	text-align: center;
}

.what-we-item-metal:nth-child(even) {
	flex-direction: column-reverse;
}

.what-we-item-image-metal {
	margin-top: -30px;
}

.what-we-item-metal:nth-child(even) .what-we-item-image-metal {
	margin: 0 0 -30px 0;
}

.what-we-item-image-metal figure {
	display: block;
}

.what-we-item-image-metal figure img {
	width: 100%;
	max-width: 230px;
}

.what-we-item-content-metal h3 {
	font-size: 20px;
	color: var(--white-color);
}

.what-we-item-content-metal p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.what-we-counter-item-list-metal {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 60px;
	margin-top: 60px;
}

.what-we-counter-item-metal {
	width: calc(25% - 22.5px);
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 15px;
}

.what-we-counter-item-metal .icon-box {
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.what-we-counter-item-metal:hover .icon-box {
	background-position: right center;
}

.what-we-counter-item-metal .icon-box img {
	width: 100%;
	max-width: 24px;
}

.what-we-counter-content-metal {
	width: calc(100% - 65px);
}

.what-we-counter-content-metal h2 {
	font-size: 48px;
	color: var(--white-color);
}

.what-we-counter-content-metal p {
	margin: 5px 0 0;
	color: var(--white-color);
}

.our-projects-metal {
	padding: 100px 0;
}

.our-projects-metal .project-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.our-benefits-metal {
	background: var(--secondary-color) url('../images/section-bg-shape-3.png') no-repeat;
	background-position: bottom right;
	background-size: auto;
	padding: 100px 0;
}

.our-benefit-images-metal {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 30px;
	margin-right: 15px;
}

.benefit-image-box-1-metal {
	width: calc(56% - 15px);
}

.benefit-image-box-2-metal {
	width: calc(44% - 15px);
}

.benefit-image-1-metal figure,
.benefit-image-2-metal figure,
.benefit-image-3-metal figure {
	display: block;
	border-radius: 20px;
}

.benefit-image-1-metal figure img,
.benefit-image-3-metal figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.benefit-image-1-metal figure img {
	aspect-ratio: 1 / 1.673;
}

.benefit-image-3-metal figure img {
	aspect-ratio: 1 / 1.6315;
}

.benefit-image-2-metal {
	text-align: center;
	margin-bottom: 20px;
}

.benefit-image-2-metal figure img {
	width: 100%;
	max-width: 136px;
}

.benefit-body-metal {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.benefit-body-content-metal {
	width: calc(50% - 15px);
	align-content: center;
}

.benefit-content-list-metal ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.benefit-content-list-metal ul li {
	position: relative;
	line-height: 1.5em;
	margin-bottom: 20px;
	padding-left: 25px;
}

.benefit-content-list-metal ul li:last-child {
	margin-bottom: 0;
}

.benefit-content-list-metal ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 18px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 0;
	left: 0;
}

.benefit-content-btn-metal {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.benefit-body-image-metal {
	width: calc(50% - 15px);
}

.benefit-body-image-metal figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.benefit-body-image-metal figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.887;
	object-fit: cover;
	border-radius: 20px;
}

.our-pricing-metal {
	padding: 100px 0;
}

.pricing-item-metal {
	background-color: var(--white-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px;
}

.pricing-item-header-metal {
	background: var(--secondary-color);
	border-radius: 10px;
	padding: 30px;
}

.pricing-item-header-metal .icon-box {
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.pricing-item-metal:hover .pricing-item-header-metal .icon-box {
	background-position: right center;
}

.pricing-item-header-metal .icon-box img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.pricing-item-content-metal h3 {
	font-size: 20px;
}

.pricing-item-content-metal p {
	margin: 10px 0 0;
}

.pricing-item-body-metal {
	padding: 40px 30px 30px;
}

.pricing-item-price-metal {
	margin-bottom: 30px;
}

.pricing-item-price-metal h2 {
	font-size: 48px;
	font-weight: 400;
	line-height: 1em;
	letter-spacing: -0.01em;
}

.pricing-item-price-metal h2 sub {
	font-family: var(--default-font);
	font-size: 16px;
	color: var(--text-color);
	text-transform: capitalize;
	bottom: 0;
}

.pricing-item-list-metal h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.pricing-item-list-metal ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-item-list-metal ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.pricing-item-list-metal ul li:last-child {
	margin-bottom: 0;
}

.pricing-item-list-metal ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 18px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 0;
	left: 0;
}

.pricing-item-btn-metal {
	margin-top: 40px;
}

.pricing-benefit-list-metal {
	margin-top: 30px;
}

.pricing-benefit-list-metal ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 20px 40px;
}

.pricing-benefit-list-metal ul li {
	display: inline-flex;
	align-items: center;
}

.pricing-benefit-list-metal ul li img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

.our-testimonials-metal {
	padding: 100px 0;
}

.testimonial-slider-metal .swiper-wrapper {
	cursor: none;
}

.testimonial-item-metal {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	min-height: 520px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 20px;
	padding: 50px;
}

.testimonial-item-rating-metal {
	margin-bottom: 30px;
}

.testimonial-item-rating-metal i {
	font-size: 20px;
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.testimonial-item-content-metal h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 15px;
}

.testimonial-item-content-metal p {
	color: var(--white-color);
	margin: 0;
}

.testimonial-author-metal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
}

.testimonial-author-image-metal figure {
	display: block;
	border-radius: 50%;
}

.testimonial-author-image-metal figure img {
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.testimonial-author-content-metal {
	width: calc(100% - 65px);
}

.testimonial-author-content-metal h3 {
	font-size: 20px;
	color: var(--white-color);
}

.testimonial-author-content-metal p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.our-testimonials-metal .section-footer-text {
	margin-top: 60px;
}

.our-testimonials-metal .section-footer-text .satisfy-client-image {
	border-color: var(--primary-color);
}

.main-footer-metal {
	padding: 100px 0 0;
}

.footer-header-metal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 60px;
	margin-bottom: 60px;
}

.footer-header-metal .section-title {
	max-width: 800px;
	margin-bottom: 0;
}

.footer-social-links-metal ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 15px;
	margin: 0;
	padding: 0;
}

.footer-social-links-metal ul li a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	color: var(--accent-secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links-metal ul li a:hover {
	background: var(--accent-secondary-color);
	color: var(--primary-color);
}

.footer-social-links-metal ul li a i {
	font-size: 18px;
	color: inherit;
}

.about-footer-metal {
	max-width: 390px;
}

.footer-logo-metal img {
	width: 100%;
	max-width: 160px;
}

.about-footer-content-metal {
	margin-top: 30px;
}

.about-footer-content-metal p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-links-box-metal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-left: 3.125vw;
}

.footer-links-metal {
	max-width: 40%;
}

.footer-links-metal h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links-metal ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links-metal ul li {
	line-height: 1.4em;
	color: var(--white-color);
	margin-bottom: 15px;
}

.footer-links-metal ul li:last-child {
	margin-bottom: 0;
}

.footer-links-metal ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links-metal ul li a:hover {
	color: var(--accent-secondary-color);
}

.footer-newsletter-form-metal {
	max-width: 50%;
	background-color: var(--dark-divider-color);
	border-radius: 20px;
	align-content: center;
	padding: 40px;
}

.footer-newsletter-form-metal h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-newsletter-form-metal .form-group {
	display: flex;
	background: var(--dark-divider-color);
	border-radius: 10px;
	padding: 5px;
}

.footer-newsletter-form-metal .form-group .form-control {
	width: calc(100% - 40px);
	font-size: 16px;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 8px 10px;
}

.footer-newsletter-form-metal .form-group .form-control::placeholder {
	color: var(--white-color);
}

.footer-newsletter-form-metal .form-group .newsletter-btn {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border: none;
	border-radius: 6px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-metal .form-group .newsletter-btn:hover {
	background-position: right center;
}

.footer-newsletter-form-metal .form-group .newsletter-btn i {
	font-size: 20px;
	color: var(--white-color);
}

.footer-newsletter-form-metal p {
	color: var(--white-color);
	margin: 20px 0 0;
}

.footer-copyright-text-metal {
	border-top: 1px solid var(--dark-divider-color);
	text-align: center;
	margin-top: 60px;
	padding: 60px 0;
}

.footer-copyright-text-metal p {
	color: var(--white-color);
	margin-bottom: 0;
}

@media only screen and (max-width: 1440px) {

	.hero-content-metal {
		padding-right: 0;
	}

	.get-in-touch-circle-metal a img {
		max-width: 140px;
	}

	.about-us-images-metal {
		background-position: top 50px right 25px;
		margin-right: 15px;
	}

	.about-us-body-metal,
	.about-us-list-metal {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.about-us-list-metal ul li {
		font-size: 18px;
		padding-left: 25px;
	}

	.about-us-list-metal ul li::before {
		font-size: 18px;
	}

	.service-item-metal {
		min-height: 400px;
		padding: 30px 25px;
	}

	.what-we-counter-item-list-metal {
		gap: 20px;
	}

	.what-we-counter-item-metal {
		width: calc(25% - 15px);
		gap: 15px;
	}

	.what-we-counter-content-metal {
		width: calc(100% - 65px);
	}

	.benefit-body-metal {
		gap: 20px;
	}

	.benefit-body-content-metal,
	.benefit-body-image-metal {
		width: calc(50% - 10px);
	}

	.pricing-item-header-metal {
		padding: 20px;
	}

	.pricing-item-body-metal {
		padding: 30px 20px 20px;
	}

	.pricing-item-btn-metal {
		margin-top: 30px;
	}

	.testimonial-item-metal {
		min-height: 480px;
		padding: 30px;
	}

	.footer-newsletter-form-metal {
		padding: 30px;
	}
}

@media only screen and (max-width: 1024px) {

	.hero-content-metal {
		height: auto;
		margin-bottom: 30px;
	}

	.hero-image-metal {
		max-width: 600px;
		margin: 0 auto;
	}

	.about-us-images-metal {
		max-width: 700px;
		margin: 0 auto 30px;
	}

	.why-choose-images-metal {
		margin: 0 auto 30px;
	}

	.what-we-do-content-metal {
		margin-bottom: 30px;
	}

	.what-we-do-images-metal {
		margin-left: 0;
	}

	.what-we-image-metal figure img {
		aspect-ratio: 1 / 1.1;
	}

	.our-benefit-images-metal {
		max-width: 800px;
		margin: 0 auto 30px;
	}

	.benefit-body-image-metal figure img {
		aspect-ratio: 1 / 0.65;
	}

	.about-footer-metal {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.about-footer-content-metal {
		margin-top: 15px;
	}

	.footer-links-box-metal {
		margin-left: 0;
	}

	.footer-newsletter-form-metal {
		width: 50%;
	}
}

@media only screen and (max-width: 991px) {

	.hero-metal {
		padding: 140px 0 50px;
	}

	.hero-content-metal .section-title h1 {
		font-size: 44px;
	}

	.hero-content-body-metal {
		padding: 20px;
	}

	.hero-image-metal {
		max-width: 500px;
	}

	.hero-image-metal figure img {
		margin-bottom: -50px;
	}

	.about-us-metal {
		padding: 50px 0;
	}

	.about-counter-box-metal h2 {
		font-size: 38px;
	}

	.our-services-metal {
		background-size: 300px auto;
		padding: 50px 0;
	}

	.service-item-metal {
		min-height: 350px;
		padding: 20px;
	}

	.service-item-btn-metal {
		padding-top: 20px;
		margin-top: 20px;
	}

	.why-choose-us-metal {
		padding: 50px 0;
	}

	.why-choose-counter-box-metal {
		padding: 30px;
	}

	.why-choose-counter-box-metal h2 {
		font-size: 38px;
	}

	.why-choose-progress-bar-metal {
		padding-top: 30px;
		margin-top: 30px;
	}

	.why-choose-btn-metal {
		margin-top: 30px;
	}

	.what-we-do-metal {
		padding: 50px 0;
	}

	.what-we-list-contact-box-metal {
		max-width: 100%;
	}

	.what-we-list-metal ul li {
		margin-bottom: 15px;
	}

	.what-we-btn-metal {
		margin-top: 30px;
	}

	.what-we-counter-item-list-metal {
		padding-top: 40px;
		margin-top: 40px;
	}

	.what-we-counter-item-metal {
		width: calc(50% - 10px);
	}

	.what-we-counter-content-metal h2 {
		font-size: 38px;
	}

	.our-projects-metal {
		padding: 50px 0;
	}

	.our-benefits-metal {
		background-size: 300px auto;
		padding: 50px 0;
	}

	.our-pricing-metal {
		padding: 50px 0;
	}

	.pricing-item-header-metal {
		padding: 10px;
	}

	.pricing-item-body-metal {
		padding: 30px 10px 10px;
	}

	.pricing-item-price-metal h2 {
		font-size: 38px;
	}

	.pricing-item-list-metal h3 {
		margin-bottom: 15px;
	}

	.pricing-item-list-metal ul li {
		margin-bottom: 10px;
	}

	.pricing-item-list-metal ul li:before {
		font-size: 16px;
	}

	.pricing-benefit-list-metal {
		margin-top: 10px;
	}

	.pricing-benefit-list-metal ul {
		gap: 15px 30px;
	}

	.our-testimonials-metal {
		padding: 50px 0;
	}

	.testimonial-item-metal {
		min-height: 400px;
		padding: 20px;
	}

	.testimonial-item-rating-metal {
		margin-bottom: 20px;
	}

	.testimonial-item-rating-metal i {
		font-size: 18px;
	}

	.testimonial-item-content-metal h3 {
		margin-bottom: 10px;
	}

	.our-testimonials-metal .section-footer-text {
		margin-top: 40px;
	}

	.main-footer-metal {
		padding: 50px 0 0;
	}

	.footer-header-metal {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.footer-links-metal h3 {
		margin-bottom: 20px;
	}

	.footer-links-metal ul li {
		margin-bottom: 10px;
	}

	.footer-newsletter-form-metal {
		padding: 20px;
	}

	.footer-copyright-text-metal {
		margin-top: 30px;
		padding: 30px 0;
	}
}

@media only screen and (max-width: 767px) {

	.hero-content-metal .section-title h1 {
		font-size: 28px;
	}

	.hero-content-body-metal {
		padding: 15px;
	}

	.hero-body-item-metal {
		width: 100%;
	}

	.hero-body-item-content-metal h3 {
		font-size: 18px;
	}

	.hero-content-footer-metal {
		gap: 25px;
	}

	.hero-image-metal {
		padding-right: 0;
	}

	.get-in-touch-circle-metal a img {
		max-width: 80px;
	}

	.about-us-images-metal {
		background-size: 50px auto;
	}

	.about-us-image-box-1-metal {
		background-position: bottom 10px left;
		gap: 20px;
		margin-bottom: 20px;
	}

	.about-us-image-box-1-metal .about-us-image-metal figure {
		margin-right: -148px;
	}

	.about-counter-box-metal h2 {
		font-size: 28px;
	}

	.about-counter-box-metal p {
		font-size: 14px;
	}

	.about-us-body-metal,
	.about-us-list-metal {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.about-us-list-metal ul li {
		width: 100%;
	}

	.about-achievement-box-metal {
		width: 100%;
	}

	.about-achievement-image-metal figure img {
		max-width: 65px;
	}

	.about-achievement-content-metal {
		width: calc(100% - 85px);
	}

	.about-client-box-metal {
		width: 100%;
	}

	.about-client-box-metal .satisfy-client-images {
		margin-bottom: 10px;
	}

	.service-item-metal {
		min-height: initial;
		gap: 20px;
	}

	.service-item-content-metal h2 {
		font-size: 18px;
	}

	.service-item-content-metal p {
		margin-top: 5px;
	}

	.why-choose-image-box-2-metal,
	.why-choose-image-box-1-metal {
		width: 100%;
	}

	.why-choose-counter-box-metal {
		padding: 20px;
	}

	.why-choose-counter-box-metal h2 {
		font-size: 28px;
	}

	.why-choose-image-box-2-metal .get-in-touch-circle-metal {
		display: none;
	}

	.why-choose-item-metal {
		width: 100%;
	}

	.why-choose-item-content-metal h3 {
		font-size: 18px;
	}

	.skills-progress-bar-metal .skill-data-metal {
		margin-bottom: 15px;
	}

	.skills-progress-bar-metal .skill-data-metal .skill-title-metal,
	.skills-progress-bar-metal .skill-data-metal .skill-no-metal {
		font-size: 18px;
	}

	.what-we-list-metal {
		width: 100%;
	}

	.what-we-list-metal ul li {
		margin-bottom: 10px;
	}

	.what-we-list-metal ul li::before {
		font-size: 16px;
	}

	.what-we-list-contact-box-metal .get-in-touch-circle-metal {
		display: none;
	}

	.what-we-image-box-1-metal {
		width: 100%;
	}

	.what-we-image-metal,
	.what-we-image-metal figure,
	.what-we-image-metal figure img {
		height: auto;
	}

	.what-we-image-box-2-metal {
		width: 100%;
	}

	.what-we-item-metal {
		min-height: auto;
		gap: 20px;
		padding: 20px;
	}

	.what-we-item-metal:nth-child(even) {
		flex-direction: column;
	}

	.what-we-item-image-metal {
		margin-top: -20px;
	}

	.what-we-item-metal:nth-child(even) .what-we-item-image-metal {
		margin: -20px 0 0px 0;
	}

	.what-we-item-content-metal h3 {
		font-size: 18px;
	}

	.what-we-item-content-metal p {
		margin: 5px 0 0;
	}

	.what-we-counter-item-metal {
		width: 100%;
		align-items: start;
	}

	.what-we-counter-content-metal h2 {
		font-size: 28px;
	}

	.our-benefit-images-metal {
		gap: 20px;
	}

	.benefit-image-box-1-metal {
		width: calc(56% - 10px);
	}

	.benefit-image-box-2-metal {
		width: calc(44% - 10px);
	}

	.benefit-image-2-metal {
		margin-bottom: 10px;
	}

	.benefit-image-2-metal figure img {
		max-width: 60px;
	}

	.benefit-body-content-metal {
		width: 100%;
	}

	.benefit-content-list-metal ul li {
		margin-bottom: 10px;
	}

	.benefit-content-list-metal ul li::before {
		font-size: 16px;
	}

	.benefit-content-btn-metal {
		padding-top: 20px;
		margin-top: 20px;
	}

	.benefit-body-image-metal {
		width: 100%;
	}

	.pricing-item-content-metal h3 {
		font-size: 18px;
	}

	.pricing-item-price-metal h2 {
		font-size: 28px;
	}

	.pricing-item-price-metal {
		margin-bottom: 20px;
	}

	.pricing-item-price-metal h2 sub {
		font-size: 14px;
	}

	.pricing-item-list-metal h3 {
		font-size: 18px;
	}

	.pricing-benefit-list-metal ul {
		gap: 10px;
	}

	.pricing-benefit-list-metal ul li {
		font-size: 14px;
	}

	.pricing-benefit-list-metal ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.testimonial-item-metal {
		min-height: auto;
		gap: 20px;
	}

	.testimonial-item-content-metal h3 {
		font-size: 18px;
	}

	.testimonial-author-metal {
		padding-top: 20px;
	}

	.testimonial-author-content-metal h3 {
		font-size: 18px;
	}

	.footer-links-metal {
		max-width: 100%;
	}

	.footer-links-metal h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-newsletter-form-metal {
		width: 100%;
		max-width: 100%;
		padding: 15px;
	}

	.footer-newsletter-form-metal h3 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.footer-newsletter-form-metal .form-group {
		margin-top: 20px;
	}

	.footer-copyright-text-metal {
		padding: 15px 0;
	}
}

/************************************/
/***   36. Home - Version 3 css   ***/
/************************************/

.hero-elite {
	position: relative;
	background-image: url('../images/hero-bg-elite.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 260px 0 110px;
}

.hero-elite::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 64.65%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
	z-index: 1;
}

.hero-elite .container {
	position: relative;
	z-index: 2;
}

.hero-content-elite .section-title h3 {
	font-family: var(--accent-font);
	line-height: 1em;
	background-position: left 15px center;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 100px;
	padding: 11px 16px 11px 44px;
}

.hero-content-elite .section-title h1 {
	font-size: 60px;
	letter-spacing: -0.01em;
}

.hero-content-elite .section-title p {
	max-width: 900px;
}

.hero-body-elite {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.video-play-button-elite {
	display: inline-flex;
	align-items: center;
}

.video-play-button-elite a {
	position: relative;
	height: 50px;
	width: 50px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button-elite:hover a {
	background-position: right center;
}

.video-play-button-elite a i {
	font-size: 16px;
	color: var(--white-color);
	margin-left: 2px;
}

.video-play-button-elite p {
	font-size: 16px;
	font-weight: 600;
	color: var(--white-color);
	margin: 0 0 0 10px;
}

.hero-counter-list-elite {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 120px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 160px;
	padding-top: 40px;
}

.hero-counter-item-elite {
	position: relative;
	width: calc(20% - 96px);
}

.hero-counter-item-elite::before {
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	right: -60px;
	transform: translateY(-50%);
	background: var(--dark-divider-color);
	width: 1px;
	height: 70%;
}

.hero-counter-item-elite:nth-child(5n + 5):before,
.hero-counter-item-elite:last-child:before {
	display: none;
}

.hero-counter-item-elite h2 {
	font-size: 48px;
	color: var(--white-color);
}

.hero-counter-item-elite p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.about-us-elite {
	padding: 100px 0;
}

.about-us-images-elite {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 20px;
	margin-right: 15px;
}

.about-us-image-box-1-elite {
	width: calc(75% - 10px);
	height: 100%;
}

.about-us-image-elite {
	height: 100%;
}

.about-us-image-elite figure {
	height: 100%;
	display: block;
	border-radius: 20px;
}

.about-us-image-elite figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.291;
	object-fit: cover;
	border-radius: 20px;
}

.about-us-image-box-2-elite {
	position: relative;
	width: calc(25% - 10px);
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 40px;
	z-index: 1;
}

.get-in-touch-circle-elite a {
	display: inline-block;
	border-radius: 50%;
}

.get-in-touch-circle-elite a img {
	width: 100%;
	max-width: 150px;
	border-radius: 50%;
	animation: infiniterotateelite 20s infinite linear;
}

.get-in-touch-circle-elite a img:hover {
	animation-play-state: paused;
}

@keyframes infiniterotateelite {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.achievement-box-elite {
	position: relative;
	border: 20px solid var(--bg-color);
	background-color: var(--bg-color);
	border-radius: 20px 0 0 0;
	border-right: none;
	border-bottom: none;
	margin-left: -190px;
}

.achievement-box-elite::before,
.achievement-box-elite::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	mask: url('../images/image-corner-bg-shape-elite.svg');
	-webkit-mask: url('../images/image-corner-bg-shape-elite.svg');
	background-color: var(--bg-color);
	mask-repeat: no-repeat;
	mask-size: cover;
	transform: rotate(180deg);
	z-index: 1;
}

.achievement-box-elite::before {
	top: -40px;
	left: 130px;
}

.achievement-box-elite::after {
	left: -40px;
	bottom: 0;
}

.achievement-item-elite {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 10px;
}

.achievement-item-header-elite {
	padding: 20px 20px 30px;
}

.achievement-item-title-elite {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.achievement-item-title-elite .icon-box {
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.achievement-item-elite:hover .achievement-item-title-elite .icon-box {
	background-position: right center;
}

.achievement-item-title-elite .icon-box img {
	width: 100%;
	max-width: 24px;
}

.achievement-item-no {
	width: calc(100% - 65px);
}

.achievement-item-no h2 {
	font-size: 48px;
}

.achievement-item-content-elite h3 {
	font-size: 20px;
}

.achievement-item-content-elite p {
	margin: 10px 0 0;
}

.achievement-item-body-elite {
	background-color: var(--bg-color);
	border-radius: 20px;
	text-align: center;
	padding: 30px;
}

.achievement-item-image-elite {
	margin-bottom: 20px;
}

.achievement-item-image-elite figure {
	display: block;
	border-radius: 20px;
}

.achievement-item-image-elite figure img {
	width: 100%;
	max-width: 85px;
	border-radius: 20px;
}

.achievement-item-body-content-elite p {
	margin-bottom: 0;
}

.about-us-content-elite {
	height: 100%;
	align-content: center;
}

.about-us-body-elite {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.about-item-list-elite {
	width: calc(100% - 260px);
}

.about-us-item-elite {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.about-us-item-elite:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.about-us-item-elite .icon-box {
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.about-us-item-elite:hover .icon-box {
	background-position: right center;
}

.about-us-item-elite .icon-box img {
	width: 100%;
	max-width: 24px;
}

.about-us-item-content-elite {
	width: calc(100% - 65px);
}

.about-us-item-content-elite h3 {
	font-size: 20px;
}

.about-us-item-content-elite p {
	margin: 5px 0 0;
}

.about-counter-box-elite {
	max-width: 230px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 20px;
	text-align: center;
	padding: 30px;
}

.about-counter-box-elite .icon-box {
	margin-bottom: 20px;
}

.about-counter-box-elite .icon-box img {
	width: 100%;
	max-width: 40px;
}

.about-counter-content-elite h2 {
	font-size: 34px;
	color: var(--white-color);
	margin-bottom: 5px;
}

.about-counter-content-elite h3 {
	font-size: 20px;
	color: var(--white-color);
}

.about-us-btn-elite {
	margin-top: 40px;
}

.our-services-elite {
	background: var(--secondary-color) url('../images/section-bg-shape-1.png') no-repeat;
	background-position: bottom right;
	background-size: auto;
	padding: 100px 0;
}

.service-item-elite {
	position: relative;
	height: calc(100% - 30px);
	border-radius: 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

.service-item-image-elite a {
	display: block;
	border-radius: 20px;
	cursor: none;
	overflow: hidden;
}

.service-item-image-elite a figure {
	position: relative;
	display: block;
}

.service-item-image-elite a figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(22, 22, 24, 0.00) 38.93%, #161618 100%);
	z-index: 1;
}

.service-item-image-elite a figure img {
	width: 100%;
	aspect-ratio: 1 / 1.22;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.service-item-elite:hover .service-item-image-elite a figure img {
	transform: scale(1.06);
}

.service-item-body-elite {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	z-index: 1;
}

.service-item-body-elite .icon-box {
	width: 40px;
	height: 40px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item-elite:hover .service-item-body-elite .icon-box {
	background-position: right center;
}

.service-item-body-elite .icon-box img {
	width: 100%;
	max-width: 20px;
}

.service-item-content-elite h2 {
	font-size: 20px;
	color: var(--white-color);
}

.service-item-content-elite h2 a {
	color: inherit;
}

.service-item-content-elite p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.why-choose-us-elite {
	padding: 100px 0;
}

.why-choose-us-elite .section-title.section-title-center {
	max-width: 860px;
}

.why-choose-images-elite {
	position: relative;
	height: 100%;
	margin-right: 15px;
}

.why-choose-client-box-elite {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 320px;
	background-color: var(--bg-color);
	border: 20px solid var(--bg-color);
	border-radius: 0 0 30px 0;
	border-top: none;
	border-left: none;
	z-index: 2;
}

.why-choose-client-box-elite::before,
.why-choose-client-box-elite::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	mask: url('../images/image-corner-bg-shape-elite.svg');
	-webkit-mask: url('../images/image-corner-bg-shape-elite.svg');
	background-color: var(--bg-color);
	mask-repeat: no-repeat;
	mask-size: cover;
}

.why-choose-client-box-elite::before {
	top: 0;
	right: -40px;
}

.why-choose-client-box-elite::after {
	left: 0;
	bottom: -40px;
}

.why-choose-client-body-elite {
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 20px;
	padding: 30px;
}

.why-choose-client-body-elite .icon-box {
	margin-bottom: 20px;
}

.why-choose-client-body-elite .icon-box img {
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.why-choose-client-body-elite:hover .icon-box img {
	transform: rotateY(180deg);
}

.why-choose-client-content-elite h3 {
	font-size: 20px;
	color: var(--white-color);
}

.why-choose-client-content-elite p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.why-choose-image-1-elite {
	height: 100%;
}

.why-choose-image-1-elite figure {
	position: relative;
	height: 100%;
	display: block;
	border-radius: 20px;
}

.why-choose-image-1-elite figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.033;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-image-2-elite {
	position: absolute;
	right: 0;
	bottom: 0;
	background: var(--bg-color);
	border-radius: 30px 0 0 0;
	z-index: 1;
}

.why-choose-image-2-elite::before,
.why-choose-image-2-elite::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	mask: url('../images/image-corner-bg-shape-elite.svg');
	-webkit-mask: url('../images/image-corner-bg-shape-elite.svg');
	background-color: var(--bg-color);
	mask-repeat: no-repeat;
	transform: rotate(180deg);
	mask-size: cover;
}

.why-choose-image-2-elite::before {
	top: -20px;
	right: 0;
}

.why-choose-image-2-elite::after {
	left: -20px;
	bottom: 0;
}

.why-choose-image-2-elite figure {
	display: block;
	border: 20px solid var(--bg-color);
	border-right: none;
	border-bottom: none;
	border-radius: 20px;
}

.why-choose-image-2-elite figure img {
	width: 100%;
	max-width: 300px;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-item-list-elite {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-item-elite {
	width: calc(50% - 15px);
	height: 100%;
	min-height: 350px;
	background-color: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 30px;
}

.why-choose-item-header-elite {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.why-choose-item-header-elite .icon-box {
	width: 40px;
	height: 40px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.why-choose-item-elite:hover .why-choose-item-header-elite .icon-box {
	background-position: right center;
}

.why-choose-item-header-elite .icon-box img {
	width: 100%;
	max-width: 20px;
}

.why-choose-item-title-elite {
	width: calc(100% - 55px);
}

.why-choose-item-title-elite h3 {
	font-size: 20px;
}

.why-choose-item-body-elite {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
}

.why-choose-item-body-elite p {
	margin-bottom: 0;
}

.why-choose-us-elite .section-footer-text {
	margin-top: 60px;
}

.how-it-works-elite {
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.how-work-boxes-elite {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.how-work-nav-elite {
	width: calc(33.33% - 15px);
	height: 100%;
	align-content: center;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 30px;
}

.how-work-nav-elite ul {
	list-style: none;
	text-align: center;
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	background: transparent;
	border: none;
}

.how-work-nav-elite ul li {
	width: 100%;
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
}

.how-work-nav-elite ul li:last-child {
	margin-bottom: 0;
}

.how-work-nav-elite ul li .nav-link {
	width: 100%;
	display: block;
	text-align: left;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
	padding: 22px 30px 22px 20px;
	transition: all 0.3s ease-in-out;
}

.how-work-nav-elite ul li .nav-link.active,
.how-work-nav-elite ul li .nav-link:hover {
	background: var(--secondary-color);
	border-color: var(--divider-color);
}

.how-work-box-elite {
	width: calc(66.66% - 15px);
}

.how-work-box-item-elite {
	height: 100%;
	background-color: var(--bg-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 40px;
}

.how-work-box-item-header-elite {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.how-work-box-item-header-elite .icon-box {
	width: 60px;
	height: 60px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.how-work-box-item-elite:hover .how-work-box-item-header-elite .icon-box {
	background-position: right center;
}

.how-work-box-item-header-elite .icon-box img {
	width: 100%;
	max-width: 30px;
}

.how-work-box-item-no-elite h3 {
	font-size: 20px;
}

.how-work-box-item-body-elite {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
}

.how-work-box-item-content-elite h3 {
	font-size: 20px;
}

.how-work-box-item-content-elite p {
	margin: 10px 0 0;
}

.how-work-box-item-btn-elite {
	margin-top: 40px;
}

.how-work-box-image-elite {
	height: 100%;
}

.how-work-box-image-elite figure {
	height: 100%;
	display: block;
	border-radius: 20px;
}

.how-work-box-image-elite figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.05;
	object-fit: cover;
	border-radius: 20px;
}

.how-work-footer-elite {
	margin-top: 60px;
}

.how-work-footer-list-elite ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.how-work-footer-list-elite ul li {
	position: relative;
	background: var(--bg-color);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	font-family: var(--accent-font);
	color: var(--primary-color);
	padding: 11px 16px 11px 32px;
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.how-work-footer-list-elite ul li::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-secondary-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
	transition: all 0.4s ease-in-out;
}

.how-work-footer-list-elite ul li:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.how-work-footer-list-elite ul li:hover:before {
	background: var(--white-color);
}

.our-pricing-elite {
	padding: 100px 0;
}

.pricing-item-elite {
	background-color: var(--secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-item-header-box-elite {
	margin-bottom: 30px;
}

.pricing-item-header-elite {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.pricing-item-header-elite .icon-box {
	position: relative;
	width: 40px;
	height: 40px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.pricing-item-elite:hover .pricing-item-header-elite .icon-box {
	background-position: right center;
}

.pricing-item-header-elite .icon-box img {
	width: 100%;
	max-width: 20px;
}

.pricing-item-title-elite {
	width: calc(100% - 55px);
}

.pricing-item-title-elite h3 {
	font-size: 20px;
}

.pricing-item-content-elite {
	margin-bottom: 30px;
}

.pricing-item-content-elite p {
	margin: 0;
}

.pricing-price-elite {
	background-color: var(--bg-color);
	border-radius: 20px;
	padding: 18px 20px;
}

.pricing-price-elite h2 {
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2em;
	letter-spacing: -0.02em;
}

.pricing-price-elite h2 sub {
	font-size: 16px;
	font-family: var(--default-font);
	bottom: 0;
}

.pricing-item-list-elite h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.pricing-item-list-elite ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-item-list-elite ul li {
	position: relative;
	line-height: 1.5em;
	margin-bottom: 20px;
	padding-left: 25px;
}

.pricing-item-list-elite ul li:last-child {
	margin-bottom: 0;
}

.pricing-item-list-elite ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 18px;
	font-weight: 900;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 0;
	left: 0;
}

.pricing-item-btn-elite {
	margin-top: 30px;
}

.pricing-item-btn-elite .btn-default {
	width: 100%;
	text-align: center;
	padding: 17px;
}

.pricing-item-btn-elite .btn-default::before {
	display: none;
}

.pricing-benefit-list-elite {
	margin-top: 30px;
}

.pricing-benefit-list-elite ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 20px 40px;
}

.pricing-benefit-list-elite ul li {
	display: inline-flex;
	align-items: center;
}

.pricing-benefit-list-elite ul li img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

.our-projects-elite {
	background: var(--secondary-color);
	padding: 100px 0;
}

.our-projects-elite .project-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.our-faqs-elite {
	padding: 100px 0;
}

.faqs-image-box-elite {
	position: relative;
	margin-right: 15px;
	height: 100%;
	padding: 70px 0 0 70px;
}

.faqs-image-box-elite .get-in-touch-circle-elite {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.faqs-image-box-elite .get-in-touch-circle-elite a {
	border: 5px solid var(--bg-color);
	background-color: var(--bg-color);
}

.faqs-image-box-elite .get-in-touch-circle-elite a img {
	max-width: 160px;
}

.faqs-image-elite {
	height: 100%;
}

.faqs-image-elite figure {
	height: 100%;
	display: block;
	border-radius: 20px;
}

.faqs-image-elite figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.17;
	object-fit: cover;
	border-radius: 20px;
}

.faqs-award-box-elite {
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 290px;
	border: 20px solid var(--bg-color);
	background-color: var(--bg-color);
	border-radius: 20px 0 0 0;
	border-right: none;
	border-bottom: none;
	z-index: 2;
}

.faqs-award-box-elite::before,
.faqs-award-box-elite::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	mask: url('../images/image-corner-bg-shape-elite.svg');
	-webkit-mask: url('../images/image-corner-bg-shape-elite.svg');
	background-color: var(--bg-color);
	mask-repeat: no-repeat;
	mask-size: cover;
	transform: rotate(180deg);
	z-index: 1;
}

.faqs-award-box-elite::before {
	top: -40px;
	right: 0;
}

.faqs-award-box-elite::after {
	left: -40px;
	bottom: 0;
}

.faqs-award-body-elite {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 20px;
}

.faqs-award-image-elite {
	text-align: center;
}

.faqs-award-image-elite figure {
	display: block;
	border-radius: 20px;
}

.faqs-award-image-elite figure img {
	width: 100%;
	max-width: 150px;
	object-fit: cover;
	border-radius: 20px;
}

.faqs-award-title-elite {
	text-align: center;
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-top: 30px;
}

.faqs-award-title-elite h3 {
	font-size: 20px;
}

.faqs-content-elite {
	height: 100%;
	align-content: center;
}

.faq-accordion-elite .accordion-item-elite {
	background: var(--secondary-color);
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.faq-accordion-elite .accordion-item-elite:last-child {
	margin-bottom: 0;
}

.faq-accordion-elite .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3em;
	background-color: transparent;
	color: var(--primary-color);
	padding: 27px 50px 27px 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion-elite .accordion-header .accordion-button:not(.collapsed) {
	background-color: transparent;
}

.faq-accordion .accordion-item-elite:last-child .accordion-header .accordion-button.collapsed {
	border-bottom: none;
}

.faq-accordion-elite .accordion-item-elite .accordion-button::after,
.faq-accordion-elite .accordion-item-elite .accordion-button.collapsed::after {
	content: '\f107';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	right: 30px;
	top: 50%;
	font-size: 20px;
	transform: translateY(-50%);
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease-in-out;
}

.faq-accordion-elite .accordion-button:not(.collapsed)::after {
	content: '\f106';
}

.faq-accordion-elite .accordion-item-elite .accordion-body {
	border-top: 1px solid var(--divider-color);
	padding: 27px 30px;
}

.faq-accordion-elite .accordion-item-elite .accordion-body p {
	margin: 0;
}

.our-testimonials-elite {
	background: var(--secondary-color) url('../images/section-bg-shape-3.png') no-repeat;
	background-position: right bottom;
	background-size: auto;
	padding: 100px 0;
}

.testimonial-slider-elite .swiper-wrapper {
	cursor: none;
}

.testimonial-item-elite {
	background-color: var(--bg-color);
	border-radius: 20px;
	text-align: center;
	padding: 0 30px 30px;
	margin-top: 40px;
}

.testimonial-author-image-elite {
	margin-bottom: 30px;
}

.testimonial-author-image-elite figure {
	display: inline-block;
	border: 10px solid var(--secondary-color);
	border-radius: 50%;
	margin-top: -40px;
}

.testimonial-author-image-elite figure img {
	width: 100%;
	max-width: 60px;
}

.testimonial-item-rating-elite {
	margin-bottom: 30px;
}

.testimonial-item-rating-elite i {
	font-size: 20px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.testimonial-item-content-elite p {
	margin-bottom: 0;
}

.testimonial-author-content-elite {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.testimonial-author-content-elite h3 {
	font-size: 20px;
}

.testimonial-author-content-elite p {
	margin: 5px 0 0;
}

.testimonials-footer-elite {
	margin-top: 60px;
}

.testimonials-footer-list-elite ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

.testimonials-footer-list-elite ul li {
	position: relative;
	background: var(--bg-color);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	font-family: var(--accent-font);
	color: var(--primary-color);
	padding: 11px 16px 11px 32px;
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.testimonials-footer-list-elite ul li::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-secondary-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
	transition: all 0.4s ease-in-out;
}

.testimonials-footer-list-elite ul li:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.testimonials-footer-list-elite ul li:hover:before {
	background: var(--white-color);
}

.main-footer-elite {
	background-image: url('../images/section-bg-shape-4.png');
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: auto;
	padding: 100px 0 0;
}

.footer-header-elite {
	border-bottom: 1px solid var(--dark-divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 30px;
	padding-bottom: 60px;
	margin-bottom: 60px;
}

.footer-logo-elite img {
	width: 100%;
	max-width: 146px;
}

.footer-header-content-elite {
	max-width: 40%;
}

.footer-header-content-elite p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-social-links-elite ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 15px;
	margin: 0;
	padding: 0;
}

.footer-social-links-elite ul li a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	color: var(--accent-secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links-elite ul li a:hover {
	background: var(--accent-secondary-color);
	color: var(--primary-color);
}

.footer-social-links-elite ul li a i {
	font-size: 18px;
	color: inherit;
}

.footer-newsletter-box-elite h3 {
	font-size: 30px;
	color: var(--white-color);
}

.footer-newsletter-box-elite p {
	color: var(--white-color);
	margin: 15px 0 0 0;
}

.footer-newsletter-form-elite {
	margin-top: 40px;
}

.footer-newsletter-form-elite .form-group {
	position: relative;
	display: flex;
	background-color: var(--dark-divider-color);
	border-radius: 10px;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	padding: 5px;
}

.footer-newsletter-form-elite .form-group .form-control {
	width: calc(100% - 50px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25em;
	color: var(--white-color);
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 15px;
}

.footer-newsletter-form-elite .form-group .form-control::placeholder {
	color: var(--white-color);
}

.footer-newsletter-form-elite .form-group .newsletter-btn {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	padding: 0;
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-elite .form-group .newsletter-btn:hover {
	background-position: right;
}

.footer-newsletter-form-elite .form-group .newsletter-btn i {
	font-size: 24px;
	color: var(--white-color);
}

.footer-links-box-elite {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-left: 7.813vw;
}

.footer-links-elite {
	max-width: 40%;
}

.footer-links-elite h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links-elite ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links-elite ul li {
	line-height: 1.4em;
	color: var(--white-color);
	margin-bottom: 15px;
}

.footer-links-elite ul li:last-child {
	margin-bottom: 0;
}

.footer-links-elite ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links-elite ul li a:hover {
	color: var(--accent-secondary-color);
}

.footer-contact-list-elite {
	width: 100%;
	border-top: 1px solid var(--dark-divider-color);
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
	padding-top: 60px;
	margin-top: 30px;
}

.footer-contact-item-elite {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.footer-contact-item-elite::before {
	content: '';
	position: absolute;
	top: 0;
	right: -30px;
	width: 1px;
	height: 100%;
	background: var(--dark-divider-color);
}

.footer-contact-item-elite:nth-child(3n + 3):before,
.footer-contact-item-elite:last-child:before {
	display: none;
}

.footer-contact-item-elite .icon-box {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-contact-item-elite:hover .icon-box {
	background-position: right center;
}

.footer-contact-item-elite .icon-box img {
	width: 100%;
	max-width: 20px;
}

.footer-contact-content-elite {
	width: calc(100% - 55px);
}

.footer-contact-content-elite h3 {
	font-size: 20px;
	color: var(--white-color);
}

.footer-contact-content-elite p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.footer-contact-content-elite p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-content-elite p a:hover {
	color: var(--accent-secondary-color);
}

.footer-copyright-text-elite {
	text-align: center;
	border-top: 1px solid var(--dark-divider-color);
	padding: 60px 0;
	margin-top: 60px;
}

.footer-copyright-text-elite p {
	color: var(--white-color);
	margin-bottom: 0;
}

@media only screen and (max-width: 1440px) {

	.hero-counter-list-elite {
		gap: 30px 60px;
	}

	.hero-counter-item-elite {
		width: calc(20% - 48px);
	}

	.hero-counter-item-elite::before {
		right: -30px;
	}

	.about-us-image-box-2-elite {
		gap: 20px;
	}

	.achievement-box-elite {
		margin-left: -170px;
	}

	.achievement-box-elite::before {
		left: 110px;
	}

	.achievement-item-header-elite {
		padding: 10px 10px 20px;
	}

	.achievement-item-body-elite {
		padding: 20px;
	}

	.about-item-list-elite {
		width: calc(100% - 230px);
	}

	.about-counter-box-elite {
		max-width: 200px;
		padding: 20px;
	}

	.service-item-body-elite {
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.why-choose-item-list-elite {
		gap: 20px;
	}

	.why-choose-item-elite {
		width: calc(50% - 10px);
		padding: 20px;
	}

	.why-choose-item-header-elite {
		gap: 10px;
	}

	.why-choose-item-title-elite {
		width: calc(100% - 50px);
	}

	.pricing-item-elite {
		padding: 30px 25px;
	}

	.faqs-image-box-elite {
		padding: 40px 0 0 40px;
	}

	.faq-accordion-elite .accordion-header .accordion-button {
		padding: 20px 40px 20px 20px;
	}

	.faq-accordion-elite .accordion-item-elite .accordion-button::after,
	.faq-accordion-elite .accordion-item-elite .accordion-button.collapsed::after {
		right: 20px;
	}

	.faq-accordion-elite .accordion-item-elite .accordion-body {
		padding: 20px;
	}

	.testimonial-item-elite {
		padding: 0 20px 20px;
	}
}

@media only screen and (max-width: 1024px) {

	.hero-counter-list-elite {
		gap: 30px;
	}

	.hero-counter-item-elite {
		width: calc(20% - 24px);
	}

	.hero-counter-item-elite::before {
		right: -15px;
	}

	.hero-counter-item-elite p {
		font-size: 14px;
	}

	.about-us-images-elite {
		height: auto;
		max-width: 705px;
		margin: 0 auto 30px;
	}

	.about-us-image-box-1-elite,
	.about-us-image-elite,
	.about-us-image-elite figure,
	.about-us-image-elite figure img {
		height: auto;
	}

	.about-us-content-elite {
		height: auto;
	}

	.service-item-image-elite a figure img {
		aspect-ratio: 1 / 1.1;
	}

	.why-choose-images-elite {
		height: auto;
		max-width: 800px;
		margin: 0 auto 30px;
	}

	.why-choose-image-1-elite,
	.why-choose-image-1-elite figure,
	.why-choose-image-1-elite figure img {
		height: auto;
	}

	.why-choose-item-elite {
		min-height: 250px;
	}

	.how-work-boxes-elite {
		height: auto;
	}

	.how-work-nav-elite {
		width: 100%;
		height: auto;
		padding: 20px;
	}

	.how-work-nav-elite ul li .nav-link {
		font-size: 18px;
		padding: 15px;
	}

	.how-work-box-elite {
		width: 100%;
	}

	.how-work-box-item-elite {
		padding: 20px;
	}

	.how-work-box-image-elite figure img {
		aspect-ratio: 1 / 0.9;
	}

	.faqs-image-box-elite {
		max-width: 705px;
		height: auto;
		margin: 0 auto 30px;
	}

	.faqs-image-elite,
	.faqs-image-elite figure,
	.faqs-image-elite figure img {
		height: auto;
	}

	.footer-header-elite {
		gap: 15px;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-header-content-elite {
		width: 100%;
		max-width: 100%;
	}

	.footer-newsletter-box-elite {
		margin-bottom: 30px;
	}

	.footer-newsletter-form-elite {
		margin-top: 20px;
	}

	.footer-links-box-elite {
		margin-left: 0;
	}

	.footer-links-elite h3 {
		margin-bottom: 20px;
	}

	.footer-links-elite ul li {
		margin-bottom: 10px;
	}

	.footer-contact-list-elite {
		margin-top: 0;
		padding-top: 30px;
	}

	.footer-copyright-text-elite {
		margin-top: 30px;
		padding: 30px 0;
	}
}

@media only screen and (max-width: 991px) {

	.hero-elite {
		padding: 140px 0 50px;
	}

	.hero-content-elite .section-title h3 {
		background-position: left 10px center;
		padding: 9px 14px 9px 35px;
	}

	.hero-content-elite .section-title h1 {
		font-size: 44px;
	}

	.video-play-button-elite a {
		width: 46px;
		height: 46px;
	}

	.hero-counter-list-elite {
		margin-top: 40px;
	}

	.hero-counter-item-elite h2 {
		font-size: 38px;
	}

	.about-us-elite {
		padding: 50px 0;
	}

	.get-in-touch-circle-elite a img {
		max-width: 130px;
	}

	.achievement-item-no h2 {
		font-size: 36px;
	}

	.about-us-item-elite {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.about-counter-content-elite h2 {
		font-size: 30px;
	}

	.about-us-btn-elite {
		margin-top: 30px;
	}

	.our-services-elite {
		background-size: 300px auto;
		padding: 50px 0;
	}

	.why-choose-us-elite {
		padding: 50px 0;
	}

	.why-choose-us-elite .section-footer-text {
		margin-top: 40px;
	}

	.how-it-works-elite {
		padding: 50px 0;
	}

	.how-work-box-item-elite {
		gap: 20px;
		padding: 20px;
	}

	.how-work-box-item-body-elite {
		padding-top: 20px;
	}

	.how-work-box-item-btn-elite {
		margin-top: 30px;
	}

	.how-work-footer-elite {
		margin-top: 40px;
	}

	.how-work-footer-list-elite ul {
		gap: 10px;
	}

	.how-work-footer-list-elite ul li {
		font-size: 14px;
		padding: 9px 12px 9px 22px;
	}

	.how-work-footer-list-elite ul li::before {
		left: 10px;
	}

	.our-pricing-elite {
		padding: 50px 0;
	}

	.pricing-item-elite {
		padding: 20px;
	}

	.pricing-item-content-elite {
		margin-bottom: 20px;
	}

	.pricing-price-elite {
		padding: 15px;
	}

	.pricing-price-elite h2 {
		font-size: 36px;
	}

	.pricing-item-list-elite ul li {
		margin-bottom: 15px;
	}

	.pricing-item-list-elite ul li::before {
		font-size: 16px;
	}

	.pricing-item-btn-elite .btn-default {
		padding: 15px;
	}

	.pricing-benefit-list-elite {
		margin-top: 10px;
	}

	.pricing-benefit-list-elite ul {
		gap: 15px 30px;
	}

	.pricing-benefit-list-elite ul li img {
		max-width: 18px;
		margin-right: 10px;
	}

	.our-projects-elite {
		padding: 50px 0;
	}

	.our-faqs-elite {
		padding: 50px 0;
	}

	.faqs-image-box-elite {
		padding: 30px 0 0 30px;
	}

	.faqs-image-box-elite .get-in-touch-circle-elite a img {
		max-width: 130px;
	}

	.faq-accordion-elite .accordion-item-elite {
		margin-bottom: 20px;
	}

	.faq-accordion-elite .accordion-header .accordion-button {
		padding: 15px 40px 15px 15px;
	}

	.faq-accordion-elite .accordion-item-elite .accordion-button::after,
	.faq-accordion-elite .accordion-item-elite .accordion-button.collapsed::after {
		right: 15px;
	}

	.faq-accordion-elite .accordion-item-elite .accordion-body {
		padding: 15px;
	}

	.our-testimonials-elite {
		background-size: 300px auto;
		padding: 50px 0;
	}

	.testimonial-author-image-elite,
	.testimonial-item-rating-elite {
		margin-bottom: 20px;
	}

	.testimonial-item-rating-elite i {
		font-size: 18px;
	}

	.testimonial-author-content-elite {
		padding-top: 20px;
		margin-top: 20px;
	}

	.testimonials-footer-elite {
		margin-top: 40px;
	}

	.testimonials-footer-list-elite ul {
		gap: 10px;
	}

	.testimonials-footer-list-elite ul li {
		font-size: 14px;
		padding: 9px 12px 9px 22px;
	}

	.testimonials-footer-list-elite ul li::before {
		left: 10px;
	}

	.main-footer-elite {
		background-size: 500px auto;
		padding: 50px 0 0;
	}

	.footer-newsletter-box-elite h3 {
		font-size: 26px;
	}

	.footer-newsletter-form-elite .form-group .form-control {
		width: calc(100% - 42px);
		padding: 12px 15px;
	}

	.footer-newsletter-form-elite .form-group .newsletter-btn {
		width: 42px;
		height: 42px;
	}

	.footer-newsletter-form-elite .form-group .newsletter-btn i {
		font-size: 20px;
	}
}

@media only screen and (max-width: 767px) {

	.hero-content-elite .section-title h3 {
		font-size: 14px;
	}

	.hero-content-elite .section-title h1 {
		font-size: 28px;
	}

	.hero-body-elite {
		gap: 15px;
	}

	.hero-counter-list-elite {
		gap: 20px;
		margin-top: 30px;
		padding-top: 30px;
	}

	.hero-counter-item-elite {
		width: calc(50% - 10px);
	}

	.hero-counter-item-elite::before {
		display: none;
	}

	.hero-counter-item-elite h2 {
		font-size: 28px;
	}

	.about-us-image-box-1-elite {
		width: 100%;
	}

	.about-us-image-box-2-elite {
		width: 100%;
	}

	.about-us-image-box-2-elite .get-in-touch-circle-elite {
		display: none;
	}

	.achievement-box-elite {
		border: none;
		margin-left: 0;
	}

	.achievement-box-elite::after,
	.achievement-box-elite::before {
		display: none;
	}

	.achievement-item-no h2 {
		font-size: 26px;
	}

	.achievement-item-content-elite h3 {
		font-size: 18px;
	}

	.achievement-item-content-elite p {
		margin-top: 5px;
	}

	.about-item-list-elite {
		width: 100%;
	}

	.about-us-item-content-elite h3 {
		font-size: 18px;
	}

	.about-counter-box-elite {
		width: 100%;
		max-width: 100%;
		padding: 20px;
	}

	.about-counter-content-elite h2 {
		font-size: 26px;
	}

	.about-counter-content-elite h3 {
		font-size: 18px;
	}

	.service-item-content-elite h2 {
		font-size: 18px;
	}

	.why-choose-client-box-elite {
		position: initial;
		max-width: 100%;
		border: none;
		margin-bottom: 20px;
	}

	.why-choose-client-box-elite::after,
	.why-choose-client-box-elite::before {
		display: none;
	}

	.why-choose-client-body-elite {
		padding: 20px;
	}

	.why-choose-client-content-elite h3 {
		font-size: 18px;
	}

	.why-choose-image-1-elite figure img {
		aspect-ratio: 1 / 1.25;
	}

	.why-choose-image-2-elite figure {
		border-width: 10px;
	}

	.why-choose-image-2-elite figure img {
		max-width: 180px;
	}

	.why-choose-item-elite {
		width: 100%;
		min-height: initial;
		gap: 20px;
	}

	.why-choose-item-title-elite h3 {
		font-size: 18px;
	}

	.why-choose-item-body-elite {
		padding-top: 20px;
	}

	.how-work-nav-elite ul li .nav-link {
		font-size: 16px;
		padding: 12px;
	}

	.how-work-box-item-elite {
		height: auto;
		margin-bottom: 30px;
	}

	.how-work-box-item-header-elite .icon-box {
		width: 50px;
		height: 50px;
	}

	.how-work-box-item-header-elite .icon-box img {
		max-width: 24px;
	}

	.how-work-box-item-content-elite h3 {
		font-size: 18px;
	}

	.how-work-box-item-btn-elite {
		margin-top: 20px;
	}

	.how-work-box-image-elite,
	.how-work-box-image-elite figure,
	.how-work-box-image-elite figure img {
		height: auto;
	}

	.how-work-footer-list-elite ul li {
		font-size: 12px;
	}

	.pricing-item-title-elite h3 {
		font-size: 18px;
	}

	.pricing-price-elite {
		border-radius: 14px;
		padding: 12px;
	}

	.pricing-price-elite h2 {
		font-size: 26px;
	}

	.pricing-price-elite h2 sub {
		font-size: 14px;
	}

	.pricing-item-list-elite h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.pricing-item-list-elite ul li {
		margin-bottom: 10px;
	}

	.pricing-benefit-list-elite ul {
		gap: 10px 20px;
	}

	.pricing-benefit-list-elite ul li {
		font-size: 14px;
	}

	.pricing-benefit-list-elite ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.faqs-image-box-elite {
		padding: 0px;
	}

	.faqs-image-box-elite .get-in-touch-circle-elite {
		display: none;
	}

	.faqs-award-box-elite {
		position: initial;
		max-width: 100%;
		border: none;
		margin-top: 20px;
	}

	.faqs-award-box-elite::after,
	.faqs-award-box-elite::before {
		display: none;
	}

	.faqs-award-image-elite figure img {
		max-width: 120px;
	}

	.faqs-award-title-elite {
		padding-top: 15px;
		margin-top: 15px;
	}

	.faqs-award-title-elite h3 {
		font-size: 18px;
	}

	.faq-accordion-elite .accordion-item-elite {
		border-radius: 14px;
	}

	.faq-accordion-elite .accordion-header .accordion-button {
		font-size: 18px;
		padding: 12px 40px 12px 15px;
	}

	.faq-accordion-elite .accordion-item-elite .accordion-body {
		padding: 12px 15px;
	}

	.testimonial-author-content-elite h3 {
		font-size: 18px;
	}

	.testimonials-footer-list-elite ul li {
		font-size: 12px;
	}

	.footer-newsletter-box-elite h3 {
		font-size: 22px;
	}

	.footer-links-elite h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links-elite {
		max-width: 100%;
	}

	.footer-contact-list-elite {
		gap: 20px;
	}

	.footer-contact-item-elite {
		width: 100%;
		max-width: 100%;
	}

	.footer-contact-item-elite::before {
		display: none;
	}

	.footer-contact-content-elite h3 {
		font-size: 18px;
	}

	.footer-copyright-text-elite {
		padding: 15px 0;
	}
}

/* ==========================================================================
   Continental Group Custom Light Theme Overrides
   ========================================================================== */

/* Make all dark sections light-themed */
.dark-section {
	background-color: var(--secondary-color) !important;
	background-image: none !important;
}

/* Ensure headings in lightened sections use primary color (dark) */
.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title h2 a,
.dark-section .section-title-content h2,
.dark-section .project-company-slider-content h3 {
	color: var(--primary-color) !important;
}

/* Ensure paragraph and list text use standard text color */
.dark-section .section-title-content p,
.dark-section .section-title p,
.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li {
	color: var(--text-color) !important;
}

/* Hero Section Light Theme Overrides - Translucent cream initially, fades down to reveal video */
/* Disable hero overlay for pure video background clarity */
.hero::before {
	display: none !important;
}

.hero-content .section-title h3,
.hero-content .section-title h1,
.hero-content .section-title p,
.hero-body .video-play-button p {
	color: var(--primary-color) !important;
}

/* Adjust button inside Hero if needed */
.hero-body .video-play-button p {
	color: var(--primary-color) !important;
}

/* Preloader logo spacing */
#loading-icon img {
	max-width: 100px;
	height: auto;
}

/* Footer Light Theme Overrides */
.main-footer.dark-section {
	background-color: var(--bg-color) !important;
	border-top: 1px solid var(--divider-color) !important;
}

.main-footer .footer-newsletter-box h3,
.main-footer .footer-newsletter-box p,
.main-footer .footer-links h3,
.main-footer .footer-links ul li a,
.main-footer .footer-contact-content h3,
.main-footer .footer-contact-content p,
.main-footer .footer-contact-content p a,
.main-footer .footer-copyright-text p,
.main-footer .footer-privacy-policy ul li a {
	color: var(--primary-color) !important;
}

.main-footer .footer-newsletter-form .form-group input {
	background-color: var(--white-color) !important;
	color: var(--primary-color) !important;
	border: 1px solid var(--divider-color) !important;
}

.main-footer .footer-newsletter-form .newsletter-btn {
	background: var(--primary-color) !important;
}

.main-footer .footer-newsletter-form .newsletter-btn img {
	filter: brightness(0) invert(1) !important;
}

.main-footer .footer-newsletter-box p,
.main-footer .footer-contact-content p,
.main-footer .about-footer-content p,
.main-footer .footer-copyright-text p {
	color: var(--text-color) !important;
}

.main-footer .footer-header,
.main-footer .footer-links-box {
	border-color: var(--divider-color) !important;
}

.main-footer .footer-social-links ul li a {
	border: 1px solid var(--divider-color) !important;
	color: var(--primary-color) !important;
}

.main-footer .footer-social-links ul li a:hover {
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%) !important;
	color: var(--white-color) !important;
	border-color: transparent !important;
}



/* Adjust Preloader page color for a smooth transition */
.preloader {
	background: var(--bg-color) !important;
}

.loading {
	border-color: transparent var(--accent-color) transparent var(--accent-color) !important;
}

/* --- Hero Cinematic Overlay and Fade Transitions --- */
.hero-content {
	opacity: 1;
	transition: opacity 3s cubic-bezier(0.25, 1, 0.5, 1);
	/* slow fade out */
}

.hero.video-playing .hero-content {
	opacity: 0 !important;
	pointer-events: none;
}

.logo-intro-header {
	opacity: 0;
	transition: opacity 1.5s ease;
}

.logo-intro-header.visible {
	opacity: 1 !important;
}

/* --- Header Menu Links Dark Overrides for Light Luxury Feel --- */
header.main-header .main-menu ul li a {
	color: var(--primary-color) !important;
	position: relative;
	transition: all 0.3s ease-in-out;
}

/* Elegant gold line under active/hover menu items globally */
header.main-header .main-menu ul li a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 15px;
	right: 15px;
	height: 1.5px;
	background: var(--accent-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
	transform-origin: right;
}

header.main-header .main-menu ul li a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

header.main-header .main-menu ul li a:hover,
header.main-header .main-menu ul li a:focus {
	color: var(--accent-color) !important;
}

/* --- Premium Navigation Header Contrast Transition (Homepage Only) --- */

/* Transparent Mode links (White text over video for maximum legibility and premium feel) */
header.logo-intro-header .main-menu ul li a {
	color: #FFFFFF !important;
	text-shadow: 0 1px 2px rgba(15, 57, 92, 0.4);
	font-weight: 500;
}

header.logo-intro-header .main-menu ul li a:hover,
header.logo-intro-header .main-menu ul li a:focus {
	color: var(--accent-color) !important;
	text-shadow: none;
}

/* Transparent Mode header CTA button (Ghost style) */
header.logo-intro-header .header-btn a.btn-default {
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.4) !important;
	color: #FFFFFF !important;
}

header.logo-intro-header .header-btn a.btn-default:hover {
	background: var(--accent-color) !important;
	border-color: var(--accent-color) !important;
	color: var(--white-color) !important;
	box-shadow: 0 8px 20px rgba(202, 140, 25, 0.3);
}

/* White logo over transparent header */
header.logo-intro-header .navbar-brand img {
	filter: brightness(0) invert(1);
	transition: filter 0.4s ease, transform 0.3s ease;
}

header.logo-intro-header .navbar-brand img:hover {
	transform: scale(1.02);
}

/* --- Active Sticky Header Light Theme Override --- */
header.main-header .header-sticky.active {
	background: var(--white-color) !important;
	border-bottom: 1px solid var(--divider-color) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

header.main-header .header-sticky.active .main-menu ul li a {
	color: var(--primary-color) !important;
	text-shadow: none;
}

header.main-header .header-sticky.active .main-menu ul li a:hover,
header.main-header .header-sticky.active .main-menu ul li a:focus {
	color: var(--accent-color) !important;
}

/* Restore logo colors and sticky button on scrolled header */
header.logo-intro-header .header-sticky.active .navbar-brand img {
	filter: none;
}

header.logo-intro-header .header-sticky.active .header-btn a.btn-default {
	background: var(--accent-color) !important;
	border-color: var(--accent-color) !important;
	color: var(--white-color) !important;
}

header.logo-intro-header .header-sticky.active .header-btn a.btn-default:hover {
	background: var(--primary-color) !important;
	border-color: var(--primary-color) !important;
	box-shadow: 0 8px 20px rgba(15, 57, 92, 0.2);
}

/* --- Brand Serif and Tagline Typography Styling (Google Fonts STIX Two Text) --- */
.brand-serif {
	font-family: 'STIX Two Text', serif !important;
}

.brand-tagline {
	font-family: 'STIX Two Text', serif !important;
	font-style: italic !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	font-weight: 500 !important;
}

/* --- Hero Floating Typography (No Card Box) --- */
.hero-info-card-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: flex;
	align-items: center;
	pointer-events: none;
}

.hero-info-card {
	background: transparent !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	box-shadow: none !important;
	border: none !important;
	position: relative;
	transition: transform 0.3s ease;
}

/* Hide the border highlight pseudo-element */
.hero-info-card::before {
	display: none !important;
}

.hero-info-card:hover {
	transform: translateY(-2px);
	box-shadow: none !important;
}

.hero-info-card .card-subtitle {
	font-family: var(--primary-font) !important;
	color: #E5A93C !important;
	/* Richer, deeper metallic gold for high visibility */
	letter-spacing: 4px !important;
	text-transform: uppercase !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	margin-bottom: 15px !important;
	display: block;
	text-shadow: 0 1px 3px rgba(15, 57, 92, 0.8), 0 2px 6px rgba(0, 0, 0, 0.4) !important;
}

.hero-info-card .card-title {
	font-family: 'STIX Two Text', serif !important;
	color: #FFFFFF !important;
	/* High contrast white over the sea/sky video */
	font-size: 54px !important;
	font-weight: 400 !important;
	font-style: italic !important;
	margin-bottom: 22px !important;
	line-height: 1.2em !important;
	text-shadow: 0 2px 8px rgba(15, 57, 92, 0.4);
}

.hero-info-card .card-text {
	color: #FFFFFF !important;
	/* White text for direct readability */
	font-size: 18px !important;
	line-height: 1.85em !important;
	margin-bottom: 35px !important;
	font-weight: 400 !important;
	text-shadow: 0 2px 6px rgba(15, 57, 92, 0.5);
}

/* Stylize brand name highlights inside paragraph text to use soft gold */
.hero-info-card .card-text .brand-serif {
	font-family: 'STIX Two Text', serif !important;
	color: #E5A93C !important;
	/* Richer, deeper gold highlight */
	font-weight: 700 !important;
	/* Bolder weight to pop off the white text */
	font-style: italic;
	text-shadow: 0 1px 2px rgba(15, 57, 92, 0.8), 0 2px 5px rgba(0, 0, 0, 0.3) !important;
}

/* Premium transition for Explore Projects CTA button */
.hero-info-card .btn-default {
	box-shadow: 0 6px 15px rgba(202, 140, 25, 0.15);
	transition: all 0.3s ease-in-out;
}

.hero-info-card .btn-default:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 25px rgba(202, 140, 25, 0.35) !important;
}

.hero-info-card.right-card {
	margin-top: 250px;
	/* Push down a little */
	margin-left: 40px;
	/* Shift slightly to the right */
}

/* Responsive Overrides for Hero Columns - Cinematic Text Carousel */
@media (max-width: 991px) {
	.hero {
		height: 100vh !important;
		min-height: 600px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		padding: 0 !important;
		/* Space is managed by flex centering */
		position: relative;
	}

	.hero-info-card-wrapper {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 25px !important;
		display: block;
		z-index: 2;
	}

	.hero-info-card-wrapper .row {
		position: relative;
		min-height: 280px;
		/* Clean box to prevent any layout shifts when switching slides */
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 !important;
	}

	.hero-info-card-wrapper .col-lg-5 {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-width: 520px;
		/* Perfect reading column width */
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		visibility: hidden;
		pointer-events: auto;
	}

	.hero-info-card {
		text-align: center !important;
		margin-bottom: 0 !important;
		width: 100%;
	}

	.hero-info-card.right-card {
		margin-bottom: 0;
		margin-top: 0;
		margin-left: 0;
	}

	.hero-info-card .card-title {
		font-size: 34px !important;
		/* Clean title scale for tablets */
		text-align: center !important;
	}

	.hero-info-card .card-text {
		font-size: 15.5px !important;
		line-height: 1.85em !important;
		text-align: center !important;
		margin-bottom: 0 !important;
	}

	/* Cinematic gradient overlay on mobile to keep white text legible over dynamic video */
	.hero::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(to bottom,
				rgba(15, 57, 92, 0.5) 0%,
				rgba(15, 57, 92, 0.2) 25%,
				rgba(15, 57, 92, 0.2) 75%,
				rgba(15, 57, 92, 0.5) 100%);
		z-index: 1;
		pointer-events: none;
	}

	/* Elegant slider dots at bottom of hero section */
	.hero-dots {
		display: flex;
		justify-content: center;
		gap: 12px;
		position: absolute;
		bottom: 35px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;
	}

	.hero-dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.3);
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.hero-dot.active {
		background: var(--accent-color) !important;
		/* Gold active dot */
		transform: scale(1.2);
		box-shadow: 0 0 8px var(--accent-color);
	}
}

@media (max-width: 767px) {
	.hero-info-card-wrapper .row {
		min-height: 310px;
		/* Extra height to accommodate wrapping text on smaller screens */
	}

	.hero-info-card .card-subtitle {
		font-size: 11px !important;
		letter-spacing: 2px !important;
	}

	.hero-info-card .card-title {
		font-size: 28px !important;
		/* Softened typography size on phone screens to prevent wrapping */
		margin-bottom: 12px !important;
	}

	.hero-info-card .card-text {
		font-size: 14px !important;
		/* Sleek mobile body text size */
		line-height: 1.8em !important;
		margin-bottom: 0 !important;
	}
}


/* ============================================================
   CONTINENTAL GROUP — CUSTOM LUXURY ENHANCEMENTS
   ============================================================ */

/* ============================
   HERO — SCROLL INDICATOR
   ============================ */
.hero-scroll-indicator {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	pointer-events: none;
}

.hero-scroll-indicator span {
	font-size: 9px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	font-family: var(--accent-font);
	font-weight: 600;
}

.hero-scroll-line {
	width: 1px;
	height: 48px;
	background: rgba(255, 255, 255, 0.12);
	position: relative;
	overflow: hidden;
}

.hero-scroll-line::after {
	content: '';
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 0%, var(--accent-secondary-color) 100%);
	animation: heroScrollDown 2.2s ease-in-out infinite;
}

@keyframes heroScrollDown {
	0% {
		top: -100%;
		opacity: 1;
	}

	80% {
		top: 100%;
		opacity: 1;
	}

	100% {
		top: 100%;
		opacity: 0;
	}
}

/* ============================
   SECTION H3 TYPOGRAPHY STYLE
   ============================ */
.section-title h3,
.section-title-center h3 {
	color: var(--accent-color) !important;
}

/* Dark-section h3 typography style — soft gold */
.dark-section .section-title h3,
.dark-section .section-title-center h3 {
	color: var(--accent-secondary-color) !important;
}


/* ============================
   WHY CHOOSE US — GOLD CHECKLIST
   ============================ */
.why-choose-list-custom ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.why-choose-list-custom ul li {
	border-left: 2px solid var(--accent-color);
	padding-left: 20px;
	transition: border-color 0.3s ease, padding-left 0.3s ease;
}

.why-choose-list-custom ul li:hover {
	border-left-color: var(--accent-secondary-color);
	padding-left: 26px;
}

/* ============================
   PROJECT CARD — GOLD HOVER OVERLAY
   ============================ */
.project-item-image figure.image-anime {
	overflow: hidden;
}

.project-item-image figure.image-anime::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(202, 140, 25, 0.45) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 1;
	pointer-events: none;
}

.project-item-image figure.image-anime:hover::after {
	opacity: 1;
}

.project-item-image figure.image-anime img {
	transition: transform 0.65s ease;
}

.project-item-image figure.image-anime:hover img {
	transform: scale(1.05);
}

/* ============================
   BRAND IDENTITY STRIP
   ============================ */
.brand-identity-strip {
	background-color: var(--primary-color) !important;
	background-image: none !important;
	padding: 80px 0;
	border-top: 1px solid rgba(202, 140, 25, 0.25);
	border-bottom: 1px solid rgba(202, 140, 25, 0.25);
}

/* Heights: warm bronze tint + gold-glow icons — matches its "arrived" header */
.ht-brand-strip {
	background-color: #241809 !important;
	border-top: 1px solid rgba(238, 192, 107, 0.3);
	border-bottom: 1px solid rgba(238, 192, 107, 0.3);
}

.ht-brand-strip .brand-identity-item .icon-box img {
	filter: brightness(0) invert(0.85) sepia(1) saturate(3) hue-rotate(5deg) !important;
}

/* Horizon: deep navy + cool-glow icons — matches its "ascending" header */
.hz-brand-strip {
	background-color: #071627 !important;
	border-top: 1px solid rgba(202, 140, 25, 0.2);
	border-bottom: 1px solid rgba(202, 140, 25, 0.2);
}

.brand-identity-item {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding: 40px 32px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.brand-identity-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(202, 140, 25, 0.3) !important;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.brand-identity-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color));
	transition: width 0.4s ease;
}

.brand-identity-item:hover::after {
	width: 100%;
}

.brand-identity-item .icon-box {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-identity-item .icon-box img {
	max-width: 40px;
	filter: brightness(0) invert(0.85) sepia(1) saturate(2.5) hue-rotate(15deg) !important;
}

.brand-identity-content h3 {
	font-family: 'Space Grotesk', sans-serif !important;
	font-size: 20px !important;
	font-weight: 600 !important;
	color: var(--accent-secondary-color) !important;
	-webkit-text-fill-color: var(--accent-secondary-color) !important;
	background: none !important;
	margin-bottom: 12px;
	animation: none !important;
}

.brand-identity-content p {
	color: rgba(255, 255, 255, 0.7) !important;
	font-size: 15px;
	line-height: 1.7em;
	margin: 0;
}

@media (max-width: 991px) {
	.brand-identity-strip {
		padding: 50px 0;
	}

	.brand-identity-item {
		margin-bottom: 20px;
	}
}

@media (max-width: 767px) {
	.brand-identity-strip {
		padding: 30px 0;
	}

	.brand-identity-item {
		padding: 24px 20px;
		gap: 16px;
		margin-bottom: 20px;
	}

	.brand-identity-item .icon-box {
		width: 40px;
		height: 40px;
	}

	.brand-identity-content h3 {
		font-size: 17px !important;
		margin-bottom: 8px;
	}

	.brand-identity-content p {
		font-size: 14px;
		line-height: 1.6em;
	}
}

@media (max-width: 575px) {
	.brand-identity-strip {
		padding: 24px 0;
	}

	.brand-identity-item {
		padding: 18px 14px;
		gap: 12px;
		margin-bottom: 24px;
	}

	.brand-identity-item .icon-box {
		width: 34px;
		height: 34px;
	}

	.brand-identity-content h3 {
		font-size: 15px !important;
		margin-bottom: 6px;
	}

	.brand-identity-content p {
		font-size: 13px;
		line-height: 1.5em;
	}
}

/* ============================
   CONTINENTAL HORIZON — NEW LAUNCH SECTION
   ============================ */
.horizon-launch {
	background-color: var(--secondary-color) !important;
	background-image: none !important;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.horizon-launch::before {
	content: '';
	position: absolute;
	top: -150px;
	right: -150px;
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(202, 140, 25, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

.horizon-launch-badge {
	display: inline-block;
	background: rgba(15, 57, 92, 0.05) !important;
	color: var(--primary-color) !important;
	border: 1px solid rgba(15, 57, 92, 0.25) !important;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 5px;
	text-transform: uppercase;
	padding: 6px 18px;
	margin-bottom: 16px;
	font-family: var(--accent-font);
	border-radius: 100px;
}

.horizon-launch-logo {
	margin-bottom: 14px;
}

.horizon-launch-logo img {
	max-height: 60px;
	max-width: 200px;
	object-fit: contain;
}

.horizon-launch-tagline {
	display: block;
	font-family: 'STIX Two Text', serif !important;
	font-style: italic;
	color: var(--accent-color) !important;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 8px;
}

.horizon-launch-location {
	display: block;
	color: var(--text-color);
	font-size: 11px;
	letter-spacing: 4px;
	text-transform: uppercase;
	font-family: var(--accent-font);
	font-weight: 600;
	margin-bottom: 18px;
	opacity: 0.6;
}

.horizon-launch-specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 24px;
	padding: 20px 0;
	border-top: 1px solid rgba(15, 57, 92, 0.08) !important;
	border-bottom: 1px solid rgba(15, 57, 92, 0.08) !important;
	margin-bottom: 20px;
}

.horizon-spec-item {
	padding: 10px 15px;
	border-left: 2px solid var(--accent-color);
	transition: all 0.3s ease;
}

.horizon-spec-item:hover {
	border-left-color: var(--primary-color);
	padding-left: 20px;
}

.horizon-spec-item h4 {
	font-family: 'Space Grotesk', sans-serif !important;
	font-size: 24px !important;
	font-weight: 600 !important;
	color: var(--primary-color) !important;
	-webkit-text-fill-color: var(--primary-color) !important;
	line-height: 1.1em;
	margin-bottom: 6px;
}

.horizon-spec-item p {
	color: var(--text-color) !important;
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-family: var(--accent-font);
	font-weight: 600;
	margin: 0;
	opacity: 0.7;
}

.horizon-rera {
	color: var(--text-color) !important;
	font-size: 11px;
	letter-spacing: 1px;
	margin-bottom: 20px;
	font-family: var(--accent-font);
	line-height: 1.7em;
	opacity: 0.8;
}

.horizon-rera span {
	color: var(--primary-color) !important;
	font-weight: 600;
}

.horizon-launch-image {
	position: relative;
	padding: 15px;
}

.horizon-launch-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid rgba(15, 57, 92, 0.15);
	margin: 15px;
	pointer-events: none;
	z-index: 2;
	transition: all 0.4s ease;
}

.horizon-launch-image:hover::before {
	margin: 5px;
	border-color: var(--accent-secondary-color);
}

.horizon-launch-image figure {
	overflow: hidden;
	margin: 0;
	position: relative;
	z-index: 1;
	border-radius: 4px;
}

.horizon-launch-image figure img {
	width: 100%;
	height: 580px;
	object-fit: cover;
	display: block;
	transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.horizon-launch-image figure:hover img {
	transform: scale(1.06);
}

@media (max-width: 1199px) {
	.horizon-launch-image figure img {
		height: 460px;
	}

	.horizon-launch {
		padding: 80px 0;
	}
}

@media (max-width: 991px) {
	.horizon-launch {
		padding: 60px 0 !important;
	}

	.horizon-launch-content {
		text-align: center;
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.horizon-launch {
		padding: 50px 0 !important;
	}

	.horizon-launch-image figure img {
		height: 280px;
	}

	.horizon-launch-specs {
		grid-template-columns: 1fr 1fr;
		gap: 10px 16px;
		padding: 16px 0;
	}

	.horizon-spec-item {
		padding: 8px 12px;
	}

	.horizon-spec-item h4 {
		font-size: 20px !important;
	}

	.horizon-launch-tagline {
		font-size: 15px;
	}

	.horizon-launch-content .btn-default {
		display: block;
		width: fit-content;
		margin: 0 auto;
	}
}

@media (max-width: 575px) {
	.horizon-launch {
		padding: 40px 0 !important;
	}

	.horizon-launch-image figure img {
		height: 220px;
	}

	.horizon-launch-specs {
		gap: 6px 10px;
		padding: 14px 0;
	}

	.horizon-spec-item {
		padding: 6px 10px;
	}

	.horizon-spec-item h4 {
		font-size: 18px !important;
	}

	.horizon-launch .btn-default {
		width: 100%;
		max-width: 320px;
		text-align: center;
		font-size: 14px;
		padding: 14px 30px;
	}
}


/* ============================
   OUR PROPERTIES — BRAND LOGOS STRIP
   ============================ */
.our-brands {
	padding: 100px 0;
	background: #FAF8F5;
}

.brand-property-card {
	text-align: center;
	padding: 60px 40px;
	background: var(--white-color);
	border: 1px solid rgba(15, 57, 92, 0.06);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 10px 30px rgba(15, 57, 92, 0.02);
}

.brand-property-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color));
	transition: width 0.4s ease;
}

.brand-property-card:hover::after {
	width: 100%;
}

.brand-property-card:hover {
	box-shadow: 0 30px 60px rgba(15, 57, 92, 0.09);
	transform: translateY(-8px);
	border-color: rgba(202, 140, 25, 0.2);
}

.brand-property-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
	margin-bottom: 25px;
}

.brand-property-logo img {
	max-height: 80px;
	max-width: 170px;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.brand-property-card:hover .brand-property-logo img {
	transform: scale(1.05);
}

.brand-property-divider {
	width: 50px;
	height: 1px;
	background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color));
	margin: 0 auto 22px;
}

.brand-property-status {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-family: var(--accent-font);
	padding: 6px 20px;
	margin-bottom: 16px;
	border-radius: 100px;
}

.brand-property-status.status-ready {
	background: rgba(15, 57, 92, 0.04);
	color: var(--primary-color);
	border: 1px solid rgba(15, 57, 92, 0.2);
}

.brand-property-status.status-launch {
	background: rgba(202, 140, 25, 0.05);
	color: var(--accent-color);
	border: 1px solid rgba(202, 140, 25, 0.25);
}

.brand-property-location {
	color: var(--text-color);
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: var(--accent-font);
	margin: 0;
	opacity: 0.8;
	font-weight: 500;
}

@media (max-width: 767px) {
	.brand-property-card {
		margin-bottom: 30px;
		padding: 45px 30px;
	}
}

/* ============================================================
   AWWWARDS-LEVEL LUXURY EFFECTS & INTERACTIVE ANIMATIONS
   ============================================================ */

/* 1. MOUSE-TRACKING SPOTLIGHT GLOW */
.brand-identity-strip,
.horizon-launch {
	position: relative;
}

.spotlight-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(202, 140, 25, 0.09) 0%, rgba(202, 140, 25, 0.03) 40%, transparent 70%);
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 1;
	opacity: 0;
	transition: opacity 0.5s ease;
	will-change: left, top;
}

/* 2. NON-CLASHING 3D SCROLL PARALLAX */
.parallax-img {
	transform: scale(1.15) !important;
	will-change: transform;
	transition: none !important;
}

/* 3. LOGO GOLD DIAGONAL SHINE HOVER EFFECT */
.brand-property-logo,
.horizon-launch-logo {
	position: relative;
	overflow: hidden;
}

.brand-property-logo::before,
.horizon-launch-logo::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.3) 50%,
			rgba(255, 255, 255, 0) 100%);
	transform: skewX(-25deg);
	transition: none;
	pointer-events: none;
	z-index: 10;
}

.brand-property-card:hover .brand-property-logo::before,
.horizon-launch:hover .horizon-launch-logo::before {
	animation: goldShine 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes goldShine {
	0% {
		left: -100%;
	}

	100% {
		left: 200%;
	}
}

/* ============================
   LEGACY COUNTER CONTAINER STYLING
   ============================ */
.legacy-counter-section {
	background-color: var(--secondary-color) !important;
	padding-bottom: 80px;
}

.legacy-counter-section .faqs-counter-list {
	margin-top: 0 !important;
	padding-top: 40px !important;
	border-top: 1px solid rgba(15, 57, 92, 0.08) !important;
}

/* ============================
   LOCATION & CONNECTIVITY SECTION
   ============================ */
.location-section {
	padding: 50px 0;
	/* Fallback/Mobile padding */
	background-color: var(--white-color);
	overflow: hidden;
}

@media (min-width: 992px) {
	.location-section {
		height: 100vh !important;
		min-height: 700px !important;
		max-height: 100vh !important;
		padding: 0 !important;
		display: flex !important;
		align-items: center !important;
	}

	.location-layout {
		display: flex;
		height: 100%;
		width: 100vw;
		max-width: 100vw;
	}

	.location-map-col {
		width: 50vw;
		flex: 0 0 50vw;
		display: flex;
		position: relative;
	}

	.location-map-col .location-map-wrapper {
		padding: 0;
		width: 100%;
	}

	.location-map-col .map-interactive-container {
		margin: 0;
		width: 100%;
		height: 100%;
		border-radius: 0;
		border: none;
		box-shadow: none;
		overflow: hidden;
	}

	.location-map-col .location-static-map {
		max-height: none !important;
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 0;
	}

	.location-content-col {
		flex: 1;
		min-width: 0;
		padding: 50px max(15px, calc((100vw - 1500px) / 2 + 15px)) 50px 30px;
	}
}

@media (max-width: 991px) {
	.location-layout {
		display: block;
	}

	.location-section {
		padding: 40px 20px;
	}

	.location-map-col {
		width: 100%;
	}

	.location-content-col {
		width: 100%;
		padding: 25px 0 0;
	}

	.location-section .section-title h2 {
		font-size: 26px !important;
	}

	.map-interactive-container {
		max-height: 380px;
		overflow: hidden;
	}

	.location-static-map {
		max-height: 340px;
	}
}

.location-section .section-title {
	margin-bottom: 12px !important;
}

.location-section .section-title h2 {
	font-size: 32px !important;
	line-height: 1.15em !important;
	letter-spacing: -0.01em;
}

.location-section .location-description {
	margin-bottom: 12px !important;
	font-size: 14px;
	line-height: 1.45em;
}

/* ============================================================
   INTERACTIVE MAP CONNECTOR & POI SYSTEM
   ============================================================ */
.location-map-wrapper {
	position: relative;
	padding: 15px;
}

.map-interactive-container {
	position: relative;
	overflow: visible;
	/* To allow tooltips to float outside */
	border-radius: 12px;
	border: 1px solid rgba(202, 140, 25, 0.18);
	box-shadow: 0 20px 45px rgba(15, 57, 92, 0.08);
	background: var(--white-color);
	margin: 0 auto;
	max-width: 100%;
	width: fit-content;
	/* Shrink-wrap image boundaries */
	cursor: crosshair;
	/* Developer click-to-pin pointer */
}

.location-static-map {
	max-width: 100%;
	max-height: 420px;
	/* Fit map in desktop viewport */
	width: auto;
	height: auto;
	display: block;
	border-radius: 11px;
}

.location-map-svg-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 5;
}

.map-connector-line {
	stroke: var(--accent-color);
	stroke-width: 1px;
	stroke-dasharray: 5, 4;
	stroke-linecap: round;
	opacity: 0;
	filter: drop-shadow(0 0 2px rgba(202, 140, 25, 0.4));
	animation: draw-and-dash 0.6s ease-out forwards, dash-animation 25s linear infinite;
}

@keyframes draw-and-dash {
	from {
		opacity: 0;
		stroke-dashoffset: 50;
	}

	to {
		opacity: 0.85;
		stroke-dashoffset: 0;
	}
}

@keyframes dash-animation {
	to {
		stroke-dashoffset: -200;
	}
}

/* Glowing Hotspots */
.map-hotspot-pin {
	position: absolute;
	transform: translate(-50%, -50%);
	cursor: pointer;
	z-index: 10;
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.map-hotspot-pin:hover,
.map-hotspot-pin.active {
	transform: translate(-50%, -50%) scale(1.2);
	z-index: 12;
}

.map-hotspot-pin .pin-marker {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--white-color);
	border: 2px solid var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	font-size: 11px;
	box-shadow: 0 4px 10px rgba(15, 57, 92, 0.12);
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

/* Project Anchors (Heights & Horizon) */
.map-hotspot-pin.project-pin .pin-marker {
	background: var(--white-color);
	color: var(--white-color);
	width: 38px;
	height: 38px;
	border-color: var(--accent-color);
	box-shadow: 0 4px 12px rgba(202, 140, 25, 0.3);
}

/* Styling for brand logo SVGs inside map pins */
.map-hotspot-pin.project-pin .pin-marker svg {
	width: 24px;
	height: 24px;
	transition: all 0.3s ease;
	display: block;
}

.map-hotspot-pin.project-pin .pin-marker svg path {
	stroke: var(--accent-color) !important;
	fill: var(--accent-color) !important;
	stroke-width: 0.5px !important;
	transition: all 0.3s ease;
}

/* On hover/active states */
.map-hotspot-pin.project-pin:hover .pin-marker svg path,
.map-hotspot-pin.project-pin.active .pin-marker svg path {
	stroke: var(--white-color) !important;
	fill: var(--white-color) !important;
}

.map-hotspot-pin.active .pin-marker,
.map-hotspot-pin:hover .pin-marker {
	background: var(--accent-color);
	color: var(--white-color);
	border-color: var(--white-color);
}

.map-hotspot-pin.project-pin.active .pin-marker,
.map-hotspot-pin.project-pin:hover .pin-marker {
	background: var(--accent-color);
	color: var(--white-color);
	border-color: var(--white-color);
	box-shadow: 0 4px 15px rgba(202, 140, 25, 0.5);
}

/* Pulse Glow Rings */
.map-hotspot-pin .pulse-halo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid var(--accent-color);
	opacity: 0;
	z-index: 1;
	pointer-events: none;
}

.map-hotspot-pin:hover .pulse-halo,
.map-hotspot-pin.active .pulse-halo {
	animation: pin-pulse-glow 1.6s ease-out infinite;
}

@keyframes pin-pulse-glow {
	0% {
		transform: translate(-50%, -50%) scale(0.6);
		opacity: 0.8;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.8);
		opacity: 0;
	}
}

/* Tooltips */
.map-hotspot-pin .pin-tooltip {
	position: absolute;
	bottom: 135%;
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	width: 230px;
	background: rgba(15, 57, 92, 0.96);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(202, 140, 25, 0.4);
	border-radius: 8px;
	padding: 12px 14px;
	color: var(--white-color);
	box-shadow: 0 10px 30px rgba(15, 57, 92, 0.25);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
	z-index: 100;
	text-align: left;
}

.map-hotspot-pin:hover .pin-tooltip,
.map-hotspot-pin.active .pin-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.map-hotspot-pin .pin-tooltip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-width: 6px;
	border-style: solid;
	border-color: rgba(15, 57, 92, 0.96) transparent transparent transparent;
}

.pin-tooltip .tooltip-title {
	display: block;
	font-family: var(--accent-font);
	font-size: 13px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 3px;
	text-align: center;
}

.pin-tooltip .tooltip-tag {
	display: block;
	font-size: 10px;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.pin-tooltip .tooltip-details {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 7px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 7px;
}

.pin-tooltip .tooltip-detail {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.85);
	display: flex;
	align-items: center;
	gap: 6px;
}

.pin-tooltip .tooltip-detail i {
	color: var(--accent-color);
	width: 12px;
	font-size: 10px;
}

/* Category Filters */
.poi-filter-tabs {
	display: flex;
	gap: 16px;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(15, 57, 92, 0.08);
	padding-bottom: 2px;
	overflow-x: auto;
	scrollbar-width: none;
}

.poi-filter-tabs::-webkit-scrollbar {
	display: none;
}

.filter-tab-btn {
	background: none;
	border: none;
	font-family: var(--accent-font);
	font-size: 13px;
	font-weight: 700;
	color: rgba(15, 57, 92, 0.5);
	padding: 8px 3px 12px 3px;
	position: relative;
	cursor: pointer;
	transition: color 0.3s ease;
	white-space: nowrap;
	letter-spacing: 0.5px;
}

.filter-tab-btn:hover,
.filter-tab-btn.active {
	color: var(--primary-color);
}

.tab-indicator-line {
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent-color);
	border-radius: 2px;
}

/* Card Distance details */
.poi-distances {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
	border-top: 1px solid rgba(15, 57, 92, 0.05);
	padding-top: 10px;
	width: 100%;
	justify-content: center;
}

.poi-distances .dist-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.poi-distances .dist-label {
	font-size: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: rgba(15, 57, 92, 0.45);
	font-weight: 700;
	margin-bottom: 1px;
}

.poi-distances .dist-val {
	font-size: 11px;
	font-weight: 700;
	color: var(--accent-color);
}

.poi-distances .dist-divider {
	color: rgba(15, 57, 92, 0.12);
	font-size: 11px;
}

/* Faded state for non-active categories */
.map-hotspot-pin.poi-pin.faded {
	opacity: 0.12;
	pointer-events: none;
}

.map-hotspot-pin.poi-pin.visible {
	opacity: 1;
	pointer-events: auto;
}

/* VR Card Idle Floating Parallax Effect */
@keyframes luxury-card-idle-float {
	0% {
		transform: perspective(1000px) rotateX(-1.5deg) rotateY(-1.5deg) scale(1.12);
	}

	50% {
		transform: perspective(1000px) rotateX(1.5deg) rotateY(1.5deg) scale(1.12);
	}

	100% {
		transform: perspective(1000px) rotateX(-1.5deg) rotateY(-1.5deg) scale(1.12);
	}
}

.luxury-card-img:not([style*="transform"]) {
	animation: luxury-card-idle-float 8s ease-in-out infinite alternate;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.location-section {
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		padding: 50px 0 !important;
		overflow: hidden;
		/* Prevent horizontal page scroll */
	}

	.location-map-wrapper {
		margin-bottom: 40px;
	}

	.location-content-col {
		padding: 10px 0 0 !important;
	}

	.connectivity-grid {
		gap: 8px !important;
	}

	.map-hotspot-pin .pin-tooltip {
		width: 190px;
		padding: 10px 12px;
	}

	.pin-tooltip .tooltip-detail {
		font-size: 10px;
	}
}

@media (max-width: 767px) {

	/* Hide map hover tooltips on mobile touch screens to prevent viewport breakout and visual clutter */
	.map-hotspot-pin .pin-tooltip {
		display: none !important;
	}

	.location-section {
		padding: 30px 15px;
	}

	.map-interactive-container {
		max-height: 320px;
	}

	.location-static-map {
		max-height: 280px;
	}

	.location-map-wrapper {
		padding: 10px;
		margin-bottom: 20px;
	}

	.connectivity-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.connectivity-card {
		padding: 8px 6px;
	}

	.connectivity-card .card-icon {
		width: 32px;
		height: 32px;
		font-size: 13px;
	}

	.connectivity-card h4 {
		font-size: 12px !important;
	}
}

@media (max-width: 575px) {
	.location-section {
		padding: 20px 10px;
	}

	.location-map-col {
		margin-bottom: 0;
	}

	.map-interactive-container {
		max-height: 220px;
		border-radius: 8px;
	}

	.location-static-map {
		max-height: 200px;
	}

	.location-map-wrapper {
		padding: 4px;
		margin-bottom: 20px !important;
	}

	.location-section .section-title h2 {
		font-size: 20px !important;
		margin-bottom: 6px;
	}

	.location-section .section-title h3 {
		font-size: 12px !important;
		margin-bottom: 6px;
	}

	.location-description {
		font-size: 13px !important;
		line-height: 1.5em !important;
		margin-bottom: 14px !important;
	}

	.location-content-col {
		padding: 0 !important;
	}

	.connectivity-grid {
		gap: 6px !important;
		margin-top: 8px;
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.connectivity-card {
		padding: 6px 4px;
	}

	.connectivity-card .card-icon {
		width: 28px;
		height: 28px;
		font-size: 11px;
	}

	.connectivity-card h4 {
		font-size: 10px !important;
	}

	.poi-filter-tabs {
		gap: 8px;
		margin-bottom: 10px;
	}

	.filter-tab-btn {
		font-size: 10px;
		padding: 5px 2px 8px 2px;
	}

	.poi-distances {
		gap: 8px;
		padding-top: 8px;
		margin-top: 6px;
		flex-wrap: wrap;
	}

	.poi-distances .dist-val {
		font-size: 10px;
	}

	.poi-distances .dist-label {
		font-size: 7px;
	}
}

@media (max-width: 400px) {
	.connectivity-grid {
		grid-template-columns: 1fr !important;
		gap: 8px;
	}
}

@media (max-width: 600px) {
	.connectivity-grid {
		gap: 10px;
	}

	.poi-distances {
		flex-wrap: wrap;
		gap: 6px 10px;
	}
}

@media (max-width: 575px) {
	.map-hotspot-pin .pin-marker {
		width: 24px;
		height: 24px;
		font-size: 10px;
	}

	.map-hotspot-pin.project-pin .pin-marker {
		width: 30px;
		height: 30px;
		font-size: 11px;
	}
}

.location-description {
	font-size: 16px;
	line-height: 1.8em;
	color: var(--text-color);
	margin-bottom: 35px;
	opacity: 0.85;
}

.connectivity-timeline {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.timeline-item {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding: 15px 20px;
	border-left: 2px solid rgba(15, 57, 92, 0.1);
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-item:hover {
	border-left-color: var(--accent-color);
	background: rgba(15, 57, 92, 0.02);
	transform: translateX(5px);
}

.timeline-time {
	flex-shrink: 0;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--accent-color);
	letter-spacing: 1px;
	text-transform: uppercase;
	width: 80px;
	padding-top: 2px;
}

.timeline-details h4 {
	font-size: 17px !important;
	font-weight: 600 !important;
	color: var(--primary-color) !important;
	margin-bottom: 4px;
	-webkit-text-fill-color: var(--primary-color) !important;
	background: none !important;
}

.timeline-details p {
	font-size: 14px;
	line-height: 1.6em;
	color: var(--text-color);
	margin: 0;
	opacity: 0.8;
}

/* ============================
   CONTINENTAL HEIGHTS SHOWCASE SECTION
   ============================ */
.heights-launch {
	background-color: var(--secondary-color) !important;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.heights-launch-badge {
	display: inline-block;
	background: rgba(15, 57, 92, 0.05) !important;
	color: var(--primary-color) !important;
	border: 1px solid rgba(15, 57, 92, 0.25) !important;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 5px;
	text-transform: uppercase;
	padding: 6px 18px;
	margin-bottom: 16px;
	font-family: var(--accent-font);
	border-radius: 100px;
}

.heights-launch-content .brand-property-logo {
	margin-bottom: 14px;
	justify-content: flex-start;
	height: auto;
	min-height: auto;
}

.heights-launch-content .brand-property-logo img {
	max-height: 55px;
	max-width: 200px;
	object-fit: contain;
}

.heights-launch-tagline {
	display: block;
	font-family: 'STIX Two Text', serif !important;
	font-style: italic;
	color: var(--accent-color) !important;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 8px;
}

.heights-launch-location {
	display: block;
	color: var(--text-color);
	font-size: 11px;
	letter-spacing: 4px;
	text-transform: uppercase;
	font-family: var(--accent-font);
	font-weight: 600;
	margin-bottom: 18px;
	opacity: 0.6;
}

.heights-launch-specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 24px;
	padding: 20px 0;
	border-top: 1px solid rgba(15, 57, 92, 0.08) !important;
	border-bottom: 1px solid rgba(15, 57, 92, 0.08) !important;
	margin-bottom: 20px;
}

.heights-spec-item {
	padding: 10px 15px;
	border-left: 2px solid var(--accent-color);
	transition: all 0.3s ease;
}

.heights-spec-item:hover {
	border-left-color: var(--primary-color);
	padding-left: 20px;
}

.heights-spec-item h4 {
	font-family: 'Space Grotesk', sans-serif !important;
	font-size: 24px !important;
	font-weight: 600 !important;
	color: var(--primary-color) !important;
	-webkit-text-fill-color: var(--primary-color) !important;
	line-height: 1.1em;
	margin-bottom: 6px;
}

.heights-spec-item p {
	color: var(--text-color) !important;
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-family: var(--accent-font);
	font-weight: 600;
	margin: 0;
	opacity: 0.7;
}

.heights-rera {
	color: var(--text-color) !important;
	font-size: 11px;
	letter-spacing: 1px;
	margin-bottom: 20px;
	font-family: var(--accent-font);
	line-height: 1.7em;
	opacity: 0.8;
}

.heights-rera span {
	color: var(--primary-color) !important;
	font-weight: 600;
}

.heights-launch-image {
	position: relative;
	padding: 15px;
}

.heights-launch-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid rgba(15, 57, 92, 0.15);
	margin: 15px;
	pointer-events: none;
	z-index: 2;
	transition: all 0.4s ease;
}

.heights-launch-image:hover::before {
	margin: 5px;
	border-color: var(--accent-color);
}

.heights-launch-image figure {
	overflow: hidden;
	margin: 0;
	position: relative;
	z-index: 1;
	border-radius: 4px;
	box-shadow: 0 15px 40px rgba(15, 57, 92, 0.05);
}

.heights-launch-image figure img {
	width: 100%;
	height: 580px;
	object-fit: cover;
	display: block;
	transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.heights-launch-image figure:hover img {
	transform: scale(1.06);
}

@media (max-width: 1199px) {
	.heights-launch-image figure img {
		height: 460px;
	}

	.heights-launch {
		padding: 80px 0;
	}

	.location-map-wrapper figure img {
		height: 420px;
	}
}

@media (max-width: 991px) {
	.heights-launch {
		padding: 60px 0 !important;
	}

	.heights-launch-content .brand-property-logo {
		justify-content: center;
	}

	.heights-launch-content {
		text-align: center;
		margin-bottom: 40px;
	}

	.heights-launch .d-flex.flex-wrap.gap-2 {
		justify-content: center;
	}

	.heights-spec-item {
		text-align: left;
	}
}

@media (max-width: 767px) {
	.heights-launch {
		padding: 50px 0 !important;
	}

	.heights-launch-image figure img {
		height: 280px;
	}

	.heights-launch-specs {
		grid-template-columns: 1fr 1fr;
		gap: 10px 16px;
		padding: 16px 0;
	}

	.heights-spec-item {
		padding: 8px 12px;
	}

	.heights-spec-item h4 {
		font-size: 20px !important;
	}

	.heights-launch-tagline {
		font-size: 15px;
	}

	.showcase-logo-title {
		font-size: 26px !important;
	}

	.showcase-logo-title .logo-title-sub {
		font-size: 18px;
	}

	.location-map-wrapper figure img {
		height: 300px;
	}
}

@media (max-width: 575px) {
	.heights-launch {
		padding: 40px 0 !important;
	}

	.heights-launch-image figure img {
		height: 220px;
	}

	.heights-launch-specs {
		gap: 6px 10px;
		padding: 14px 0;
	}

	.heights-spec-item {
		padding: 6px 10px;
	}

	.heights-spec-item h4 {
		font-size: 18px !important;
	}

	.heights-launch .d-flex.flex-wrap.gap-2 {
		flex-direction: column;
		align-items: center;
	}

	.heights-launch .btn-default {
		width: 100%;
		max-width: 320px;
		text-align: center;
		font-size: 14px;
		padding: 14px 30px;
	}

	.showcase-logo-title {
		font-size: 22px !important;
	}

	.showcase-logo-title .logo-title-sub {
		font-size: 16px;
	}
}

/* ============================================================
   SVG LOGO OUTLINE DRAWING & FILL STYLING
   ============================================================ */
.svg-draw-logo {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}

.brand-property-card:hover .svg-draw-logo {
	transform: scale(1.05);
}

/* Base Dimensions in Showcase sections */
.heights-launch-content .brand-property-logo .svg-logo-heights {
	max-height: 55px;
	max-width: 200px;
}

.horizon-launch-logo .svg-logo-horizon {
	max-height: 60px;
	max-width: 200px;
}

/* Dimensions in Our Properties Strip cards */
.brand-property-card .brand-property-logo .svg-logo-heights {
	max-height: 80px;
	max-width: 180px;
}

.brand-property-card .brand-property-logo .svg-logo-horizon {
	max-height: 80px;
	max-width: 180px;
}

/* Outline Drawing Setup */
.svg-draw-logo path {
	stroke: var(--accent-color);
	stroke-width: 1.5px;
	fill: rgba(230, 169, 18, 0);
	transition: fill 0.8s ease-in-out, stroke 0.8s ease-in-out, stroke-width 0.8s ease-in-out;
}

/* Logo titles under SVG Marks */
.showcase-logo-title {
	font-family: 'STIX Two Text', serif !important;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 32px;
	letter-spacing: 2px;
	margin-bottom: 8px;
	text-align: left;
}

/* Heights Light Theme Content Styling */
.heights-launch-content .showcase-logo-title {
	color: var(--primary-color) !important;
}

.heights-launch-content .heights-launch-tagline {
	display: block;
	font-family: 'STIX Two Text', serif !important;
	font-style: italic !important;
	color: var(--accent-color) !important;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 12px;
	text-transform: lowercase;
}

/* Horizon Light Theme Content Styling */
.horizon-launch-content .showcase-logo-title {
	color: var(--primary-color) !important;
}

.horizon-launch-content .horizon-launch-tagline {
	display: block;
	font-family: 'STIX Two Text', serif !important;
	font-style: italic !important;
	color: var(--accent-color) !important;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 12px;
	text-transform: lowercase;
}

/* Card titles in Our Properties Strip */
.card-logo-title {
	font-family: 'STIX Two Text', serif !important;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 22px;
	letter-spacing: 1.5px;
	color: var(--primary-color) !important;
	margin-top: 15px;
	margin-bottom: 12px;
	text-align: center;
}

@media (max-width: 991px) {
	.showcase-logo-title {
		text-align: center;
	}
}

/* ============================================================
   CENTERED SHOWCASE BRAND HEADER CONTAINERS
   ============================================================ */
.showcase-brand-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 35px;
	width: 100%;
}

.showcase-brand-header .brand-property-logo,
.showcase-brand-header .horizon-launch-logo {
	justify-content: center !important;
	margin-bottom: 20px;
	width: 100%;
	display: flex;
}

.showcase-brand-header .showcase-logo-title {
	text-align: center !important;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 12px;
}

.showcase-brand-header .heights-launch-tagline,
.showcase-brand-header .horizon-launch-tagline,
.showcase-brand-header .heights-launch-location,
.showcase-brand-header .horizon-launch-location {
	text-align: center !important;
	width: 100%;
}

/* ============================================================
   HERO CARD ROTATING SLIDES STYLING
   ============================================================ */
.rotating-card {
	position: relative;
}

.rotating-card-label {
	font-family: var(--accent-font);
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--accent-color);
	font-weight: 700;
	margin-bottom: 18px;
}

.rotating-slides-container {
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto;
	width: 100%;
	overflow: hidden;
}

.rotating-slide {
	grid-column: 1;
	grid-row: 1;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transform: translateY(24px) scale(0.96);
	transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
	            transform 0.8s cubic-bezier(0.22,1,0.36,1),
	            visibility 0.8s cubic-bezier(0.22,1,0.36,1);
}

.rotating-slide.active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	transform: translateY(0) scale(1);
}

/* ============================================================
   SHOWCASE SECTION LAYOUT — HEIGHTS & HORIZON
   Strict 100vh split-screen: content left/right, image fills other half
   ============================================================ */

/* ── Section container: locked to viewport height ── */
.heights-launch,
.horizon-launch {
	padding: 120px 0;
	overflow: hidden;
}

/* ── Content column layout ── */
.heights-launch-content,
.horizon-launch-content {
	padding: 40px 56px;
	height: 100%;
}

.heights-launch-content {
	padding: 40px 56px 40px 72px;
}

.horizon-launch-content {
	padding: 40px 72px 40px 56px;
}

/* ── Image column ── */
.heights-launch-image,
.horizon-launch-image {
	position: relative;
	overflow: hidden;
}

.heights-launch-image figure.image-anime.reveal img,
.horizon-launch-image figure.image-anime.reveal img {
	width: 100%;
	object-fit: cover;
}

/* ── Mobile / Tablet: stack vertically, auto height ── */
@media (max-width: 1199px) {

	.heights-launch,
	.horizon-launch {
		padding: 60px 0;
	}

	.heights-launch .row.g-0,
	.horizon-launch .row.g-0 {
		height: auto !important;
		flex-wrap: wrap !important;
	}

	.heights-launch .row.g-0>.col-xl-6,
	.horizon-launch .row.g-0>.col-xl-6 {
		width: 100% !important;
		flex: 0 0 100% !important;
		max-width: 100% !important;
		height: auto !important;
	}

	.heights-launch-content,
	.horizon-launch-content {
		padding: 50px 30px;
		overflow-y: visible;
		height: auto;
	}

	.heights-launch-image,
	.horizon-launch-image {
		height: 360px !important;
		position: relative !important;
		padding: 0 !important;
	}

	.heights-launch-image figure.image-anime.reveal,
	.horizon-launch-image figure.image-anime.reveal {
		height: 100% !important;
	}

	.heights-launch-image figure.image-anime.reveal img,
	.horizon-launch-image figure.image-anime.reveal img {
		min-height: 360px !important;
	}
}

@media (max-width: 767px) {

	.heights-launch-content,
	.horizon-launch-content {
		padding: 40px 20px;
	}

	.heights-launch-image,
	.horizon-launch-image {
		height: 280px !important;
	}

	.heights-launch-image figure.image-anime.reveal img,
	.horizon-launch-image figure.image-anime.reveal img {
		min-height: 280px !important;
	}
}

/* Digital Experience Section — see new styles below */

.digital-experience-section::before {
	content: '';
	position: absolute;
	top: -200px;
	left: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(202, 140, 25, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.digital-experience-content {
	padding-right: 40px;
}

.digital-experience-badge {
	display: inline-block;
	background: rgba(15, 57, 92, 0.04) !important;
	color: var(--primary-color) !important;
	border: 1px solid rgba(15, 57, 92, 0.2) !important;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 4px;
	text-transform: uppercase;
	padding: 7px 20px;
	margin-bottom: 25px;
	font-family: var(--accent-font);
	border-radius: 100px;
}

.digital-experience-title {
	color: var(--primary-color) !important;
	font-size: 42px !important;
	font-weight: 500 !important;
	line-height: 1.2em !important;
	margin-bottom: 25px;
	letter-spacing: 1px;
}

.digital-experience-desc {
	color: var(--text-color) !important;
	font-size: 16px;
	line-height: 1.8em;
	margin-bottom: 40px;
	opacity: 0.9;
}

.digital-experience-desc strong {
	color: var(--accent-color);
}

.digital-experience-features {
	margin-bottom: 40px;
}

.dx-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
	transition: transform 0.3s ease;
}

.dx-feature-item:hover {
	transform: translateX(5px);
}

.dx-feature-icon {
	width: 50px;
	height: 50px;
	background: rgba(15, 57, 92, 0.04);
	border: 1px solid rgba(15, 57, 92, 0.15);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	font-size: 20px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.dx-feature-item:hover .dx-feature-icon {
	background: rgba(202, 140, 25, 0.1);
	border-color: var(--accent-color);
}

.dx-feature-info h4 {
	font-family: var(--accent-font);
	font-size: 18px !important;
	font-weight: 600 !important;
	color: var(--primary-color) !important;
	margin-bottom: 6px;
}

.dx-feature-info p {
	color: var(--text-color) !important;
	font-size: 14px;
	line-height: 1.6em;
	margin: 0;
	opacity: 0.8;
}

.digital-experience-actions {
	margin-top: 20px;
}

.btn-gold-outline {
	background: transparent !important;
	border: 1px solid var(--accent-color) !important;
	color: var(--accent-color) !important;
	transition: all 0.4s ease !important;
}

.btn-gold-outline:hover {
	background: var(--accent-color) !important;
	color: var(--secondary-color) !important;
	border-color: var(--accent-color) !important;
}

/* Interactive Video Styling */
.digital-experience-video-wrapper {
	padding: 15px;
	position: relative;
}

.dx-video-container {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(15, 57, 92, 0.06);
	border: 1px solid rgba(15, 57, 92, 0.05);
}

.dx-video-container figure {
	margin: 0;
}

.dx-video-container img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
	transition: transform 1.5s ease;
}

.dx-video-container:hover img {
	transform: scale(1.05);
}

.dx-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(15, 57, 92, 0.4) 0%, rgba(15, 57, 92, 0.1) 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.dx-play-btn-pulse {
	position: relative;
	margin-bottom: 15px;
}

.dx-play-btn-pulse::before,
.dx-play-btn-pulse::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	animation: dxPulse 2s infinite linear;
	opacity: 0;
	pointer-events: none;
}

.dx-play-btn-pulse::after {
	animation-delay: 1s;
}

.dx-play-trigger {
	width: 90px;
	height: 90px;
	background: var(--accent-color) !important;
	color: var(--white-color) !important;
	border: none !important;
	border-radius: 50%;
	display: flex !important;
	align-items: center;
	justify-content: center;
	font-size: 28px !important;
	transition: all 0.4s ease !important;
	box-shadow: 0 10px 25px rgba(202, 140, 25, 0.3);
}

.dx-play-trigger:hover {
	background: var(--primary-color) !important;
	color: var(--white-color) !important;
	transform: scale(1.08);
	box-shadow: 0 15px 30px rgba(15, 57, 92, 0.3);
}

.dx-play-label {
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 13px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 600;
	margin-top: 10px;
	opacity: 0.9;
	transition: color 0.3s ease;
}

.dx-video-container:hover .dx-play-label {
	color: var(--accent-secondary-color);
}

@keyframes dxPulse {
	0% {
		transform: scale(0.9);
		opacity: 0.8;
	}

	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

/* Responsiveness for VR Section */
@media (max-width: 1199px) {
	.digital-experience-section {
		padding: 80px 0;
	}

	.digital-experience-content {
		padding-right: 0;
		margin-bottom: 50px;
		text-align: center;
	}

	.dx-feature-item {
		text-align: left;
	}

	.digital-experience-actions {
		display: flex;
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.digital-experience-section {
		padding: 60px 0;
	}

	.digital-experience-title {
		font-size: 32px !important;
	}

	.dx-play-trigger {
		width: 75px;
		height: 75px;
		font-size: 20px;
	}
}

/* ============================================================
   POI CONNECTIVITY GRID LAYOUT (REFINED FOR COMPACT VIEWPORT)
   ============================================================ */
.connectivity-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 15px;
}

@media (max-width: 991px) {
	.connectivity-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
}

@media (max-width: 600px) {
	.connectivity-grid {
		grid-template-columns: 1fr !important;
		gap: 15px;
	}
}

.connectivity-card {
	background: var(--white-color);
	border: 1px solid rgba(15, 57, 92, 0.05);
	border-radius: 12px;
	padding: 10px 8px;
	/* Compact padding */
	text-align: center;
	box-shadow: 0 10px 30px rgba(15, 57, 92, 0.02);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	/* Compact gap */
}

.connectivity-card:hover {
	transform: translateY(-3px);
	border-color: var(--accent-color);
	box-shadow: 0 10px 25px rgba(202, 140, 25, 0.06);
	background: rgba(202, 140, 25, 0.02);
}

.connectivity-card .card-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(15, 57, 92, 0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	font-size: 15px;
	transition: all 0.4s ease;
}

.connectivity-card:hover .card-icon {
	background: var(--accent-color);
	color: var(--white-color);
	transform: rotate(360deg);
}

.connectivity-card h4 {
	font-family: var(--accent-font);
	font-size: 13px !important;
	/* Denser text */
	font-weight: 700 !important;
	color: var(--primary-color) !important;
	-webkit-text-fill-color: var(--primary-color) !important;
	margin: 0;
	line-height: 1.3em;
}

.dev-coords-pill {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(15, 57, 92, 0.92);
	color: var(--white-color);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-family: monospace;
	border: 1px solid var(--accent-color);
	z-index: 100;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	transition: all 0.2s ease;
}

.dev-coords-pill:hover {
	background: var(--accent-color);
	transform: translateX(-50%) scale(1.05);
}

/* ============================================================
   DESKTOP REINFORCEMENTS FOR SHOWCASE LAUNCHES
   ============================================================ */
@media (min-width: 1200px) {

	/* Buttons, specs, headers — don't shrink in flex column */
	.heights-launch-content .btn-default,
	.horizon-launch-content .btn-default {
		width: fit-content !important;
		align-self: flex-start !important;
		flex-shrink: 0 !important;
	}

	.heights-launch-specs,
	.horizon-launch-specs {
		gap: 15px 30px !important;
		padding: 20px 0 !important;
		margin-bottom: 20px !important;
		flex-shrink: 0 !important;
	}

	.showcase-brand-header {
		margin-bottom: 20px !important;
		flex-shrink: 0 !important;
	}

	.heights-rera,
	.horizon-rera {
		margin-bottom: 20px !important;
		flex-shrink: 0 !important;
	}

	/* Image fills column absolutely — no min-height needed */
	.heights-launch-image figure.image-anime.reveal img,
	.horizon-launch-image figure.image-anime.reveal img {
		min-height: unset !important;
		height: 100% !important;
	}
}

/* ============================================================
   SPLIT BRAND LOGO TYPOGRAPHY STYLE (CONVENTION)
   ============================================================ */
.showcase-logo-title .logo-title-main {
	display: block;
	font-size: 32px;
	line-height: 1.2em;
}

.showcase-logo-title .logo-title-sub {
	display: block;
	font-size: 22px;
	font-weight: 400;
	text-transform: uppercase;
	margin-top: 6px;
	color: var(--accent-color) !important;
}

.card-logo-title .logo-title-main {
	display: block;
	font-size: 22px;
	line-height: 1.2em;
}

.card-logo-title .logo-title-sub {
	display: block;
	font-size: 22px;
	font-weight: 400;
	text-transform: uppercase;
	margin-top: 4px;
	color: var(--accent-color) !important;
}

/* hero-animated-title is position:fixed (managed by Framer Motion JS) — do NOT override here */

/* ============================================================
   DIGITAL EXPERIENCE SECTION — Dramatic Dark Canvas Showroom
   ============================================================ */

/* ── Section wrapper ── */
.digital-experience-section {
	position: relative;
	overflow: hidden;
	background-color: var(--primary-color) !important;
	background-image: url('/images/dark-section-bg-shape.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 0;
	border-top: none !important;
	border-bottom: none !important;
	/* Border bars are handled by .dx-section-bar */
}

/* Kill the old ::before radial gradient that created a light ivory bleed */
.digital-experience-section::before {
	display: none !important;
}

/* ── Living canvas particle constellation ── */
.dx-constellation-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	opacity: 0.7;
}

/* ── Gold top/bottom divider bars (create the visual "cage" that signals a new world) ── */
.dx-section-bar {
	width: 100%;
	height: 3px;
	background: linear-gradient(to right,
			transparent 0%,
			rgba(202, 140, 25, 0.15) 10%,
			var(--accent-color) 40%,
			var(--accent-secondary-color) 50%,
			var(--accent-color) 60%,
			rgba(202, 140, 25, 0.15) 90%,
			transparent 100%);
	position: relative;
	z-index: 3;
}

/* ── Section inner padding (container sits between the two bars) ── */
.digital-experience-section .container {
	padding-top: 80px;
	padding-bottom: 80px;
}

/* ── Section header ── */
.dx-section-header {
	margin-bottom: 20px;
}

/* ── Horizontal gold rule divider between header and showroom grid ── */
.dx-rule {
	width: 100%;
	height: 1px;
	background: linear-gradient(to right,
			transparent,
			rgba(202, 140, 25, 0.3) 20%,
			rgba(202, 140, 25, 0.5) 50%,
			rgba(202, 140, 25, 0.3) 80%,
			transparent);
	margin: 40px 0 50px;
}

/* ── Badge ── */
.digital-experience-badge {
	display: inline-block;
	background: rgba(202, 140, 25, 0.08) !important;
	border: 1px solid rgba(202, 140, 25, 0.35) !important;
	color: var(--accent-secondary-color) !important;
	font-size: 11px;
	font-family: var(--default-font) !important;
	font-weight: 600;
	padding: 7px 20px;
	letter-spacing: 2.5px;
	border-radius: 100px;
	margin-bottom: 22px;
	text-transform: uppercase;
}

/* ── Main heading ── */
.digital-experience-title {
	color: var(--white-color) !important;
	font-size: clamp(34px, 4vw, 56px) !important;
	font-weight: 400 !important;
	letter-spacing: -0.02em !important;
	line-height: 1.1em !important;
	margin-bottom: 18px !important;
	font-family: "STIX Two Text", "Cormorant Garamond", Georgia, serif !important;
	font-style: italic;
}

/* ── Sub description ── */
.digital-experience-desc {
	color: rgba(255, 255, 255, 0.65) !important;
	font-size: 16px !important;
	line-height: 1.75em !important;
	font-family: var(--default-font) !important;
	margin-bottom: 0 !important;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

/* ── Showroom content column ── */
.dx-showroom-content {
	gap: 24px;
}

/* ── BHK Suite Selector Tabs ── */
.dx-bhk-tabs {
	display: flex;
	gap: 6px;
	margin-bottom: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 0;
}

.dx-bhk-tab-btn {
	background: transparent !important;
	border: none !important;
	border-bottom: 2px solid transparent !important;
	color: rgba(255, 255, 255, 0.45) !important;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	padding: 12px 16px 14px !important;
	transition: all 0.3s ease;
	position: relative;
	box-shadow: none !important;
	margin-bottom: -1px;
}

.dx-bhk-tab-btn .bhk-num {
	font-family: "STIX Two Text", "Cormorant Garamond", Georgia, serif !important;
	font-style: italic;
	font-size: 18px;
	color: rgba(202, 140, 25, 0.5);
	transition: color 0.3s ease;
	line-height: 1;
}

.dx-bhk-tab-btn .bhk-label {
	font-family: var(--default-font) !important;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.dx-bhk-tab-btn:hover {
	color: rgba(255, 255, 255, 0.85) !important;
}

.dx-bhk-tab-btn.active {
	color: var(--white-color) !important;
	border-bottom-color: var(--accent-color) !important;
}

.dx-bhk-tab-btn.active .bhk-num {
	color: var(--accent-color) !important;
}

/* ── Suite header (title + tagline) ── */
.dx-bhk-header {
	padding: 4px 0;
}

.dx-bhk-title {
	color: var(--white-color) !important;
	font-size: 28px !important;
	font-weight: 400 !important;
	margin-bottom: 6px !important;
	font-family: "STIX Two Text", "Cormorant Garamond", Georgia, serif !important;
	font-style: italic;
	line-height: 1.2em;
}

.dx-bhk-tagline {
	color: var(--accent-secondary-color) !important;
	font-size: 12px !important;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--default-font) !important;
	margin-bottom: 0 !important;
}

/* ── Room navigation pills ── */
.dx-room-links-container {
	padding: 4px 0;
}

.dx-room-links-container .room-nav-label {
	font-family: var(--default-font) !important;
	font-size: 11px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.dx-room-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dx-room-link {
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: rgba(255, 255, 255, 0.65) !important;
	border-radius: 100px;
	padding: 9px 20px !important;
	cursor: pointer;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
	box-shadow: none !important;
	font-family: var(--default-font) !important;
	font-weight: 500;
}

.dx-room-link:hover {
	border-color: rgba(202, 140, 25, 0.4) !important;
	color: var(--white-color) !important;
	background: rgba(202, 140, 25, 0.06) !important;
}

.dx-room-link.active {
	background: rgba(202, 140, 25, 0.14) !important;
	border-color: var(--accent-color) !important;
	color: var(--accent-secondary-color) !important;
	font-weight: 600;
}

/* ── Architectural Spec Sheet ── */
.dx-spec-sheet {
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 12px;
	padding: 22px 24px;
}

.spec-sheet-header {
	font-family: var(--default-font) !important;
	font-size: 11px;
	font-weight: 700;
	color: var(--accent-secondary-color);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	padding-bottom: 12px;
}

.spec-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.spec-item {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.spec-label {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	font-family: var(--default-font) !important;
}

.spec-value {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 500;
	font-family: var(--default-font) !important;
	line-height: 1.3em;
}

/* ── VR Launch CTA ── */
.digital-experience-actions {
	padding-top: 4px;
}

.digital-experience-actions .btn-default {
	display: inline-block;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%) !important;
	background-size: 200% auto !important;
	border-radius: 100px !important;
	padding: 17px 45px 17px 24px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	letter-spacing: 0.5px !important;
	text-transform: capitalize !important;
	color: var(--white-color) !important;
	border: none !important;
	transition: all 0.4s ease-in-out !important;
	box-shadow: 0 8px 24px rgba(202, 140, 25, 0.25) !important;
}

.digital-experience-actions .btn-default:hover {
	background-position: right center !important;
	box-shadow: 0 12px 30px rgba(202, 140, 25, 0.4) !important;
	color: var(--white-color) !important;
	transform: translateY(-2px);
}

/* ── Panorama viewport frame ── */
.dx-panorama-frame {
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	background: rgba(15, 57, 92, 0.15);
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow:
		0 0 0 1px rgba(202, 140, 25, 0.1),
		0 30px 60px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ── Viewport header & footer label bars ── */
.dx-panorama-header,
.dx-panorama-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(15, 57, 92, 0.85) !important;
	padding: 12px 20px;
	font-family: var(--default-font) !important;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55) !important;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.dx-panorama-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dx-panorama-header .hdr-config {
	color: var(--accent-secondary-color) !important;
}

.dx-panorama-header .hdr-label {
	color: rgba(255, 255, 255, 0.4);
	font-size: 10px;
}

.dx-panorama-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	font-size: 10px;
}

/* ── Panorama look-around viewport ── */
.dx-panorama-viewport {
	position: relative;
	height: 420px;
	width: 100%;
	overflow: hidden;
	background: #060e17;
	cursor: crosshair;
}

.dx-panorama-image {
	pointer-events: none;
	user-select: none;
	display: block;
}

/* ── Panning hint indicator ── */
.dx-panorama-overlay {
	position: absolute;
	bottom: 16px;
	right: 16px;
	pointer-events: none;
	z-index: 5;
}

.dx-pan-indicator {
	background: rgba(15, 57, 92, 0.85) !important;
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	padding: 8px 16px;
	border-radius: 100px;
	font-family: var(--default-font) !important;
	font-size: 11px;
	color: var(--white-color);
	display: flex;
	align-items: center;
	gap: 8px;
	letter-spacing: 0.3px;
	font-weight: 500;
}

.dx-pan-indicator i {
	color: var(--accent-secondary-color);
	font-size: 12px;
}

/* ── Responsive overrides ── */
@media (max-width: 991px) {
	.digital-experience-section .container {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.dx-rule {
		margin: 30px 0 40px;
	}

	.dx-bhk-tabs {
		justify-content: center;
	}

	.dx-room-links {
		justify-content: center;
	}

	.dx-showroom-content {
		text-align: center;
	}

	.dx-bhk-header {
		text-align: center;
	}

	.dx-room-links-container .room-nav-label {
		text-align: center;
	}

	.spec-grid {
		text-align: left;
	}

	.dx-panorama-viewport {
		height: 340px;
	}

	.dx-section-header {
		margin-bottom: 10px;
	}

	.digital-experience-actions {
		display: flex;
		justify-content: center;
	}
}

@media (max-width: 575px) {
	.dx-bhk-tabs {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0;
		justify-content: center;
	}

	.dx-room-links {
		justify-content: center;
	}

	.spec-grid {
		grid-template-columns: 1fr 1fr;
	}

	.dx-panorama-viewport {
		height: 260px;
	}

	.digital-experience-title {
		font-size: 28px !important;
	}
}

/* ============================================================
   VR PORTAL — LUXURY 3D PARALLAX PORTAL
   ============================================================ */

.luxury-experience-section {
	position: relative;
	background: radial-gradient(circle at center, #0B253D 0%, #061320 100%) !important;
	padding: 60px 0 !important;
	min-height: 680px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: #FFFFFF;
	border-radius: 16px;
}

/* Floating gold dust canvas background */
.luxury-particles-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

/* Subtle grid overlay to represent architectural planning */
.luxury-grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-size: 60px 60px;
	background-image:
		linear-gradient(to right, rgba(202, 140, 25, 0.03) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(202, 140, 25, 0.03) 1px, transparent 1px);
	pointer-events: none;
}

/* Interactive 3D Parallax Portal Wrapper */
.luxury-3d-portal-wrapper {
	perspective: 1200px;
	width: 100%;
	max-width: 1400px;
	padding: 0 40px;
	z-index: 3;
	box-sizing: border-box;
}

.luxury-3d-card {
	position: relative;
	width: 100%;
	height: calc(100vh - 160px);
	min-height: 650px;
	max-height: 800px;
	border-radius: 24px;
	background-color: #040d17;
	border: 1px solid rgba(202, 140, 25, 0.35);
	box-shadow:
		0 0 0 1px rgba(254, 250, 244, 0.02),
		0 35px 80px rgba(0, 0, 0, 0.75),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	overflow: hidden;
	cursor: pointer;
}

/* Deep background layer inside card */
.luxury-card-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: radial-gradient(circle at center, rgba(11, 37, 61, 0.6) 0%, rgba(4, 13, 23, 0.95) 100%);
	pointer-events: none;
}

/* Viewport frame containing the room image */
.luxury-card-image-viewport {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 2;
}

.luxury-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.1s ease-out;
}

/* Ambient glow overlay layer */
.luxury-card-glow {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	pointer-events: none;
	mix-blend-mode: screen;
}

/* Center VR Trigger */
.luxury-vr-trigger {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 8;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-decoration: none !important;
}

.luxury-vr-trigger .trigger-inner {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border: 2px solid rgba(254, 250, 244, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	box-shadow:
		0 10px 30px rgba(202, 140, 25, 0.5),
		0 0 0 1px rgba(254, 250, 244, 0.1);
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	color: #061320 !important;
}

.luxury-vr-trigger:hover .trigger-inner {
	transform: scale(1.08);
	background: radial-gradient(circle, #FFFFFF 0%, var(--accent-secondary-color) 100%);
	box-shadow:
		0 15px 35px rgba(254, 250, 244, 0.7),
		0 0 30px rgba(238, 192, 107, 0.6);
}

.luxury-vr-trigger .trigger-inner i {
	font-size: 22px;
	margin-top: 4px;
}

.luxury-vr-trigger .trigger-inner span {
	font-size: 10px;
	font-family: var(--accent-font);
	font-weight: 700;
	letter-spacing: 1.5px;
}

/* Pulser rings */
.pulsing-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 1px solid rgba(238, 192, 107, 0.3);
	pointer-events: none;
	width: 100px;
	height: 100px;
}

.ring-1 {
	animation: luxuryPulse 3s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

.ring-2 {
	animation: luxuryPulse 3s cubic-bezier(0.215, 0.610, 0.355, 1) 1s infinite;
}

.ring-3 {
	animation: luxuryPulse 3s cubic-bezier(0.215, 0.610, 0.355, 1) 2s infinite;
}

@keyframes luxuryPulse {
	0% {
		width: 100px;
		height: 100px;
		opacity: 0.8;
	}

	100% {
		width: 260px;
		height: 260px;
		opacity: 0;
	}
}

/* ── Floating Overlays inside the card ── */

/* Top-Left: Header */
.luxury-card-overlay-header {
	position: absolute;
	top: 50px;
	left: 50px;
	z-index: 5;
	pointer-events: none;
	max-width: 550px;
	text-align: center;
}

.luxury-dx-subtitle {
	font-family: 'STIX Two Text', serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 3px;
	color: rgba(255, 255, 255, 0.7);
	display: block;
	margin: 0 0 16px 0;
	text-transform: uppercase;
}

.luxury-dx-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 14px;
}

.luxury-dx-logo {
	width: auto;
	height: 60px;
	max-width: 280px;
	display: block;
	flex-shrink: 0;
	object-fit: contain;
}

.luxury-dx-title {
	font-size: 40px;
	line-height: 1.25em;
	color: #FFFFFF;
	margin-bottom: 16px;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.luxury-dx-divider {
	width: 50px;
	height: 2px;
	background-color: var(--accent-color);
	margin: 0 auto;
}

.luxury-dx-badge {
	font-family: 'STIX Two Text', serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	color: #FFFFFF;
	display: block;
	text-transform: none;
	letter-spacing: normal;
	margin-bottom: 0;
	text-align: center;
}

/* Bottom-Left: Navigation Widget (stationary, clean and minimal) */
.luxury-card-overlay-navigation {
	position: absolute;
	bottom: 50px;
	left: 50px;
	z-index: 5;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 0;
	border-radius: 0;
	background: transparent !important;
	border: none !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	box-shadow: none !important;
}

.luxury-suite-nav {
	display: flex;
	gap: 16px;
	border-bottom: 1px solid rgba(254, 250, 244, 0.15);
	padding-bottom: 10px;
}

.luxury-suite-btn {
	background: transparent;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 4px 8px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: all 0.3s ease;
	position: relative;
}

.luxury-suite-btn .suite-num {
	font-size: 9px;
	font-family: var(--accent-font);
	color: var(--accent-color);
	margin-bottom: 2px;
	font-weight: 600;
}

.luxury-suite-btn .suite-label {
	font-size: 13px;
	font-weight: 500;
	color: rgba(254, 250, 244, 0.5);
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

.luxury-suite-btn:hover .suite-label {
	color: #FFFFFF;
}

.luxury-suite-btn.active .suite-label {
	color: #FFFFFF;
	font-weight: 600;
}

.luxury-suite-btn::after {
	content: '';
	position: absolute;
	bottom: -11px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--accent-color);
	transform: scaleX(0);
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-suite-btn.active::after {
	transform: scaleX(1);
}

.luxury-room-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 440px;
}

.luxury-room-btn {
	background: rgba(254, 250, 244, 0.05);
	border: 1px solid rgba(254, 250, 244, 0.12);
	border-radius: 30px;
	padding: 6px 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	color: rgba(254, 250, 244, 0.7);
	font-size: 12px;
	letter-spacing: 0.5px;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-room-btn .room-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: rgba(254, 250, 244, 0.3);
	transition: all 0.3s ease;
}

.luxury-room-btn:hover {
	color: #FFFFFF;
	border-color: rgba(254, 250, 244, 0.25);
	background: rgba(254, 250, 244, 0.08);
}

.luxury-room-btn.active {
	color: #FFFFFF;
	border-color: var(--accent-color);
	background: rgba(202, 140, 25, 0.12);
}

.luxury-room-btn.active .room-dot {
	background-color: var(--accent-color);
	box-shadow: 0 0 6px var(--accent-color);
}



/* ============================================================
   RESPONSIVE DESIGN FOR LUXURY PORTAL
   ============================================================ */

@media (max-width: 1199px) {
	.luxury-dx-title {
		font-size: 34px;
	}

	.luxury-3d-card {
		height: calc(100vh - 120px);
		min-height: 600px;
	}

	.luxury-card-overlay-header {
		top: 40px;
		left: 40px;
	}

	.luxury-dx-logo {
		height: 50px;
		max-width: 240px;
	}

	.luxury-card-overlay-navigation {
		bottom: 40px;
		left: 40px;
	}
}

@media (max-width: 991px) {
	.luxury-experience-section {
		padding: 40px 0 !important;
	}

	.luxury-3d-portal-wrapper {
		padding: 0 20px;
	}

	.luxury-3d-card {
		height: auto;
		min-height: 750px;
		max-height: 900px;
	}

	.luxury-dx-title {
		font-size: 28px;
	}

	.luxury-card-overlay-header {
		top: 30px;
		left: 30px;
		right: 30px;
	}

	.luxury-dx-logo {
		height: 50px;
		max-width: 240px;
	}

	.luxury-card-overlay-navigation {
		bottom: auto;
		top: 220px;
		left: 30px;
		right: 30px;
		background: rgba(6, 19, 32, 0.4) !important;
		backdrop-filter: blur(12px) !important;
		-webkit-backdrop-filter: blur(12px) !important;
		padding: 14px 20px !important;
		border-radius: 16px !important;
		border: 1px solid rgba(254, 250, 244, 0.06) !important;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
	}

	.luxury-room-nav {
		max-width: 100%;
	}
}

@media (max-width: 575px) {
	.luxury-experience-section {
		padding: 24px 0 !important;
		border-radius: 0;
	}

	.luxury-3d-portal-wrapper {
		padding: 0 10px;
	}

	.luxury-3d-card {
		min-height: 520px;
		max-height: 600px;
		border-radius: 14px;
	}

	.luxury-dx-title {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.luxury-card-overlay-header {
		top: 16px;
		left: 16px;
		right: 16px;
	}

	.luxury-dx-brand {
		margin-bottom: 8px;
	}

	.luxury-dx-logo {
		height: 30px;
		max-width: 160px;
	}

	.luxury-dx-divider {
		width: 36px;
	}

	.luxury-card-overlay-navigation {
		top: auto;
		bottom: 16px;
		left: 16px;
		right: 16px;
		padding: 10px 12px !important;
		gap: 10px;
		border-radius: 12px !important;
	}

	.luxury-suite-nav {
		gap: 8px;
		padding-bottom: 6px;
	}

	.luxury-suite-btn {
		padding: 2px 6px;
	}

	.luxury-suite-btn .suite-label {
		font-size: 10px;
	}

	.luxury-room-btn {
		padding: 3px 8px;
		font-size: 10px;
	}

	.luxury-room-nav {
		gap: 6px;
	}

	.luxury-vr-trigger .trigger-inner {
		width: 64px;
		height: 64px;
		gap: 2px;
	}

	.luxury-vr-trigger .trigger-inner i {
		font-size: 16px;
		margin-top: 2px;
	}

	.luxury-vr-trigger .trigger-inner span {
		font-size: 8px;
		letter-spacing: 1px;
	}

	.pulsing-ring {
		width: 64px;
		height: 64px;
	}

	@keyframes luxuryPulse {
		0% {
			width: 64px;
			height: 64px;
			opacity: 0.8;
		}

		100% {
			width: 160px;
			height: 160px;
			opacity: 0;
		}
	}
}

/* Legacy Showcase Section: Sahar Business Center */
.legacy-showcase-section {
	background: var(--secondary-color);
	position: relative;
	padding: 100px 0;
	overflow: hidden;
	border-top: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
}

.legacy-showcase-section::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -30%;
	width: 80%;
	height: 180%;
	background: radial-gradient(circle, rgba(202, 140, 25, 0.06) 0%, transparent 60%);
	pointer-events: none;
	transform: rotate(-15deg);
}

.legacy-project-image-wrapper {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(15, 57, 92, 0.10);
	box-shadow: 0 15px 40px rgba(15, 57, 92, 0.08);
	aspect-ratio: 16/10;
}

.legacy-project-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.sold-out-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: linear-gradient(135deg, #d4af37, #aa7c11);
	color: #061320;
	font-family: var(--accent-font);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	padding: 8px 18px;
	border-radius: 4px;
	z-index: 10;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
}

.legacy-project-content {
	padding-left: 40px;
}

.legacy-project-content .section-title {
	margin-bottom: 25px;
}

.legacy-project-content .section-title h3 {
	color: var(--accent-color);
	font-family: var(--accent-font);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	margin-bottom: 8px;
}

.legacy-project-content .section-title h2 {
	color: var(--primary-color);
	font-family: var(--main-font);
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}

.legacy-project-location {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--text-color);
	font-family: var(--accent-font);
	font-size: 13px;
	letter-spacing: 0.5px;
}

.legacy-project-location i {
	color: var(--accent-color);
}

.legacy-project-description {
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 35px;
	opacity: 0.95;
}

.legacy-project-specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-bottom: 35px;
}

.spec-card {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	padding: 18px 15px;
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(15, 57, 92, 0.02);
}

.spec-card:hover {
	background: var(--white-color);
	border-color: rgba(202, 140, 25, 0.4);
	box-shadow: 0 8px 20px rgba(202, 140, 25, 0.08);
}

.spec-card i {
	color: var(--accent-color);
	font-size: 20px;
	margin-bottom: 10px;
}

.spec-card h4 {
	color: var(--primary-color);
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 4px;
	font-family: var(--accent-font);
}

.spec-card p {
	color: var(--text-color);
	opacity: 0.7;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0;
}

.legacy-cta-box {
	border-left: 3px solid var(--accent-color);
	padding-left: 18px;
	margin-top: 10px;
}

.luxury-callout-text {
	color: var(--text-color);
	opacity: 0.85;
	font-style: italic;
	font-size: 14px;
	line-height: 1.5;
	display: block;
}

@media (max-width: 991px) {
	.legacy-showcase-section {
		padding: 70px 0;
	}

	.legacy-project-content {
		padding-left: 0;
		margin-top: 40px;
	}

	.legacy-project-content .section-title h2 {
		font-size: 30px;
	}
}

@media (max-width: 575px) {
	.legacy-project-specs {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.spec-card {
		padding: 15px;
		display: flex;
		align-items: center;
		text-align: left;
		gap: 15px;
	}

	.spec-card i {
		margin-bottom: 0;
		font-size: 18px;
	}

	.spec-card h4 {
		margin-bottom: 0;
		font-size: 14px;
	}

	.spec-card p {
		display: none;
	}
}

/* ============================================================
   LIGHT THEME OVERRIDES FOR VR PORTAL
   ============================================================ */
.luxury-experience-section {
	background: radial-gradient(circle at center, #FCFAF6 0%, #F4F0E6 100%) !important;
	color: var(--text-color) !important;
}

.luxury-dx-title {
	color: var(--primary-color) !important;
	text-shadow: none !important;
}

.luxury-dx-badge {
	color: var(--accent-color) !important;
}

.luxury-3d-card {
	background-color: #FCFAF6 !important;
	border: 1px solid rgba(202, 140, 25, 0.2) !important;
	box-shadow:
		0 0 0 1px rgba(15, 57, 92, 0.05),
		0 35px 80px rgba(15, 57, 92, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.luxury-card-bg {
	background: radial-gradient(circle at center, rgba(253, 250, 244, 0.75) 0%, rgba(244, 240, 230, 0.95) 100%) !important;
}

.luxury-suite-nav {
	border-bottom: 1px solid rgba(15, 57, 92, 0.12) !important;
}

.luxury-suite-btn .suite-label {
	color: rgba(15, 57, 92, 0.55) !important;
}

.luxury-suite-btn:hover .suite-label,
.luxury-suite-btn.active .suite-label {
	color: var(--primary-color) !important;
}

.luxury-room-btn {
	background: rgba(15, 57, 92, 0.04) !important;
	border: 1px solid rgba(15, 57, 92, 0.12) !important;
	color: rgba(15, 57, 92, 0.65) !important;
}

.luxury-room-btn .room-dot {
	background-color: rgba(15, 57, 92, 0.3) !important;
}

.luxury-room-btn:hover {
	color: var(--primary-color) !important;
	border-color: rgba(15, 57, 92, 0.25) !important;
	background: rgba(15, 57, 92, 0.08) !important;
}

.luxury-room-btn.active {
	color: var(--primary-color) !important;
	border-color: var(--accent-color) !important;
	background: rgba(202, 140, 25, 0.08) !important;
}

.luxury-room-btn.active .room-dot {
	background-color: var(--accent-color) !important;
	box-shadow: 0 0 6px var(--accent-color) !important;
}

/* Light adjustments for mobile backdrop overlay on navigation block */
@media (max-width: 991px) {
	.luxury-card-overlay-navigation {
		background: rgba(253, 250, 244, 0.85) !important;
		border: 1px solid rgba(15, 57, 92, 0.08) !important;
		box-shadow: 0 10px 30px rgba(15, 57, 92, 0.1) !important;
	}
}

/* ============================================================
   FOOTER Restructuring & Filled Logos
   ============================================================ */
.footer-about-column {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-about-logo img {
	max-height: 50px;
	max-width: 160px;
	width: auto;
}

.footer-about-socials ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start !important;
	gap: 16px;
	margin: 0;
	padding: 0;
}

.footer-properties-strip {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 15px;
}

.properties-strip-label {
	font-family: var(--accent-font);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(254, 250, 244, 0.45);
}

.properties-logos {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}

.footer-prop-logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.8;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-prop-logo-link:hover {
	opacity: 1;
	transform: translateY(-2px);
}

.footer-prop-svg {
	height: 32px !important;
	width: auto;
}

/* Custom styling for footer filled logos */
.footer-prop-svg path {
	stroke: none !important;
	stroke-width: 0 !important;
	fill: var(--accent-color) !important;
	transition: fill 0.3s ease !important;
}

.footer-prop-logo-link:hover .footer-prop-svg path {
	fill: var(--accent-secondary-color) !important;
}

/* ============================================================
   VR SECTION IMAGE CONTRAST SCRIM OVERLAY
   ============================================================ */
/* Light scrim overlay to protect text contrast against detailed renders */
.luxury-card-image-viewport::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, rgba(252, 250, 246, 0.94) 0%, rgba(252, 250, 246, 0.8) 40%, rgba(252, 250, 246, 0.2) 75%, rgba(252, 250, 246, 0) 100%) !important;
	z-index: 3;
	pointer-events: none;
}

@media (max-width: 991px) {

	/* Shift to vertical scrim for stacked mobile elements */
	.luxury-card-image-viewport::after {
		background: linear-gradient(to bottom, rgba(252, 250, 246, 0.9) 0%, rgba(252, 250, 246, 0.45) 50%, rgba(252, 250, 246, 0.88) 100%) !important;
	}
}

/* ===== Continental Heights ===== */
.heights-page-header {
	background: linear-gradient(135deg, #0F395C 0%, #1a4e7a 100%);
	position: relative;
	overflow: hidden;
}
.heights-page-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('/images/heights/heights.jpg') no-repeat center center / cover;
	opacity: 0.15;
	mix-blend-mode: overlay;
}
.heights-page-header::after {
	content: '';
	position: absolute;
	top: 0; right: 0;
	width: 45%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(202,140,25,0.06));
}
.heights-badge {
	background: rgba(202, 140, 25, 0.1);
	border: 1px solid rgba(202, 140, 25, 0.25);
	color: #CA8C19;
	display: inline-block;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 4px;
	text-transform: uppercase;
	padding: 6px 18px;
	font-family: 'Space Grotesk', sans-serif;
	border-radius: 100px;
}
.sidebar-cta-heights {
	background: linear-gradient(135deg, #0F395C 0%, #1a4e7a 100%);
	position: relative;
	overflow: hidden;
}
.sidebar-cta-heights::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(202,140,25,0.08) 0%, transparent 70%);
	border-radius: 50%;
}
.overview-item-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(202, 140, 25, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #CA8C19;
	font-size: 18px;
	flex-shrink: 0;
}
.solution-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 24px;
	background: white;
	border: 1px solid rgba(15,57,92,0.06);
	border-radius: 12px;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.solution-item:hover {
	transform: translateY(-3px);
	border-color: rgba(202,140,25,0.2);
	box-shadow: 0 10px 30px rgba(15,57,92,0.04);
}
.solution-item .icon-box {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(202, 140, 25, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #CA8C19;
	font-size: 18px;
	flex-shrink: 0;
}
.gallery-nav-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(15,57,92,0.85);
	color: white;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(4px);
}
.gallery-nav-btn:hover {
	background: #CA8C19;
	transform: scale(1.05);
}
.gallery-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}
.gallery-dot.active {
	background: #CA8C19;
	width: 28px;
	border-radius: 10px;
}
.gallery-dot:not(.active) {
	background: rgba(15,57,92,0.12);
}
.amenity-card {
	padding: 24px;
	border-radius: 12px;
	background: white;
	border: 1px solid rgba(15,57,92,0.05);
	height: 100%;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.amenity-card:hover {
	transform: translateY(-4px);
	border-color: rgba(202,140,25,0.15);
	box-shadow: 0 12px 35px rgba(15,57,92,0.04);
}
.poi-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	background: white;
	border: 1px solid rgba(15,57,92,0.04);
	border-radius: 10px;
	transition: all 0.3s ease;
}
.poi-item:hover {
	border-color: rgba(202,140,25,0.15);
	box-shadow: 0 4px 15px rgba(15,57,92,0.03);
	transform: translateX(4px);
}
.poi-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(15,57,92,0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0F395C;
	font-size: 13px;
	flex-shrink: 0;
}
.form-input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid rgba(15,57,92,0.12);
	border-radius: 8px;
	font-size: 14px;
	color: #0F395C;
	background: white;
	transition: border-color 0.3s ease;
	outline: none;
}
.form-input:focus {
	border-color: #CA8C19;
}
.form-input.is-invalid {
	border-color: #dc3545;
}
.form-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: rgba(15,57,92,0.55);
	margin-bottom: 6px;
}
.success-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(6,22,41,0.85);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.success-modal-box {
	background: white;
	padding: 40px;
	border-radius: 16px;
	max-width: 440px;
	width: 100%;
	text-align: center;
	border: 1px solid #CA8C19;
	animation: pl-up 0.5s ease;
	position: relative;
}
@keyframes pl-up {
	from { opacity: 0; transform: translateY(30px) scale(0.96); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Continental Horizon ===== */
.horizon-page-header {
	background: linear-gradient(135deg, #0F395C 0%, #1a4e7a 100%);
	position: relative;
	overflow: hidden;
}
.horizon-page-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('/images/horizon/horizon-render.png') no-repeat center center / cover;
	opacity: 0.12;
	mix-blend-mode: overlay;
}
.horizon-page-header::after {
	content: '';
	position: absolute;
	top: 0; right: 0;
	width: 45%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(202,140,25,0.05));
}
.horizon-badge {
	background: rgba(202, 140, 25, 0.1);
	border: 1px solid rgba(202, 140, 25, 0.25);
	color: #CA8C19;
	display: inline-block;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 4px;
	text-transform: uppercase;
	padding: 6px 18px;
	font-family: 'Space Grotesk', sans-serif;
	border-radius: 100px;
}
/* Page Header Logo — solid filled (not draw/outline) */
.page-header-logo-wrap {
	max-width: 90px;
	flex-shrink: 0;
}

.page-header-logo {
	display: block;
	width: 100%;
	height: auto;
}

.page-header-logo path {
	fill: var(--accent-color);
	stroke: none;
}

.page-header-title {
	font-family: 'STIX Two Text', serif;
	font-weight: 600;
	font-size: 48px;
	letter-spacing: -0.02em;
	color: #FFFFFF;
	margin: 0;
	line-height: 1.1;
	text-transform: uppercase;
}

.page-header-title-accent {
	color: #CA8C19;
	font-weight: 700;
}

.page-header-subtitle {
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 8px 0 0;
	font-family: 'Space Grotesk', sans-serif;
}

.sidebar-cta-horizon {
	background: linear-gradient(135deg, #0F395C 0%, #1a4e7a 100%);
	position: relative;
	overflow: hidden;
}
.sidebar-cta-horizon::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(202,140,25,0.08) 0%, transparent 70%);
	border-radius: 50%;
}
.feature-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 24px;
	background: white;
	border: 1px solid rgba(15,57,92,0.06);
	border-radius: 12px;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.feature-card:hover {
	transform: translateY(-3px);
	border-color: rgba(202,140,25,0.2);
	box-shadow: 0 10px 30px rgba(15,57,92,0.04);
}
.feature-card .icon-box {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(202, 140, 25, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #CA8C19;
	font-size: 18px;
	flex-shrink: 0;
}
.gallery-nav-btn-h {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(15,57,92,0.85);
	color: white;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(4px);
}
.gallery-nav-btn-h:hover {
	background: #CA8C19;
	transform: scale(1.05);
}
.gallery-dot-h {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}
.gallery-dot-h.active {
	background: #CA8C19;
	width: 28px;
	border-radius: 10px;
}
.gallery-dot-h:not(.active) {
	background: rgba(15,57,92,0.12);
}
.amenity-card-h {
	padding: 24px;
	border-radius: 12px;
	background: white;
	border: 1px solid rgba(15,57,92,0.05);
	height: 100%;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.amenity-card-h:hover {
	transform: translateY(-4px);
	border-color: rgba(202,140,25,0.15);
	box-shadow: 0 12px 35px rgba(15,57,92,0.04);
}
.bhk-tab-btn {
	padding: 10px 24px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	border-radius: 100px;
	border: 1px solid rgba(15,57,92,0.12);
	background: transparent;
	color: #0F395C;
	cursor: pointer;
	transition: all 0.3s ease;
}
.bhk-tab-btn:hover {
	border-color: rgba(202,140,25,0.3);
	background: rgba(202,140,25,0.04);
}
.bhk-tab-btn.active {
	background: #CA8C19;
	border-color: #CA8C19;
	color: white;
}
.plan-toggle-btn {
	padding: 8px 18px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	border-radius: 100px;
	border: 1px solid rgba(15,57,92,0.12);
	background: transparent;
	color: #0F395C;
	cursor: pointer;
	transition: all 0.3s ease;
}
.plan-toggle-btn.active {
	background: #0F395C;
	border-color: #0F395C;
	color: white;
}
.plan-toggle-btn:hover {
	border-color: rgba(15,57,92,0.3);
}
.poi-item-h {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	background: white;
	border: 1px solid rgba(15,57,92,0.04);
	border-radius: 10px;
	transition: all 0.3s ease;
}
.poi-item-h:hover {
	border-color: rgba(202,140,25,0.15);
	box-shadow: 0 4px 15px rgba(15,57,92,0.03);
	transform: translateX(4px);
}
.poi-icon-h {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(15,57,92,0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0F395C;
	font-size: 13px;
	flex-shrink: 0;
}
.form-input-h {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid rgba(15,57,92,0.12);
	border-radius: 8px;
	font-size: 14px;
	color: #0F395C;
	background: white;
	transition: border-color 0.3s ease;
	outline: none;
}
.form-input-h:focus {
	border-color: #CA8C19;
}
.form-input-h.is-invalid {
	border-color: #dc3545;
}
.form-label-h {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: rgba(15,57,92,0.55);
	margin-bottom: 6px;
}
.success-modal-overlay-h {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(6,22,41,0.85);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.success-modal-box-h {
	background: white;
	padding: 40px;
	border-radius: 16px;
	max-width: 440px;
	width: 100%;
	text-align: center;
	border: 1px solid #CA8C19;
	animation: pl-up-h 0.5s ease;
}
@keyframes pl-up-h {
	from { opacity: 0; transform: translateY(30px) scale(0.96); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Horizon Media Cards (Interior & Lobby) ===== */
.horizon-bhk-section-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #CA8C19;
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(202,140,25,0.12);
	font-family: 'Space Grotesk', sans-serif;
}
.horizon-media-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(15,57,92,0.06);
	height: 100%;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.horizon-media-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(15,57,92,0.04);
	border-color: rgba(202,140,25,0.15);
}
.horizon-media-img-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}
.horizon-media-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.horizon-media-card:hover .horizon-media-img-wrap img {
	transform: scale(1.04);
}
.horizon-media-caption {
	padding: 14px 18px 18px;
}
.horizon-media-caption h5 {
	font-size: 15px;
	font-weight: 600;
	color: #0F395C;
	margin: 0 0 4px;
}
.horizon-media-caption p {
	font-size: 13px;
	color: rgba(15,57,92,0.55);
	margin: 0;
	line-height: 1.5;
}

/* ===== Horizon VR Section ===== */
.horizon-vr-section {
	background: linear-gradient(135deg, #0F395C 0%, #1a4e7a 100%);
	border-radius: 16px;
	padding: 48px;
	position: relative;
	overflow: hidden;
}
.horizon-vr-section::before {
	content: '';
	position: absolute;
	top: -60%;
	right: -30%;
	width: 80%;
	height: 150%;
	background: radial-gradient(circle, rgba(202,140,25,0.06) 0%, transparent 70%);
	border-radius: 50%;
}
.horizon-vr-badge {
	display: inline-block;
	background: rgba(202,140,25,0.12);
	border: 1px solid rgba(202,140,25,0.25);
	color: #CA8C19;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 100px;
	margin-bottom: 12px;
	font-family: 'Space Grotesk', sans-serif;
}
.horizon-vr-features {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}
.horizon-vr-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	margin-bottom: 8px;
}
.horizon-vr-features li i {
	color: #CA8C19;
	font-size: 14px;
	width: 20px;
	text-align: center;
}
.horizon-vr-preview {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid rgba(202,140,25,0.15);
}
.horizon-vr-preview img {
	width: 100%;
	display: block;
}
.horizon-vr-overlay {
	position: absolute;
	inset: 0;
	background: rgba(6,22,41,0.5);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: background 0.3s ease;
}
.horizon-vr-overlay:hover {
	background: rgba(6,22,41,0.7);
}
.horizon-vr-overlay i {
	font-size: 40px;
	color: white;
	background: rgba(202,140,25,0.9);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}
.horizon-vr-overlay:hover i {
	transform: scale(1.08);
}
.horizon-vr-overlay span {
	color: white;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* ===== Horizon Construction Updates ===== */
.horizon-construction-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(15,57,92,0.06);
	height: 100%;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.horizon-construction-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(15,57,92,0.04);
}
.horizon-construction-date {
	display: inline-block;
	background: rgba(202,140,25,0.08);
	color: #CA8C19;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 0 0 6px 0;
	font-family: 'Space Grotesk', sans-serif;
}
.horizon-construction-img-wrap {
	overflow: hidden;
	aspect-ratio: 16 / 9;
}
.horizon-construction-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.horizon-construction-card:hover .horizon-construction-img-wrap img {
	transform: scale(1.04);
}
.horizon-construction-body {
	padding: 18px 20px 22px;
}
.horizon-construction-body h5 {
	font-size: 16px;
	font-weight: 600;
	color: #0F395C;
	margin: 0 0 6px;
}
.horizon-construction-body p {
	font-size: 13px;
	color: rgba(15,57,92,0.6);
	margin: 0;
	line-height: 1.7;
}

/* ===== Lightbox ===== */
.lightbox-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(6,22,41,0.92);
	backdrop-filter: blur(12px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.lightbox-img-wrap {
	max-width: 90vw;
	max-height: 80vh;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lightbox-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	max-height: 80vh;
}
.lightbox-close {
	position: absolute;
	top: -44px;
	right: 0;
	background: none;
	border: none;
	color: rgba(255,255,255,0.6);
	font-size: 28px;
	cursor: pointer;
	padding: 4px;
	transition: color 0.2s;
	line-height: 1;
	z-index: 2;
}
.lightbox-close:hover {
	color: white;
}
.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.1);
	color: white;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 18px;
	transition: all 0.2s;
	z-index: 2;
}
.lightbox-nav:hover {
	background: rgba(202,140,25,0.8);
	border-color: rgba(202,140,25,0.4);
}
.lightbox-prev {
	left: -60px;
}
.lightbox-next {
	right: -60px;
}
.lightbox-caption {
	margin-top: 16px;
	color: rgba(255,255,255,0.6);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.3px;
	text-align: center;
}

/* ===== Sidebar Brochure Button ===== */
.sidebar-brochure-btn {
	display: inline-block;
	padding: 10px 24px;
	background: transparent;
	color: #CA8C19;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	text-decoration: none;
	border: 1px solid rgba(202,140,25,0.25);
	transition: all 0.3s ease;
	margin-top: 10px;
	font-family: 'Space Grotesk', sans-serif;
}
.sidebar-brochure-btn:hover {
	background: rgba(202,140,25,0.08);
	border-color: rgba(202,140,25,0.4);
	color: #CA8C19;
}

/* ===== Walkthrough Video ===== */
.horizon-video-wrap {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid rgba(15,57,92,0.06);
	box-shadow: 0 4px 20px rgba(15,57,92,0.04);
}
.horizon-video-wrap img {
	width: 100%;
	display: block;
}
.horizon-video-overlay {
	position: absolute;
	inset: 0;
	background: rgba(6,22,41,0.45);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	transition: background 0.3s ease;
}
.horizon-video-overlay:hover {
	background: rgba(6,22,41,0.6);
}
.horizon-video-overlay i {
	font-size: 36px;
	color: white;
	background: rgba(202,140,25,0.9);
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
	padding-left: 4px;
}
.horizon-video-overlay:hover i {
	transform: scale(1.08);
}
.horizon-video-overlay span {
	color: white;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2.5px;
}

/* FORCE LOGO MOBILE SIZE CONSTRAINTS */
header.main-header .navbar-brand img,
header.logo-intro-header .navbar-brand img {
  max-height: 70px !important;
  height: auto !important;
  width: auto !important;
}

@media (max-width: 991px) {
  header.main-header .navbar-brand img,
  header.logo-intro-header .navbar-brand img {
    max-height: 50px !important;
    height: auto !important;
  }
}

@media (max-width: 767px) {
  header.main-header .navbar-brand img,
  header.logo-intro-header .navbar-brand img {
    max-height: 44px !important;
    height: auto !important;
  }
}

@media (max-width: 575px) {
  header.main-header .navbar-brand img,
  header.logo-intro-header .navbar-brand img {
    max-height: 38px !important;
    height: auto !important;
  }
}

/* Fix Heights & Horizon New Launch Image Layout on Mobile */
@media (max-width: 1199px) {
  .heights-launch-image figure.image-anime.reveal,
  .horizon-launch-image figure.image-anime.reveal {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
  }
  .heights-launch-image figure.image-anime.reveal img,
  .horizon-launch-image figure.image-anime.reveal img {
    width: 100% !important;
    max-width: 100% !important;
    height: 360px !important;
    object-fit: cover !important;
  }
}

@media (max-width: 767px) {
  .heights-launch-image figure.image-anime.reveal img,
  .horizon-launch-image figure.image-anime.reveal img {
    height: 280px !important;
  }
}

@media (max-width: 575px) {
  .heights-launch-image figure.image-anime.reveal img,
  .horizon-launch-image figure.image-anime.reveal img {
    height: 220px !important;
  }
}

/* Location Connectivity Mobile Layout Redesign */
@media (max-width: 767px) {
  .location-section {
    padding: 36px 16px !important;
  }
  .map-interactive-container {
    max-height: 340px !important;
    border-radius: 12px !important;
  }
  .location-static-map {
    max-height: 320px !important;
    border-radius: 10px !important;
  }
}

@media (max-width: 575px) {
  .location-section {
    padding: 28px 12px !important;
  }
  .location-map-wrapper {
    padding: 6px !important;
    margin-bottom: 20px !important;
  }
  .map-interactive-container {
    max-height: 280px !important;
    border-radius: 12px !important;
  }
  .location-static-map {
    max-height: 260px !important;
    border-radius: 10px !important;
  }

  /* Horizontal swipeable pill filter tabs */
  .poi-filter-tabs {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    padding-bottom: 6px !important;
    margin-bottom: 14px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .poi-filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .filter-tab-btn {
    flex: 0 0 auto !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 6px 14px !important;
    background: rgba(15, 57, 92, 0.05) !important;
    border-radius: 20px !important;
    color: #0F395C !important;
    border: none !important;
    margin: 0 !important;
  }
  .filter-tab-btn.active {
    background: #0F395C !important;
    color: #ffffff !important;
  }
  .filter-tab-btn .tab-indicator-line {
    display: none !important;
  }

  /* 2-Column Grid Layout */
  .connectivity-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-top: 10px !important;
  }

  /* Sleek, Compact Card Styling */
  .connectivity-card {
    padding: 12px 8px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    border: 1px solid rgba(15, 57, 92, 0.08) !important;
    box-shadow: 0 4px 15px rgba(15, 57, 92, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 4px !important;
  }
  .connectivity-card .card-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 13px !important;
    margin-bottom: 2px !important;
    background: rgba(202, 140, 25, 0.1) !important;
    color: #CA8C19 !important;
  }
  .connectivity-card h4 {
    font-size: 12px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    line-height: 1.3em !important;
    color: #0F395C !important;
  }
  .poi-distances {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding-top: 6px !important;
    border-top: 1px solid rgba(15, 57, 92, 0.06) !important;
    margin-top: 2px !important;
  }
  .poi-distances .dist-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .poi-distances .dist-label {
    font-size: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: rgba(15, 57, 92, 0.5) !important;
    font-weight: 600 !important;
  }
  .poi-distances .dist-val {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #CA8C19 !important;
  }
  .poi-distances .dist-divider {
    color: rgba(15, 57, 92, 0.2) !important;
    font-size: 10px !important;
  }
}

/* ───────────────────────────────────────────────────────────────────────────
   LUXURY LIGHT IVORY FOOTER REDESIGN (ORIGINAL THEME PRESERVED)
   ─────────────────────────────────────────────────────────────────────────── */
footer.main-footer {
  background: var(--bg-color, #FDFAF4) !important;
  color: #0F395C !important;
  position: relative !important;
  border-top: 1px solid rgba(202, 140, 25, 0.25) !important;
  padding: 70px 0 0 !important;
}

footer.main-footer::before {
  display: none !important;
}

.footer-about-column {
  padding-right: 20px;
}

.footer-about-logo img {
  max-height: 55px !important;
  width: auto !important;
  filter: none !important;
}

.about-footer-content p {
  color: rgba(15, 57, 92, 0.8) !important;
  font-size: 14px !important;
  line-height: 1.65em !important;
  margin-bottom: 24px !important;
}

.footer-social-links.footer-about-socials ul {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 12px !important;
}

.footer-social-links ul li a {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 57, 92, 0.2) !important;
  color: #0F395C !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(15, 57, 92, 0.04) !important;
  transition: all 0.3s ease !important;
}

.footer-social-links ul li a:hover {
  background: #0F395C !important;
  color: #CA8C19 !important;
  border-color: #0F395C !important;
  transform: translateY(-3px) !important;
}

.footer-links-box {
  margin-left: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr 1.2fr 1.5fr !important;
  gap: 30px !important;
}

.footer-links {
  max-width: 100% !important;
}

.footer-links h3 {
  font-family: 'STIX Two Text', Georgia, serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #0F395C !important;
  margin-bottom: 18px !important;
  padding-bottom: 0 !important;
}

.footer-links h3::after {
  display: none !important;
}

.footer-links ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-links ul li {
  background-image: url('../images/icon-asterisk.svg') !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
  background-size: 14px auto !important;
  padding-left: 22px !important;
  margin-bottom: 12px !important;
}

.footer-links ul li a {
  color: rgba(15, 57, 92, 0.82) !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
}

.footer-links ul li a:hover {
  color: #CA8C19 !important;
  transform: translateX(4px) !important;
}

.footer-contact-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  margin-bottom: 20px !important;
}

.footer-contact-item .icon-box {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #EEC06B 0%, #CA8C19 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 10px rgba(202, 140, 25, 0.2) !important;
}

.footer-contact-item .icon-box img {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain !important;
}

.footer-contact-content h3 {
  font-family: var(--default-font) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #CA8C19 !important;
  margin-bottom: 3px !important;
  padding-bottom: 0 !important;
}

.footer-contact-content h3::after {
  display: none !important;
}

.footer-contact-content p {
  color: #0F395C !important;
  font-size: 13.5px !important;
  line-height: 1.5em !important;
  margin: 0 !important;
}

.footer-contact-content p a {
  color: #0F395C !important;
  transition: color 0.3s ease !important;
}

.footer-contact-content p a:hover {
  color: #CA8C19 !important;
}

.footer-copyright {
  border-top: 1px solid rgba(15, 57, 92, 0.1) !important;
  padding: 24px 0 32px !important;
  margin-top: 40px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.footer-copyright-text p {
  color: rgba(15, 57, 92, 0.75) !important;
  font-size: 13px !important;
  margin: 0 !important;
}

.footer-copyright-text a {
  color: #CA8C19 !important;
  font-weight: 600 !important;
}

.copyright-divider {
  margin: 0 12px !important;
  color: #CA8C19 !important;
  font-weight: 300 !important;
  opacity: 0.8 !important;
}

.footer-privacy-policy {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.footer-privacy-policy a {
  color: rgba(15, 57, 92, 0.75) !important;
  font-size: 13px !important;
  transition: color 0.3s ease !important;
  text-decoration: none !important;
}

.footer-privacy-policy a:hover {
  color: #CA8C19 !important;
}

.footer-privacy-policy .privacy-dot {
  color: #CA8C19 !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

/* Mobile & Tablet Footer Responsiveness */
@media (max-width: 991px) {
  footer.main-footer {
    padding: 50px 0 0 !important;
  }
  .footer-links-box {
    grid-template-columns: 1fr 1fr !important;
    margin-top: 40px !important;
  }
}

@media (max-width: 575px) {
  footer.main-footer {
    padding: 40px 0 0 !important;
  }
  .footer-links-box {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-copyright {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
    padding: 20px 0 28px !important;
  }
}