@import url("../../../cdn.jsdelivr.net/npm/bootstrap-icons%401.11.3/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Poppins:wght@400;500;600;700;800;900&amp;display=swap");

/* CSS Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

html {
	/* Set a base font size to make responsive units easier */
	font-size: 100%; /* 16px default */
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}


/* @media (width > 700px) {
	html {
		padding-top: 5.2rem;
	}
} */

html {
	/* padding-top: 5rem; */
	    padding-top: 4.7rem;
	/* padding-top: 6.4rem; */
}
@media (width < 700px) {
	html {
		padding-top: 4rem;
	}
}

body {
	/* padding-top: 5rem; */
	margin: 0;
	font-family: sans-serif;
	line-height: 1.5;
	text-rendering: optimizeSpeed;
	-webkit-font-smoothing: antialiased;
	font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.4;
	color: #121212;
	font-family: "Montserrat", sans-serif;
}

h1 {
	font-size: 32px;
	text-wrap: wrap;
	text-align: center;
	color: #333333;
	/*padding-block: 1.2rem;*/
}

h2 {
	/* padding-block: 1rem; */
	margin: 0;
	font-size: 26px;
	color: #000;
	/* padding-block: 1.2rem; */
}

h3 {
	font-size: 22px;
	color: #3a322d;
	/* margin-top: 1rem; */
	/* padding-block: 1rem; */
}

h2 + h3 {
	margin-top: 0;
	padding-top: 0;
}

p {
	text-wrap: pretty;
	line-height: 1.6;
	font-size: 16px;
	/* font-family: "Poppins", sans-serif; */
	padding-block: 4px;
}

input {
	border: none;
	outline: none;
}
button {
	outline: none;
	border: none;
}

ul,
ol {
	list-style: none;
}

img {
	max-width: 100%;
	display: block;
	height: auto;
}

a {
	text-decoration: none;
	color: #000;
	cursor: pointer;
}
/* header styles start */

.custom-header {
	position: fixed;
	top: 6%;
	left: 10%;
	width: 80%;
	border-radius: 100px;
	padding: 16px 32px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1000;
	transition: all 0.3s ease;
	background: rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(10px);
}

/* Expanded Header State */
.custom-header.scrolled {
	top: 0;
	left: 0;
	width: 100%;
	border-radius: 0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	background: linear-gradient(98deg, #000000, #000000);
}

/* Optional: Styling for Children */
.custom-header .logo {
	font-size: 1.5rem;
	font-weight: bold;
}

.custom-header ul {
	list-style-type: none;
	margin-bottom: 0px !important;
}

.custom-logo img {
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
	transition: filter 0.3s ease;
}

.custom-logo img:hover {
	filter: drop-shadow(0 0 15px rgba(240, 203, 123, 0.6));
}

.custom-header .navigation {
	flex: 1;
	text-align: center;
	font-size: 1rem;
}

.custom-header .actions {
	font-size: 1rem;
}

.custom-logo img {
	max-width: 150px;
	animation: zoomInOut 2s ease-in-out infinite;
}
@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}


/* Navigation Menu */
.custom-nav {
	flex: 1;
	margin-left: 32px;
}

.custom-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	/* gap: 20px; */
}

.custom-menu li {
	position: relative;
}

.custom-menu > li > p,
.custom-menu > li > a {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	padding: 8px 6px;
	transition: color 0.3s ease;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	margin-bottom: 0px !important;
}

.custom-header.scrolled .custom-menu > li > a {
	padding: 8px 12px;
}

.custom-menu > li > p:hover,
.custom-menu > li > a:hover {
	color: transparent;
	background-color: #ea7c10;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 10px rgba(240, 203, 123, 0.5);
}

/* Dropdown Menu */
.custom-dropdown {
	position: relative;
}

.custom-submenu {
	display: none;
	position: absolute;
	left: 0;
	bottom: 0;
	/* Sticks to the bottom of the header */
	transform: translateY(100%);
	background: #fff;
	border: 1px solid #ea7c10;
	border-radius: 6px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	z-index: 10;
	/* padding: 8px 0; */
	min-width: 200px;
	/* Ensure a minimum width */
	padding-left: 0px;
}

.custom-dropdown:hover .custom-submenu {
	display: grid;
}

.custom-submenu li {
	position: relative;
	/* padding: 8px 16px; */
}

.custom-submenu a {
	font-size: 14px;
	color: #333;
	text-decoration: none;
	transition: background 0.3s ease;
}

.custom-submenu a:hover {
	background: #f0f0f0;
}

/* Sub-submenu */
.custom-sub-submenu {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	background: #fff;
	border: 1px solid #ea7c10;
	border-radius: 6px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	/* padding: 8px 0; */
	min-width: 200px;
}

.custom-submenu li:hover .custom-sub-submenu {
	display: grid;
}

/* Submenu Styling for Better UI */
.custom-submenu li {
	border-bottom: 1px solid #eee;
}

.custom-submenu li:last-child {
	border-bottom: none;
}

.custom-submenu a {
	position: relative;
	padding: 12px 16px;
	font-size: 14px;
	display: block;
	color: #333;
	background: transparent;
	text-decoration: none;
	z-index: 1;
	transition: color 0.3s ease;
	overflow: hidden;
}

.custom-submenu a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ea7c10;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease, color 250ms ease;
}

.custom-submenu a:hover {
	color: white;
}

.custom-submenu a:hover::before {
	opacity: 1;
}

/* Actions Section */
.custom-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 9px;
}

.custom-contact {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background: none;
	padding: 8px 16px;
	border: 1px solid #fff;
	border-radius: 16px;
	transition: all 0.3s ease;
	background-color: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	/* text-shadow: 0 1px 2px rgb(240, 203, 123,0.3); */
	text-wrap: nowrap;
	transform: translateY(-4px);
}

/* Search Icon */
.custom-search svg {
	--call-icon-size: 24px;
	width: var(--call-icon-size);
	height: var(--call-icon-size);
	cursor: pointer;
	color: #f0cb7b;
	transition: color 0.3s ease;
	margin-right: 6px;
	transform: translate(0px, 6px);
}

.custom-search svg:hover {
	scale: 1.1;
}

.mobile-hamburger {
	display: none;
	grid-template-columns: 1fr;
	width: 26px;
	gap: 4px;
	transform: translate(0px, 6px);
	margin-left: 6px;
}

.mobile-hamburger span {
	height: 2px;
	background-color: #ea7c10;
	border-radius: 8px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.mobile-hamburger.active span:first-child {
	transform: rotate(45deg) translate(4px, 4px);
	transition: transform 0.3s ease;
}

.mobile-hamburger.active span:nth-child(2) {
	opacity: 0;
	transition: opacity 0.2s ease;
}

.mobile-hamburger.active span:last-child {
	transform: rotate(-45deg) translate(5px, -5px);
	transition: transform 0.3s ease;
}

/* Responsive Design */

@media (max-width: 1160px) {
	.custom-header {
		padding: 10px 22px;
		top: 4%;
	}

	.custom-logo img {
		max-width: 100px;
	}

	.custom-search svg {
		--call-icon-size: 20px;
		display: inline-block;
	}

	.custom-nav {
		display: none;
	}

	.custom-contact {
		display: none;
	}

	.custom-search {
		display: flex;
		align-items: center;
	}

	.mobile-hamburger {
		display: grid;
	}
}

/* Mobile Menu Container */
/*div.mobile-menu {
	position: fixed;
	top: 0;
	left: -100%;
	height: 100vh;
	width: 75%;
	background: linear-gradient(296deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
	backdrop-filter: blur(12px);
	transition: left 0.3s ease;
	z-index: 1000;
	overflow-y: auto;
	padding-top: 1rem;
	overflow: hidden;
}

div.mobile-menu .custom-logo {
	position: relative;
	left: 10%;
	margin-bottom: 2rem;
}*/

/* Active Menu State */
/*div.mobile-menu.active {
	left: 0;
}
*/
/* Main Menu */
nav.mobile-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

nav.mobile-nav ul.main-menu > li {
	padding: 12px;

	/* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

nav.mobile-nav ul.main-menu > li a,
nav.mobile-nav ul.main-menu > li span.has-submenu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 2rem;
	color: white;
	text-decoration: none;
	font-size: 15px;
	cursor: pointer;
}

/* Submenu Container */
.mobile-submenu {
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(296deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
	backdrop-filter: blur(12px);
	transition: left 0.3s ease;
	z-index: 1000;
	overflow-y: auto;
	padding-top: 4rem;
}

/* Active Submenu */
div.mobile-submenu.active {
	left: 0;
}

/* Submenu Header */
.mobile-submenu .submenu-header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 15px;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	font-size: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	top: -4%;
}

.mobile-submenu .submenu-header span {
	font-size: 12px;
	text-transform: uppercase;
	opacity: 0.6;
}

.mobile-submenu .submenu-header .back-button {
	background: none;
	border: none;
	color: white;
	font-size: 16px;
	cursor: pointer;
	padding: 0;
	font-family: inherit;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

/* Submenu Items */
.mobile-submenu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-submenu ul > li {
	padding: 15px;
	/* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.mobile-submenu ul > li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 2rem;
	color: white;
	text-decoration: none;
	font-size: 15px;
	cursor: pointer;
}

/* Phone Number Style */
nav.mobile-nav ul.main-menu > li a.mobile-phone {
	font-size: 16px;
	color: white;
	display: flex;
	align-items: center;
}

nav.mobile-nav ul.main-menu > li a.mobile-phone i {
	margin-right: 8px;
}

/* Phone Button */
div.mobile-menu nav.mobile-nav ul li a.mobile-phone {
	border: 1px solid #ea7c10;
	border-radius: 20px;
	padding: 12px 24px !important;
	font-size: 17px;
	margin-top: 0px;
	margin-left: 0;
	text-align: center;
	background-color: #ea7c10;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	box-shadow: 0 0 20px rgba(240, 203, 123, 0.2);
	display: block;
}

/* Scrollbar Styling */
div.mobile-menu::-webkit-scrollbar {
	width: 6px;
}

div.mobile-menu::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
}

div.mobile-menu::-webkit-scrollbar-thumb {
	background: rgba(240, 203, 123, 0.5);
	border-radius: 3px;
}

/* Main Menu Default State */
nav.mobile-nav ul.main-menu {
	opacity: 1;
	transition: opacity 0.3s ease;
	position: relative;
	z-index: 999;
}

/* Hide Main Menu When Submenu is Active */
nav.mobile-nav ul.main-menu.hidden {
	opacity: 0;
	pointer-events: none;
}

/* Submenu Default State */
.mobile-submenu {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, left 0.3s ease;
}

/* Submenu Active State */
div.mobile-submenu.active {
	opacity: 1;
	pointer-events: auto;
}

.search-container {
	display: none;
	width: max-content;
	background: transparent;
	padding: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: fixed;
	left: 0%;
	right: 0%;
	top: 30px;
	z-index: 1000;
	transform: translateY(80px);
	margin-inline: auto;
	min-width: 47%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 14px;
}

.search-wrapper {
	max-width: 600px;
	margin: 0 auto;
}

.search-form {
	display: flex;
	gap: 10px;
}

.search-input {
	flex: 1;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
}

input.search-input {
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	color: #000000;
}

input.search-input::placeholder {
	color: #e1dbdb;
}

.search-submit-btn {
	padding: 10px 20px;
	background: #efb93f;
	border: none;
	border-radius: 5px;
	color: white;
	cursor: pointer;
}

.search-close-btn {
	padding: 10px;
	background: none;
	border: none;
	color: white;
	cursor: pointer;
}

.search-preview {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	margin-top: 10px;
	max-height: 300px;
	overflow-y: auto;
	width: 95%;
}

@media (width < 768px) {
	.search-submit-btn {
		padding: 6px 16px;
	}

	.search-input {
		padding: 5px 10px;
	}

	.search-input::placeholder {
		font-size: 14px;
	}

	.search-close-btn {
		padding: 10px 2px;
	}

	.search-container {
		padding: 10px;
		top: 3%;
	}

	.search-preview div {
		max-width: 90vw !important;
	}

	.search-preview h5 {
		font-size: 12px !important;
	}

	.search-preview p {
		font-size: 10px !important;
		line-height: 1.5;
	}
}

.blog-dropdown {
	position: absolute;
	background: transparent;
	width: max-content;
	max-width: 600px;
	padding: 0;
	border: 1px solid #000;
	border-radius: 10px;
	display: none;
	opacity: 0;
	transform: translateX(-45%) translateY(0);
	overflow: hidden;
}

.blog-dropdown.active {
	display: block;
	opacity: 1;
	transform: translateX(-45%) translateY(10px);
}

.blog-dropdown-blog {
	display: flex;
	align-items: center;
	padding-block: 6px;
	padding-inline: 12px;
	border-bottom: 1px solid grey;
	background: white;
	/* backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px); */
	color: #000;
}

.blog-dropdown-blog:hover {
	background: radial-gradient(
		circle at top,
		#3eb6a8 0%,
		#1a9e8f 30%,
		#1a7b72 100%
	);
	color: #fff;
}

.blog-dropdown-text {
	padding-right: 10px;
}

.blog-dropdown-title {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 700;
	/* color: #fff; */
	letter-spacing: 0.35px;
}

.blog-dropdown-description {
	font-size: 12px;
	/* color: #fff; */
	line-height: 1.6;
	text-transform: capitalize;
}

.blog-dropdown-image {
	width: 150px;
	height: 100px;
	/* object-fit: cover; */
	border-radius: 8px;
}

.socialLinks {
	position: fixed;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	padding: 0;
	margin: 0;
	z-index: 100;
	max-width: 45px;
}

.socialLinks * {
	padding: 0;
	margin: 0;
}

.socialLinks ul {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	/* gap: 1px; */
	width: 200px;
	transform: translateX(-155px);
	border-radius: 12px;
}

.socialLinks li {
	background-color: #ea7c10;

	/* Glassy effect */
	backdrop-filter: blur(6px);
	/* Apply blur for the glass effect */
	display: flex;
	justify-content: flex-end;
	padding-right: 5px;
	padding-block: 5px;
	transition: transform 250ms ease, background 250ms ease,
		border-radius 250ms ease;

}

.socialLinks li:hover {
	transform: translateX(8px);
}

/* Links */
.socialLinks a {
	--link-size: 40px;
	width: var(--link-size);
	height: var(--link-size);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
	color: #fff;
	font-size: 22px;
	/* Icon size */
	transition: transform 0.3s, background 0.3s;
}

.socialLinks a:hover {
	transform: scale(1.1);
}

/* Hover Effects for Individual Social Media */
.socialLinks li:nth-child(1) {
	border-radius: 0 12px 0 0;
}

.socialLinks li:nth-child(1):hover {
	background: #305891;
	/* Facebook blue */
	border-radius: 0 12px 12px 0;
}

.socialLinks li:nth-child(2) {
	border-radius: 0 0 0 0;
}

.socialLinks li:nth-child(2):hover {
	background: #007bb6;
	/* LinkedIn blue */
	border-radius: 0 12px 12px 0;
}

.socialLinks li:nth-child(3) {
	border-radius: 0 0 0 0;
}

.socialLinks li:nth-child(3):hover {
	background: linear-gradient(
		165deg,
		#515bd4 20%,
		#8134af 40%,
		#dd2a7b 60%,
		#feda77 90%
	);
	/* Instagram gradient */
	border-radius: 0 12px 12px 0;
}

.socialLinks li:nth-child(4) {
	border-radius: 0 0 12px 0;
}

.socialLinks li:nth-child(4):hover {
	background: #af0606;
	/* YouTube red */
	border-radius: 0 12px 12px 0;
}

@media (width < 700px) {
	.socialLinks {
		display: none;
	}
}

/* header styles end here */

/* footer styles start here */

/*footer {
	background: radial-gradient(circle at top, #000000 0%, #000000 30%, #000000 100%);
	color: #fff;
	padding: 2rem 5rem;
}

footer a {
	color: inherit;
}
*/
.first-footer-section {
	display: flex;
	justify-content: space-between;
	align-items: center;

	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	/* padding-inline: 2rem; */
}

.first-footer-section > :first-child {
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: 1px;
	font-weight: 600;
}

.footer-nav-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 40px;
	/* margin-right: 1rem; */
}

.footer-nav-list a {
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 8px 20px;
	margin: 16px 30px;
	transition: all 150ms ease-in-out;
	border-radius: 10px;
	outline: 2px solid rgba(255, 255, 255, 0);
	font-size: 16px;
}

.footer-nav-list a:hover {
	outline: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 10px;
}

.second-footer-section {
	--font-weight: 600;
	display: flex;
	justify-content: space-between;
	padding-top: 2rem;
}

.second-footer-section > :first-child p {
	font-size: 12px;
	padding: 2px 0;
	margin: 0;
}

.second-footer-section .golden-link {
	display: block;
	font-weight: var(--font-weight);
	background-color: #ffffff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.second-footer-section i {
	margin-right: 6px;
}

.second-footer-section .golden-link .bi::before {
	font-weight: var(--font-weight) !important;
}

.footer-icons {
	display: flex;
	margin-block: 2rem;
}

.footer-icons {
	display: flex;
	margin-block-start: 2rem;
}

.footer-icon {
	padding: 0;
	margin: 0;
	text-decoration: none;
	box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.1);
}

.footer-icon {
	padding: 9px;
	margin-inline: 6px;
	background-color: #ea7c10;
	display: flex;
	place-content: center;
	border-radius: 999rem;

	transition: background 250ms ease-in-out;
}

.footer-icon svg {
	fill: white;
	/* -webkit-text-stroke-color: black; */
	width: 18px;
	height: 18px;
	transition: fill 200ms ease-in-out, height 200ms ease, width 200ms ease;
}

.footer-icon:hover {
	background: #ffffff;

	animation: energy 0.7s ease-in;
}

.footer-icon:hover svg {
	fill: #000000;
	/* -webkit-text-stroke-color: white; */

	width: 18px;
	height: 18px;
}

@keyframes energy {
	0% {
		transform: scale (1, 1);
	}

	25% {
		transform: scale(0.9, 1.1);
	}

	50% {
		transform: scale(1.2, 0.8);
	}

	75% {
		transform: scale(0.95, 1.05);
	}
}

@media (width < 960px) {
	footer {
		padding: 1rem;
	}

	.footer-nav-list a {
		font-size: 13px;
	}
}

@media (width < 900px) {
	.first-footer-section {
		flex-direction: column;
		align-items: normal;
		padding-block: 2rem;
		gap: 2rem;
		border: none;
	}
	.footer-nav-list {
    display: inline-block;
}
.footer-nav-list a {
        font-size: 16px;
        margin-left: 0px;
    }

	.second-footer-section {
		flex-direction: column-reverse;
		align-items: center;
		padding-block: 2rem;
		gap: 2rem;
		padding-top: 0px;
	}

	.first-footer-section > :first-child {
		display: inline-block;
		grid-template-columns: 1fr 1fr;
		/* align-items: center; */
		column-gap: 1rem;
	}

	.first-footer-section > :first-child > :nth-child(1) {
		grid-row: 1/3;
		grid-column: 1/2;
	}

	.first-footer-section > :first-child > :nth-child(3) {
		margin-block: 10px;
	}

	.second-footer-section > div {
		width: 100%;
	}

	.second-footer-section > :nth-child(2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.4);
		padding-bottom: 2rem;
		margin-inline: auto;
		text-align: left;
		font-size: 13px;
	}
}

@media (width < 450px) {
	.footer-nav-list {
		        width: 100%;
        text-align: left;
	}
	.footer-nav-list li{
		padding-bottom: 15px;
	}

	.footer-nav-list a {
		padding: 10px 9px;
		margin: 16px 8px;
	}

	footer {
		padding: 1rem;
		padding-bottom: 3rem;
	}

	.first-footer-section > :first-child {
		display: inline-block;
		grid-template-columns: 1fr;
		column-gap: 1rem;
		width: 100%;
	}

	.first-footer-section > :first-child > :nth-child(3) {
		margin-block: 2rem 0px;
	}
	.footer-logo{
		    margin-bottom: 20px;
	}
}

/* footer styles end here */
.side-flex {
	display: flex;
}
.side-flex main {
	width: 67%;
	margin-inline: auto;
	margin-bottom: 2rem;
	padding-inline: 2.5rem;
}
.side-flex > div {
	width: 30%;
	/* background: pink; */
	/* height: 300vh; */
	height: max-content;
	position: sticky;
	top: 5rem;
}
@media (width < 1000px) {
	.side-flex {
		flex-direction: column;
		align-items: center;
	}
	.side-flex main {
		width: 100%;
		margin-inline: auto;
		margin-bottom: 2rem;
		padding-inline: 26px;
	}
	.side-flex > div {
		width: 100%;
		height: min-content;
		position: relative;
		top: 0;
		height: min-content;
	}
}

.fakeTitle {
	font-weight: 600;
	line-height: 1.4;
	color: #121212;
	font-weight: 600;
	text-align: center;
	margin-bottom: 2.5rem;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.35);
	font-size: 28px;
}

@media (width < 700px) {
	.fakeTitle {
		font-size: 26px;
	}
}

/* index hero section styles */

/*.hero-section {
	position: relative;
	width: 100%;
	height: 100dvh;
	background-image: url("../img/mt-bg-desktop.png");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
@media (width < 700px) {
	.hero-section {
		background-image: url("../img/mt-bg-mobile.png");
	}
}
*/
/*.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.03);
	pointer-events: none;
	z-index: 1;
}

.hero-section > * {
	position: relative;
	z-index: 2;
}*/

/* iOS Safari Fix */
@supports (-webkit-touch-callout: none) {
	.hero-section,
	.full-width-bg:has(.team-carousel),
	.full-width-bg:has(.developer-carousel) {
		background-attachment: scroll; /* iOS Safari workaround */
	}

	/* .hero-section::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: -1;
		background-image: url("../img/mt-bg-desktop.png");
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		transform: translateZ(0); 
	} */
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.search-bar-container {
	position: relative;

	z-index: 500;
	width: 90%;
	max-width: 1000px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 15px;
	padding: 30px 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	text-align: center;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (width < 700px) {
	.search-bar-container {
		top: 9%;
	}
}

.search-bar-container h1 {
	font-size: 2.5rem;
	font-weight: bold;
	color: #fff;
	margin-bottom: 20px;
}

.search-bar-container p {
	font-size: 12px;
	line-height: 1.2;
	color: #ddd;
	margin-bottom: 10px;
}

.hero-search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	align-items: center;
	/* width: 60%;
	margin-inline: auto;
	margin-bottom: 0; */
}

.hero-search-form input::placeholder {
	color: white;
}

.hero-search-form .form-group.form-group {
	position: relative;
	width: 50%;
	margin-bottom: 0;
}

.hero-search-form .form-group input {
	width: 100%;
	padding: 6px 20px;
	font-size: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 30px;
	outline: none;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-weight: bold;
	margin-bottom: 0;
}

.hero-search-form .form-group input::placeholder {
	color: #ddd;
}

.hero-search-form .form-group input:focus {
	border: 2px solid #00aaff;
	background: rgba(255, 255, 255, 0.5);
	color: #fff;
	box-shadow: 0 0 8px rgba(0, 170, 255, 0.5);
}

.search-btn {
	padding: 8px 16px;
	font-size: 15px;
	background: radial-gradient(circle at top, #000000 0%, #000000 30%, #000000 100%);
	color: white;
	font-weight: 600;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
}

.search-btn:hover {
	background: radial-gradient(circle at top, #000000 0%, #000000 30%, #000000 100%);
	transform: translateY(-1px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.search-bar-container {
		padding: 20px;
	}

	.search-bar-container h1 {
		font-size: 20px;
		line-height: 1.4;
		margin-bottom: 10px;
	}

	.search-bar-container h1 span {
		display: block;
		font-size: 30px;
	}

	.search-bar-container p {
		font-size: 14px;
		line-height: 1.2;
		color: #ddd;
		margin-bottom: 20px;
	}

	.search-btn {
		font-size: 14px;
		padding: 12px;
		width: 120px;
	}

	.hero-search-form {
		flex-direction: column;
	}

	.hero-search-form .form-group.form-group {
		position: relative;
		width: 100%;
	}

	.hero-search-form .form-group input::placeholder {
		font-size: 12px;
	}
}

/* search Suggestions styling */
.suggestions-box {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	max-height: 200px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	z-index: 500;
	display: none;
	/* Hidden by default */
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	margin-top: 5px;
}

.suggestions-box .list-group-item {
	padding: 10px 15px;
	font-size: 1rem;
	cursor: pointer;
	border: none;
	text-align: left;
}

.suggestions-box .list-group-item.active {
	background-color: #007bff;
	/* Highlight background */
	color: #fff;
	/* Highlight text */
}

.suggestions-box.show {
	display: block;
}

/*  featured property section styles */

.property-carousel {
	overflow: hidden;

	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
	position: relative;
	padding-bottom: 5rem;
	width: 90%;
	margin-inline: auto;
}

.full-width-bg {
	padding-block-start: 2rem;
	background: #f0f0f0;
}

.property-carousel h2 {
	font-weight: 600;
	text-align: center;
	margin-bottom: 2.5rem;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}

.bg-green {
	position: relative;
	color: #fff;
	display: inline-block;
	    background: #ea7c10;
	padding-block: 4px;
	--padding-translate: 6px;
	padding-inline: var(--padding-translate);
	transform: translateX(-var(--padding-translate));
	border-radius: 10px;
}

.property-carousel::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari and Opera */
}

.property-carousel .swiper-slide h3 {
	font-size: 18px;
	margin-block: 0.5rem;
}

.property-carousel .swiper-slide img {
	object-fit: fill;
}

.swiper-button-prev,
.swiper-button-next {
	--swiper-button-size: 40px;

	top: 45%;
	color: #000000;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid #000000;
	border-radius: 50%;
	width: var(--swiper-button-size);
	height: var(--swiper-button-size);
	background: rgba(17, 17, 17, 0.5);
	box-shadow: rgba(0, 0, 0, 0.3) 0px 6px 12px 0px;
	fill: #fff;
	transition: all 200ms ease;
}

.swiper-button-prev svg,
.swiper-button-next svg {
	height: 26px;
	/* width: 20px; */
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: rgba(17, 17, 17, 0.9);
	box-shadow: rgba(0, 0, 0, 0.5) 0px 6px 12px 0px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	display: none;
	font-size: 23px;
	font-weight: 600;
	color: #fff;
}

.swiper-pagination-bullet-active {
	background: radial-gradient(circle at top, #000000 0%, #000000 30%, #000000 100%);
}

.property-card-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
	border-radius: 10px;
}

.property-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-text {
	font-size: 13px;
	margin-block: 4px;
}

.propertySwiper .swiper-slide {
	background: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.05);
	padding: 20px 14px;
	height: 100%;
	transition: transform 0.3s ease, opacity 0.3s ease;
	opacity: 0.7;
	/* Dim inactive slides */
	transform: perspective(1000px) scale(0.9);
	/* Slightly smaller by default */
	height: 30rem;
	border-radius: 8px;
	overflow: hidden;
}

.propertySwiper .swiper-slide::after {
	content: "Exclusive";
	position: absolute;
	top: 20px;
	left: -32px;
	width: 40%;
	transform: rotate(-45deg);
	text-align: center;
	background-color: #ea7c10;
	color: #fff;
}

.propertySwiper .swiper-slide a {
	color: #000000;
}

.propertySwiper .swiper-slide-active {
	/*transform: perspective(1000px) scale(1.1);*/
	/* Enlarged center slide */
	opacity: 1;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	/* Add shadow for depth */
}

.propertySwiper .swiper-slide-prev,
.propertySwiper .swiper-slide-next {
	/*transform: perspective(1000px) rotateY(-20deg) scale(0.9);*/
	/* Slightly tilted */
	opacity: 0.9;
	/* Slightly dim */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	/* Shadow for depth */
}

.propertySwiper .swiper-slide-next {
	/*transform: perspective(1000px) rotateY(20deg) scale(0.9);*/
	/* Tilt the other direction */
}

@media (max-width: 768px) {
	.property-carousel {
		padding-inline: 16px;
	}
}

/*  property grid styles */

.property-container .fakeTitle {
	margin-bottom: 1rem;
}

.properties-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 95vw;
	padding: 20px;
	margin-inline-start: auto;
}
.properties-grid{
    margin-inline: auto;
}
.property-card {
	background: hsl(0, 0%, 100%);
	background: radial-gradient(circle at top, #000000 0%, #000000 30%, #000000 100%);
	color: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 16px;
	margin-bottom: 20px;
	transition: transform 0.3s;
	display: grid;
	/* height: 35rem; */
	min-height: 36rem;
}

@media (width<700px) {
	.property-card {
		height: 33rem;
	}
}

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

.property-card.no-results-card {
	width: 100%;
	max-width: 370px;
	min-height: 420px;
	text-align: center;
}

.property-info-wrapper {
	display: flex;
	justify-items: start;
	align-items: start;
	flex-direction: column;
	gap: 6px;
}

.property-info-wrapper > div {
	display: flex;
	align-items: flex-start;
	gap: 4px;
}

.property-card h2 {
	font-size: 22px;
	color: inherit;
	margin: 0;
	text-align: center;
	font-weight: 500;
}

.property-card h2 a {
	color: inherit;
}

.property-card h2 a:hover {
	color: inherit;
	background: radial-gradient(circle at top, #000000 0%, #000000 30%, #000000 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.property-card p {
	font-size: 16px;
	margin-bottom: 4px;
	color: inherit;
}

.property-card p:has(span) {
	font-size: 15px;
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 4px 0;
	padding-top: 5px;
	flex-wrap: wrap;
}

.property-card span {
	font-size: 12px;
	display: inline-block;
	border: 1px solid grey;
	height: 20px;
	display: flex;
	width: max-content;
	padding-inline: 4px;
	align-items: center;
	border-radius: 3px;
	color: #fff;
	font-weight: 600;
	margin-left: 8px;
}

.property-images img {
	width: 100%;
	display: block;
	height: 250px;
	border-radius: 6px 6px 0 0;
}

.details-link {
	display: inline-flex;
	margin-top: 10px;
	padding: 0 15px;
	background-color: #ea7c10;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	position: relative;
	max-width: 135px;
	font-size: 14px;
	height: 40px;
	align-items: center;
	justify-content: center;
	font-weight: 500;
}

.details-link:hover {
	color: #fff;
}

.details-link::before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	border-radius: 5px;
	height: 100%;
	background: linear-gradient(164deg, #fff, transparent 40%);
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 150ms ease-in-out;
}

.details-link:hover::before {
	opacity: 0.4;
}

.read-more-container {
	text-align: center;
	margin-top: 20px;
}

#readMoreBtn,
#readMore-Btn {
	padding: 10px 20px;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	margin-inline: auto;
	background-color: #ea7c10;
	border: none;
	font-size: 15px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 4px;
	display: inline-flex
;
}

#readMoreBtn:hover,
#readMore-Btn:hover {
	background-color: #ea7c10;
}

.property-container {
	padding-block: 3rem;
}

.content {
	width: 90%;
	margin-inline: auto;
}

.content .text-section {
	width: 80%;
}

@media (width < 972px) {
	.properties-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (width < 670px) {
	.properties-grid {
		width: 100%;
		grid-template-columns: repeat(1, 1fr);
		padding: 14px;
	}

	.property-card span {
		font-size: 10px;
	}

	.property-card h2 {
		font-size: 20px;
		text-wrap: balance;
	}

	.property-card p,
	.property-info-wrapper > div {
		font-size: 14px;
	}

	.property-card img {
		height: 240px;
		object-fit: cover;
	}

	.property-card {
		margin-bottom: 0;
	}

	.content .text-section {
		width: 94%;
		font-size: 15px;
		line-height: 1.6;
	}

	.property-container {
		padding-inline: 0 !important;
	}
}

.properties-grid > .property-card:nth-child(1):only-child {
	grid-column: 2;
}

/* Location carasouel styles */

.location-card {
	position: relative;
	height: 100%;
}

.location-image {
	width: 100%;
	height: 350px;
	overflow: hidden;
	position: relative;
	    border-radius: 50px;
}

.location-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.location-image:hover img {
	/* transform: scale(1.1); */
}

.location-image .overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: linear-gradient(to top, rgb(247 215 32) 26%, rgba(0, 0, 0, 0.45) 26%, rgba(0, 0, 0, 0.1));
	transition: background 0.5s ease;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	overflow: hidden;
}

.location-image:hover .overlay {
	background: linear-gradient(to top, rgb(247 215 32) 26%, rgba(0, 0, 0, 0.45) 26%, rgba(0, 0, 0, 0.1));
}

.location-image .overlay h3,
.location-image .overlay p {
	color: #000;
	margin: 0;
}

.location-image .overlay p {
	margin-top: 5px;
	font-size: 14px;
}

@media (width < 700px) {
	.property-carousel:has(.location-card) {
		padding-inline: 16px;
	}
}

/* Team member carasouel styles */

.full-width-bg:has(.team-carousel) {
	background: url("../img/mt-bg-desktop.png") center/cover no-repeat;
	background-attachment: fixed;
	position: relative;
	padding-block: 3rem;
}

.full-width-bg:has(.team-carousel)::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(5px);*/
}

.team-carousel {
	/* padding-block: 1rem 4rem; */
	width: 90%;
	margin-inline: auto;
	padding-bottom: 4rem;
}

.teamSwiper {
	padding: 1rem 8px;
}

.team-carousel .fakeTitle {
	text-align: center;
	position: relative;
	/* margin-bottom: 3rem; */
	font-weight: 600;
	font-size: 28px;
	color: #fff;
	width: 65%;
	margin-inline: auto;
	z-index: 3;
}

.team-member-card {
	/* background: rgba(255, 255, 255, 0.3); */
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1),
		inset 0px 1px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	padding: 2px;
	outline: 1px solid #e0af60;
	background: #fff;
}

.team-member-card:hover {
	transform: translateY(-3px);
}

.member-image {
	width: 100%;
	height: 270px;
	position: relative;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
	outline: 1px solid #e0af60;
}

.member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s ease;
}

.team-member-card:hover .member-image img {
	transform: scale(1.02);
}

.member-info {
	padding-block: 1rem 0;
	text-align: center;
	font-style: oblique;
}

.member-info h3 {
	margin: 0;
	font-size: 18px;
	color: #000;
}

.member-info p {
	color: #bfbdbd;
	font-size: 14px;
	margin: 0;
}

@media (width < 700px) {
	.full-width-bg:has(.team-carousel) {
		padding-block: 2rem;
	}
	.team-carousel {
		padding-bottom: 2rem;
	}
}

/*  testimonial or google review styles */

:root {
	--review-width: 392px;
	--testimonial-padding: 7rem;
}

.testimonials .quote-icon {
	width: 40px;
	height: 40px;
	color: #ea7c10;
	margin-bottom: 10px;
}

.testimonials .rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.testimonial-header {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.testimonial-footer {
	display: flex;
	align-items: center;
	gap: 10px;
}

.testimonial-footer .testimonial-name {
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.2;
}

.testimonial-footer .testimonial-image {
	width: 54px;
	height: 54px;
	border-radius: 50%;
}

.testimonial-footer .tick-icon {
	margin-left: auto;
}

.testimonials {
	    background: #ea7c10;
	padding: 40px 0;
}

.testimonials .container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	width: calc(100% - var(--testimonial-padding));
}

.testimonials-header {
	text-align: center;
	padding: 0 20px;
	max-width: 400px;
	width: 100%;
}

.testimonials-header h2 {
	all: unset;
	text-align: left;
	color: #ffffff;
	font-size: 2.875rem;
	font-weight: 500;
	line-height: 1.3;
	display: inline-block;
	margin-block: 10px;
}

.testimonial-prev,
.testimonial-next {
	height: 50px;
	width: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	color: #000;
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 91, 82, 0.2);
}

.testimonial-prev:hover,
.testimonial-next:hover,
.testimonial-prev:focus,
.testimonial-next:focus {
	background: #000;
	color: #fff;
}

.testimonials-navigation {
	display: flex;
	gap: 12px;
	margin-top: 20px;
	position: relative;
}

.testimonials-carousel {
	margin-top: 20px;
	overflow-x: hidden;
}

.testimonialsSwiper {
	max-width: calc(2 * var(--review-width));
}

.testimonial-card {
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	min-height: 260px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.testimonial-image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.testimonial-text {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.8px;
	/* margin-bottom: 1.5rem; */
	line-height: 1.6;
	display: -webkit-box;
	/* -webkit-line-clamp: 6; */
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.testimonials-carousel .swiper-slide {
	width: calc(100% / var(--slides-per-view, 1));
	max-width: var(--review-width);
}

@media (width < 776px) {
	.testimonials-header h2 {
		font-size: 2.75rem;
	}
}

@media (width < 720px) {
	.testimonials .container {
		flex-direction: column;
	}

	.testimonialsSwiper {
		max-width: calc(1 * var(--review-width));
	}
}

@media (width < 426px) {
	.testimonials-header {
		padding: 0;
	}

	.testimonials-header h2 {
		font-size: 2.5rem;
	}

	.testimonials-header h2 span {
		font-size: 2.5rem !important;
	}
}

/* real estate developers carasouel styles */

.full-width-bg:has(.developer-carousel) {
	background: url("../img/mt-bg-desktop.png") center/cover no-repeat;
	background-attachment: fixed;
	position: relative;
	padding-block: 3rem;
}

.full-width-bg:has(.developer-carousel)::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(5px);*/
}

.developer-carousel {
	position: relative;
	z-index: 1;
}

.developer-carousel {
	overflow: hidden;
	width: 90%;
	margin-inline: auto;
	padding-bottom: 4rem;
}

.developer-carousel .fakeTitle {
	font-weight: 600;
	text-align: center;
	margin-bottom: 2.5rem;
	font-size: 28px;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}

.developer-card {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

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

.developer-image {
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.developer-card h3 {
	font-size: 16px;
	text-align: center;
	color: #333;
	margin: 0;
	font-weight: 500;
}

@media (max-width: 768px) {
	.full-width-bg:has(.developer-carousel) {
		padding-block: 2rem;
	}

	.developer-carousel {
		width: 100%;
		padding-inline: 20px;
		padding-bottom: 2rem;
	}

	.developer-card {
		height: 180px;
	}

	.developer-image {
		width: 100px;
		height: 100px;
	}

	.developer-carousel .swiper-button-prev,
	.developer-carousel .swiper-button-next {
		top: 56%;
	}
}

/*  Blog / news carasouel styles */

.blog-carousel {
	padding: 3rem 0;
	background: #f8f8f8;
}

.blog-carousel .fakeTitle {
	text-align: center;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 2rem;
}

.blogSwiper {
	width: 90%;
	margin: 0 auto;
	padding: 20px;
}

.blog-card {
	background: #fff;
	border: 1px solid #ddd;
	padding: 25px;
	height: 100%;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
}

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

.blog-date {
	font-family: "Times New Roman", serif;
	font-style: italic;
	color: #666;
}

.blog-writer {
	font-weight: 500;
	color: #333;
}

.blog-title {
	font-family: "Times New Roman", serif;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.2;
}

.blog-image {
	width: 100%;
	height: 200px;
	margin-bottom: 15px;
}

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

.blog-description {
	font-size: 15px;
	color: #444;
	line-height: 1.6;
	margin-bottom: 20px;
	flex-grow: 1;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-link {
	align-self: flex-start;
	padding: 8px 15px;
	background: #ea7c10;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.blog-link:hover {
	background: #007f70;
	color: white;
}

@media (max-width: 768px) {
	.blog-carousel .fakeTitle {
		margin-bottom: 0;
	}
	.blog-carousel {
		padding-block: 2rem 0;
	}
	.blogSwiper {
		width: 100%;
	}
	.blog-card {
		margin: 10px;
	}

	.blog-title {
		font-size: 20px;
	}
}

/* Why choose section styles */

@property --a {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}

.why-choose-section {
	/* background: pink; */
	height: 70vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* background:
                    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)),
                    url('./assets/img/mt-bg-img3.webp') no-repeat center center / cover; */

	/* background: url("../img/image.png"); */

	background: radial-gradient(circle at top, #000000 0%, #000000 30%, #000000 100%);
}

.why-choose-section h2 {
	background-color: #ea7c10;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
	text-align: center;
	margin-bottom: 2rem;
}

.why-choose-section .card-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 90%;
	margin-inline: auto;
}

.why-choose-section .choose-card {
	/* outline: 2px solid red; */
	display: grid;
	grid-template-columns: 1fr;
	/* grid-template-rows: repeat(4, 1fr); */
	position: relative;
	overflow: visible;
	gap: 10px;
	place-items: center;
	border-radius: 10px;
	padding: 20px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
		rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

	background: rgba(255, 255, 255, 0.02);
	/* background: rgba(0, 0, 0, 0.02); */
	backdrop-filter: blur(6px);
	/* -webkit-backdrop-filter: blur(10px); */

	    background: #ea7c10;
}

.why-choose-section .choose-card {
	overflow: hidden;
	position: relative;
	/* background: red; */
}

.why-choose-section .choose-card::before {
	position: absolute;
	z-index: -1;
	inset: -1em;
	border: solid 10px;
	border-image: conic-gradient(
			from var(--a),
			#ffffff,
			#c5c4c3,
			#ffffff,
			#c5c4c3
		)
		1;
	filter: blur(0.6em);

	content: "";
	/* animation: reverse-a 0.5s linear forwards infinite; */
	/* animation: a 1s linear; */

	z-index: 5;
	transition: all 0.5s ease;
}

.why-choose-section .choose-card:hover::before {
	border: solid 17px;
	filter: blur(0.6em);
	border-image: conic-gradient(
			from var(--a),
			#d39f51,
			#e5b566,
			#fff7a9,
			#e5b566,
			#d39f51
		)
		1;

	transition: all 0.5s ease;
	/* animation: a 1s linear infinite alternate; */
}

@keyframes a {
	to {
		--a: 180deg;
	}
}

@keyframes reverse-a {
	from {
		--a: 45deg;
		/* Start at the hovered state */
	}

	to {
		--a: 0deg;
		/* Return to original state */
	}
}
.image-wrapper {
	padding-block: 2rem 3rem;
	display: flex;
	justify-content: center;
}

.image-wrapper img {
	width: 100%;
	border-radius: 8px;

	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
		rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
		background: #000000;
    padding: 5px;
}

@media (width < 700px) {
	.image-wrapper img {
		width: 100%;
	}
}
.image-wrapper img:hover {
}

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

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

.choose-card .image-wrapper {
	padding-block: 5px 0;
}
.choose-card .image-wrapper img {
	height: 70px;
	width: 70px;
}
.choose-card .title {
	/* grid-column: 2/3; */
	/* grid-row: 1/2; */
	display: grid;
	align-items: end;
}

.choose-card .description {
	/* grid-column: 2/3; */
	/* grid-row: 2/5; */
	font-size: 14px;
}

.choose-card .title,
.choose-card .description {
	background-color: #000;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	text-align: center;
}

@media (width < 700px) {
	.why-choose-section {
		height: min-content;
		padding-block: 40px;
	}

	.why-choose-section h2 {
		width: 65%;
		margin-inline: auto;
	}

	.why-choose-section .card-wrapper {
		display: grid;
		grid-template-columns: 1fr;
		gap: 30px;
		width: 90%;
		margin-inline: auto;
	}

	.full-width-bg:has(.team-carousel) {
		padding-bottom: 0;
	}
}

/* styes for section that has the main h1 */

.heading-section {
	padding: 50px 20px;
	text-align: center;
	background-color: #264d5e;
	/* Add texture image */
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	min-height: 65vh;
	height: max-content;
	background-blend-mode: overlay;
	/* Blend the texture with the background color */
	background-size: cover;
	/* Ensure the texture fills the area */
}

.heading-section h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
	background-color: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.heading-section p {
	font-size: 1rem;
	line-height: 1.8;
	margin: 0 0 20px;
	max-width: 700px;
	text-align: center;
	text-wrap: pretty;
}

/* CTA Button Styling */
.cta-button {
	display: inline-block;
	padding: 15px 30px;
	/*background-color: #ea7c10;*/
	background-color: #ea7c10;
	color: #000;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 25px;
	/* Rounded button */
	box-shadow: 0 4px 10px rgba(240, 203, 123, 0.3);
	/* Subtle glow */
	transition: all 0.3s ease;
}

.cta-button:hover {
	background-color: #ea7c10;

	/* Slightly darker shade on hover */
	color: #fff;
	transform: translateY(-3px);
	/* Lift button on hover */
	box-shadow: 0 6px 15px rgba(240, 203, 123, 0.4);
	/* Enhanced shadow on hover */
}

/* Responsive Styling */
@media (max-width: 768px) {
	.heading-section h1 {
		font-size: 2rem;
	}

	.heading-section p {
		font-size: 0.95rem;
	}

	.cta-button {
		font-size: 0.9rem;
		padding: 12px 25px;
	}
}

@media (max-width: 480px) {
	.heading-section h1 {
		font-size: 1.5rem;
	}

	.heading-section p {
		font-size: 0.85rem;
	}

	.cta-button {
		font-size: 0.85rem;
		padding: 10px 20px;
	}
}

/*  Get to know about moneytree realty section styles */

/*.about-section {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(12, 1fr);
	padding-block: 4rem;
	    background: #ea7c10;
	max-height: 700px;
	margin-top: 30px;
}
*/
.about-section-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 10px;
	border-top-left-radius: 150px;
    border-bottom-right-radius: 150px;
}

.about-section-image {
	height: 100%;
	grid-column: 2/6;
	grid-row: 2/13;
	border-radius: 10px;
	/*padding: 4px;*/
	background-color: #ea7c10;
	outline: 1px solid white;
	z-index: 2;
	border-top-left-radius: 150px;
    border-bottom-right-radius: 150px;
}

.about-section-heading {
	grid-column: 7/11;
	grid-row: 2 / auto;
	background: #fff;
	border-radius: 12px;
	margin-top: 30px;
	font-size: 26px;
	padding: 10px;
	text-align: center;
	z-index: 3;
}

.about-section-heading span {
	background-color: #ea7c10;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 36px;
}

.about-section-text {
	grid-column: 6/13;
	grid-row: 3/16;
	background: #fff;
	padding: 10px 2rem;
	border-radius: 8px;
	margin: 40px;
	transform: translateX(-13%);
}

@media (width < 700px) {
	.about-section {
		/* grid-template-columns: 1fr; */
		padding-block: 1rem;
	}

	.about-section-heading span {
		font-size: 24px;
	}

	.about-section-heading {
		grid-column: 2/12;
		grid-row: 1 / auto;
		font-size: 16px;
	}

	.about-section-image {
		grid-column: 3/11;
		grid-row: 1/8;
	}

	.about-section-text {
		grid-column: 2/12;
		grid-row: auto;
		margin: 0;
		padding: 12px 14px;
		z-index: 2;
	}

	.about-section-text p {
		font-size: 11px;
	}

	.about-section-text p strong:first-child {
		font-size: 13px;
		text-align: center;
		display: block;
		text-wrap: pretty;
	}
}

.about-section-text p {
	font-size: 12px;
}

.animate-on-scroll {
	opacity: 0;
	transform: translate(0, 0);
	transition: transform 0.6s ease, opacity 0.6s ease;
}
.animate-on-scroll[data-direction="left"] {
	transform: translate(-100px, -60px);
}

/* this will actually transiton from left since its that negative but okay ik it says right but it comes from left */
.animate-on-scroll[data-direction="right"] {
	transform: translateX(-200px);
}

.animate-on-scroll[data-direction="top"] {
	transform: translateY(-50px);
}

.animate-on-scroll[data-direction="bottom"] {
	transform: translateY(50px);
}

.animate-on-scroll.active {
	opacity: 1;
	transform: translate(0, 0);
}

.side-flex-right .property-carousel {
	margin: 20px 0;
	max-width: 300px;
	padding-bottom: 0;
}

.side-flex-right .carousel-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.side-flex-right h2.carousel-title {
	font-size: 17px;
	color: #333333;
	margin: 0;
	text-shadow: none;
}

.side-flex-right .carousel-nav button {
	background: rgb(22, 152, 139);
	color: #fff;
	border: none;
	padding: 8px 13px;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-size: 12px;
}

.side-flex-right .carousel-nav button:hover {
	background: rgb(14, 82, 75);
}

.side-flex-right .carousel-wrapper {
	overflow: hidden;
}

.side-flex-right .swiper-container {
	padding: 5px 0;
}

.side-flex-right .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

.side-flex-right .property-card {
	width: 100%;
	height: 350px;
	max-width: 300px;
	padding-inline: 10px;
	padding-block: 10px 3rem;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	font-size: 0.85rem;
	display: flex;
	flex-direction: column;
	min-height: min-content;
}

.side-flex-right .property-card:hover {
	transform: translateY(-5px);
}

.side-flex-right .property-card img {
	width: 270px;
	height: 130px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 8px;
}

.side-flex-right .property-card h3 {
	font-size: 1rem;
	margin-bottom: 6px;
	color: #333;
	margin-top: 0;
	padding-block: 0;
}

.side-flex-right .property-card p {
	font-size: 0.8rem;
	color: #555;
	margin: 3px 0;
}

.side-flex-right .property-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

main.side-flex-right {
	display: flex;
}

.side-flex-right .blog-container {
	width: 68%;
}

.side-flex-right .flex-component-container {
	width: 32%;
}

@media (width < 800px) {
	main.side-flex-right {
		display: flex;
		flex-direction: column;
	}

	.side-flex-right .blog-container,
	.side-flex-right .flex-component-container {
		width: 100%;
	}

	.side-flex-right .property-carousel {
		max-width: 100%;
		margin-inline: auto;
	}
	.side-flex-right .property-card {
		height: 375px;
	}
}

.side-flex-right .property-card .card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px 0;
	margin-top: 10px;
}

.side-flex-right .property-card .card-grid div p:first-child {
	font-weight: 700;
}

.side-flex-right .property-card .card-grid p {
	font-size: 11px;
	line-height: 1.6;
	margin-bottom: 0;
}

.side-flex-right .property-card .card-grid span {
	font-size: 10px;
	margin: 0;
	display: inline-block;
}

.celeb-homes-swiper-container .property-card {
	height: 230px;
}

@media (width < 700px) {
	.celeb-homes-swiper-container .property-card {
		height: 230px;
	}
}

.side-flex-right .contactFormWrapper {
	padding: 1.5rem 1rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0 0 5px rgba(0, 0, 0, 0.05);
	margin-block: 1rem;
	margin-right: 0;
	max-width: 320px;
}

.side-flex-right .contactFormWrapper label {
	font-size: 12px;
	color: #ced4da;
}

.side-flex-right .contactFormWrapper textarea {
	border: none;
}

.side-flex-right .contactFormWrapper input::placeholder,
.side-flex-right .contactFormWrapper textarea::placeholder {
	color: #6c757d;
}

.side-flex-right .contactFormWrapper form {
	display: flex;
	flex-direction: column;
	padding: 1rem 0.8rem;
}

.side-flex-right .contactFormWrapper form input,
.side-flex-right .contactFormWrapper form textarea {
	margin-bottom: 1em;
	border-radius: 6px;
	outline: 1.85px solid #e9ecef;
	padding: 10px 10px;
	font-size: 12px;
}

.side-flex-right .contactFormWrapper p {
	text-transform: capitalize;

	background: linear-gradient(
		45deg,
		#000000 0%,
		#333333 20%,
		#666666 40%,
		#4d4d4d 70%,
		#262626 80%,
		#000000 100%
	);

	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
	font-size: 22px;
	width: max-content;
	margin-inline: auto;
	margin-bottom: -16px;
	letter-spacing: 1.6px;
}

.number-input-wrapper {
	display: flex;
	align-items: start;
}

.number-input-wrapper input {
	width: 100%;
}

.country-code {
	background: #f8f9fa;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	padding: 0.25rem 0.65rem 0.25rem 0.45rem;
	font-size: 14px;
	color: #6c757d;
	margin-right: 10px;
}

.side-flex-right .contactFormWrapper .button-div {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.side-flex-right .contactFormWrapper .button-div button {
	width: 30%;
	border-radius: 12px;
	transform: none;
}

.side-flex-right .contactFormWrapper input:not(:placeholder-shown):valid {
	outline-color: #52b788;
}

.side-flex-right .contactFormWrapper input:not(:placeholder-shown):invalid {
	outline-color: #ee6055;
}

.side-flex-right .contactFormWrapper input:focus:invalid,
.side-flex-right .contactFormWrapper textarea:focus {
	outline-color: #ced4da;
}
@media (width < 700px) {
	.side-flex-right .contactFormWrapper {
		margin-inline: auto;
	}
}

.card-button {
	background: radial-gradient(
		circle at top,
		#0e9688 0%,
		#007f70 30%,
		#ea7c10 100%
	);
	padding: 12px 10px;
	border-radius: 12px;
	color: white;
	text-transform: capitalize;
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
	position: relative;
	text-align: center;
	cursor: pointer;
}

.card-button:hover {
	transform: translateY(-1px);
	background: radial-gradient(
		circle at top,
		#0e9688 0%,
		#1c9486 30%,
		#ea7c10 100%
	);
	color: white;
}

.card-button--white {
	background: #fff;
	border: 2px solid #ea7c10;
	color: #ea7c10;
}

.card-button--white:hover {
	transform: translateY(-1px);
	background: radial-gradient(circle at top, #f3fdfc, #f6fdfc, #f3fffe);
	color: #ea7c10;
}

.success-message {
	margin-top: 15px;
	padding: 10px;
	font-size: 14px;
	color: #256d2e;
	background-color: #dff2e1;
	border: 1px solid #b3e0bb;
	border-radius: 4px;
	text-align: center;
}

.tags {
	display: flex;
	list-style-type: none;
	flex-wrap: wrap;
	gap: 3px;
}

.tags > li {
	margin: 0;
	background-color: rgba(0, 0, 0, 0.06);

	padding: 0px 10px;
	border-radius: 6px;
}

.tags > li > a {
	font-size: 11px !important;
	color: #333;
	transition: color 150ms ease-in-out;
}

.tags > li > a:hover {
	color: #efb93f;
}

.overview {
	background: rgba(241, 238, 238, 0.55);
	font-style: italic;
	padding: 1rem;
	margin-block: 1rem;
	border-radius: 10px;
}
@media (width < 700px) {
	.overview {
		font-size: 13px;
	}
}

.tag-wrapper {
	margin-top: 2rem;
	width: 67%;
	margin-inline: 5% auto;
}

.arrow-list {
	list-style: none;
	padding-block-end: 1rem;
}

.arrow-list > li {
	position: relative;
	margin-inline-start: 20px;
	margin-top: 0.3rem;
	font-weight: 400;
	font-size: 16px;
}

.arrow-list > li::before {
	content: "➔";
	color: #ea7c10;
	display: inline-block;
	position: absolute;
	top: 3px;
	left: -25px;
}

.beautiful-table {
	width: 88%;
	margin: 0 auto;
	margin-bottom: 1.5rem;
	border-collapse: collapse;
	text-align: center;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.beautiful-table td p,
.beautiful-table td {
	text-align: center;
}

.beautiful-table tr td:nth-child(3) {
	min-width: 100px;
}

.beautiful-table td {
	padding: 10px 10px;
	border: 1px solid #ddd;
	font-weight: 400;
}

.beautiful-table tr:nth-child(even) {
	background-color: #f9f9f9;
}

.beautiful-table th {
	background-color: #eeecec;
	color: black;
	padding: 10px 10px;
	border: 1px solid #ddd;
	text-shadow: none;
	font-weight: 600;
}

@media (width < 500px) {
	.beautiful-table th,
	.beautiful-table td {
		padding: 6px 8px;
	}

	.beautiful-table {
		width: 100%;
	}

	.beautiful-table p,
	.beautiful-table td {
		font-size: 12px;
		line-height: 1.4;
	}

	.beautiful-table tr td:nth-child(2) {
		min-width: 100px;
	}
}

h3 + table.beautiful-table {
	margin-top: 1.2rem;
}

.diff tr td:first-child {
	font-weight: 600;
	width: 35%;
}

.beautiful-table td ul li {
	font-size: 14px;
}
.beautiful-table td ul {
	font-size: 14px;
	margin-left: 1rem;
}

@media (width < 700px) {
	.beautiful-table td ul li {
		font-size: 12px;
	}
}

.tableOfContent {
	display: flex;
	flex-direction: column;

	background: rgba(241, 238, 238, 0.55);
	padding: 0.6rem 1.5rem;
	font-weight: 600;
	border-radius: 10px;
}

.tableOfContent a,
.tableOfContent li {
	background: radial-gradient(circle at top, #000000 0%, #000000 30%, #000000 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 14px;
	font-weight: 600;
	transition: transform 180ms ease;
}

.tableOfContent a:hover,
.tableOfContent li:hover {
	background: linear-gradient(-90deg, #00796b, #009688, #26a69a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 14px;
	font-weight: 600;
	transform: translate(2px, -2px);
}

.tableOfContent ul {
	list-style: none;
	padding-left: 2rem;
}

.tableOfContent > div:first-child {
	display: flex;
	justify-content: space-between;
}

.tableOfContent .content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 700ms ease;
	display: flex;
	flex-direction: column;
}

.tableOfContent .content.open {
	max-height: 1000px;
}

.tableOfContent i {
	font-size: 30px;
}

.tableOfContent button {
	background: transparent;
	padding-inline: 6px;
}

.tableOfContent button:active {
	outline: 2px solid grey;
}

@media (width < 700px) {
	#fake-heading {
		font-size: 15px;
	}

	.tableOfContent i {
		font-size: 24px;
	}

	main > p {
		text-align: left;
	}
}

.misc-icon {
	color: #59d469;
	margin-left: 4px;
}

.misc-icon--d {
	color: #ca4d37;
	margin-left: 4px;
}

.faq,
.questions {
	margin-bottom: 20px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.faq h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	cursor: pointer;
	padding-right: 1rem;
	color: #ea7c10;
}

.questions h2 {
	margin: 0;
	font-size: 18px;
	cursor: pointer;
	padding-right: 1rem;
	color: #ea7c10;
	padding-block: 0 10px;
}

.questions p {
	margin-block-end: 0;
	font-size: 16px;
}

@media (width < 700px) {
	.faq h3 {
		font-size: 15px;
	}
}

.faqq {
	padding-top: 30px;
	padding-bottom: 50px;
}

.faq p {
	margin-bottom: 10px;
}

.faq p strong {
	font-weight: bold;
}

.answer {
	display: none;
}

.arrow {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
	transition: transform 0.3s ease;
	color: #ea7c10;
}

.collapsed .arrow {
	transform: rotate(0deg);
}

.expanded .arrow {
	transform: rotate(180deg);
}

.notificationLevel3 {
	position: fixed !important;
	bottom: 10%;
	left: 1rem;
	padding: 10px;
	background: radial-gradient(
		circle at top,
		rgba(14, 150, 136, 0.8) 0%,
		rgba(0, 127, 112, 0.95) 30%,
		rgba(0, 91, 82, 0.8) 100%
	);
	color: #ffffff;
	border-radius: 5px;
	display: none;
	font-size: 14px;
	z-index: 1000;
	padding-inline: 1.5rem;
}

dialog {
	border: none;
	border-radius: 6px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	width: 300px;
	height: min-content;
	padding: 1em;
	max-width: 40svw;
	margin: auto;
}

.dialogueLevel3 {
	width: 100%;
	background: radial-gradient(circle at top, #fff, #f9f9f9);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: fixed !important;
}

.dialogueLevel3 label {
	font-size: 12px;
	color: #ced4da;
}

.dialogueLevel3 textarea {
	border: none;
}

.dialogueLevel3 input::placeholder,
.dialogueLevel3 textarea::placeholder {
	color: #6c757d;
}

.dialogueLevel3 form {
	display: flex;
	flex-direction: column;
	padding: 1rem 0.8rem;
}

.dialogueLevel3 form input,
.dialogueLevel3 form textarea {
	margin-bottom: 1em;
	border-radius: 6px;
	outline: 1.85px solid #e9ecef;
	padding: 4px 10px;
	font-size: 14px;
}

.dialogueLevel3 p {
	text-transform: capitalize;
	background: radial-gradient(
		circle at top,
		#0e9688 0%,
		#007f70 30%,
		#ea7c10 100%
	);
	background: linear-gradient(
		45deg,
		#d39f51 0%,
		#e5b566 20%,
		#f2e19e 40%,
		#e5b566 60%,
		#f2e19e 70%,
		#d39f51 80%,
		#b28e4c 100%
	);

	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
	font-size: 22px;
	width: max-content;
	margin-inline: auto;
	margin-bottom: -16px;
	letter-spacing: 1.6px;
}

.number-input-wrapper {
	display: flex;
	align-items: start;
}

.number-input-wrapper input {
	width: 100%;
}

.country-code {
	background: #f8f9fa;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	padding: 0.25rem 0.65rem 0.25rem 0.45rem;
	font-size: 14px;
	color: #6c757d;
	margin-right: 10px;
}

.dialogueLevel3 .button-div {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.dialogueLevel3 .button-div button {
	width: 30%;
	border-radius: 12px;
	transform: none;
}

.dialogueLevel3 input:not(:placeholder-shown):valid {
	outline-color: #52b788;
}

.dialogueLevel3 input:not(:placeholder-shown):invalid {
	outline-color: #ee6055;
}

.dialogueLevel3 input:focus:invalid,
.dialogueLevel3 textarea:focus {
	outline-color: #ced4da;
}

/* Styles for the backdropLevel3 */
.backdropLevel3 {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 1000;
}

.backdropLevel3.show {
	display: block;
}

/* Prevent scrolling when the dialog is open */
body.no-scroll {
	overflow: hidden;
}

.property-card-level3 {
	display: grid;
	grid-template-columns: 14rem 1fr;
	gap: 10px;
	padding: 12px;
	outline: 3px solid hsl(210, 17%, 98%);
	border-radius: 6px;
	box-shadow: rgba(0, 0, 0, 0.13) 0px 10px 12px -5px,
		rgba(0, 0, 0, 0.05) 12px 10px 10px -5px;
	margin-bottom: 2rem;
	transition: transform 120ms ease, box-shadow 100ms ease;
	width: 100%;
}

.property-card-level3:hover {
	transform: translateY(-1.2px);
	box-shadow: rgba(0, 0, 0, 0.23) 0px 12px 14px -7px,
		rgba(0, 0, 0, 0.15) 14px 12px 12px -7px;
}

.data-grid-level3 p,
.property-card-level3 h3 {
	margin: 0;
}

.property-card-level3 h2 {
	font-size: 20px;
	margin-top: 0;
	/* margin-block: 6px 12px; */
}

.property-card-level3 p {
	font-size: 12px;
}

.property-card-level3-image {
	display: flex;
	overflow: auto;
	max-height: 250px;
}

.property-card-level3-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-card-level3-data {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	grid-template-rows: auto auto auto;
}

.property-card-level3-data h2 {
	grid-column: 1/4;
	grid-row: 1/2;
	text-align: center;
}

.property-card-level3-data .data-grid-level3 {
	grid-column: 1/3;
	grid-row: 2/3;
}

.property-card-level3-data .property-card-level3-button {
	grid-column: 3/4;
	grid-row: 2/3;
	display: flex;
	flex-direction: column;
	/* gap: 15px; */
	margin: 10px;
}

.property-card-level3-data .property-card-level3-button > * {
	margin: 10px;
}

.property-card-level3-data .read-more-content {
	grid-column: 1/4;
	grid-row: 3/4;
	margin-top: 1rem;
}

.data-grid-level3 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 0;
	place-items: center;
	font-size: 12px;
	background: #f8f9fa;
	/* padding-block: 1rem; */
	width: 98%;
	margin-inline: auto;
	border-radius: 8px;
	transform: translateY(8px);
}

.data-grid-level3 > div {
	width: 100%;
	height: 100%;
	padding-left: 1.2rem;
}

.data-grid-level3 > div > p {
	margin-top: -8px;
}

.data-grid-level3 > div p:not(:first-child) {
	font-weight: 600;
}

.data-grid-level3 div:nth-child(odd) {
	border-right: 2px solid #dee2e6;
}

.card-button {
	background: radial-gradient(
		circle at top,
		#0e9688 0%,
		#007f70 30%,
		#ea7c10 100%
	);
	padding: 12px 10px;
	border-radius: 12px;
	color: white;
	text-transform: capitalize;
	width: 8rem;
	font-size: 14px;
	font-weight: 500;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
	position: relative;
	text-align: center;
	cursor: pointer;
}

.card-button:hover {
	transform: translateY(-1px);
	background: radial-gradient(
		circle at top,
		#0e9688 0%,
		#1c9486 30%,
		#ea7c10 100%
	);
	color: white;
}

.card-button--white {
	background: #fff;
	border: 2px solid #ea7c10;
	color: #ea7c10;
}

.card-button--white:hover {
	transform: translateY(-1px);
	background: radial-gradient(circle at top, #f3fdfc, #f6fdfc, #f3fffe);
	color: #ea7c10;
}

a.colored-link {
	background: radial-gradient(
		circle at top,
		rgba(14, 150, 136, 0.8) 0%,
		rgba(0, 127, 112, 0.95) 30%,
		rgba(0, 91, 82, 0.8) 100%
	);
	background-clip: text;
	color: transparent;
}

a.colored-link:hover {
	background: radial-gradient(
		circle at top,
		rgba(14, 150, 136, 0.8) 0%,
		rgba(0, 127, 112, 0.95) 30%,
		rgba(0, 91, 82, 0.8) 100%
	);
	background-clip: text;
	color: transparent;
}

@media (max-width: 700px) {
	.property-card-level3 {
		grid-template-columns: 1fr;
	}

	.property-card-level3 h2 {
		margin-bottom: 0;
	}

	.property-card-level3 p {
		font-size: 11px;
	}

	.property-card-level3-data .data-grid-level3 {
		grid-column: 1/4;
		grid-row: 2/3;
	}

	.property-card-level3-data .property-card-level3-button {
		grid-column: 1/4;
		grid-row: 3/4;
		display: flex;
		flex-direction: row;
	}

	.data-grid-level3 {
		gap: 6px 0;
	}

	.card-button {
		width: 45%;
		padding-block: 10px;
	}
}

.page-top-banner {
	height: 17dvh;
	width: 100%;
	position: relative;
	/* top: 3.55rem; */
	/* z-index: -1; */
}

.page-top-banner::before {
	content: "";
	display: block;
	position: absolute;
	height: 154%;
	width: 100%;
	/* z-index: 2; */
	background: linear-gradient(
		45deg,
		rgba(0, 0, 0, 0.2) 20%,
		rgba(0, 0, 0, 0.8)
	);
	backdrop-filter: blur(4px);
}

.page-top-banner img {
	object-fit: cover;
	width: 100%;
	height: 154%;
}

.page-top-banner-content {
	position: absolute;
	top: 20%;
	left: 8%;
	display: flex;
	flex-direction: column;
	color: #ffffff;
	/* z-index: 2; */
}

.page-top-banner-content h2,
.page-top-banner-content p {
	color: inherit;
	font-family: "Montserrat";
	text-shadow: 0 0 1px #ffffff;
}

.page-top-banner-content h2 {
	font-size: 40px;
	font-weight: 700;
}

.page-top-banner-content p {
	font-size: 13px;
	margin-top: 8px;
	font-weight: 600;
	margin-left: 10px;
}

.page-top-banner-content p a {
	color: #f0cb7b;
	text-shadow: 0 0 1px #d6a259;
	text-decoration: underline;
	text-underline-offset: 4px;
}

@media (width < 700px) {
	.page-top-banner-content h2 {
		font-size: 30px;
	}

	.page-top-banner-content p {
		margin-left: 6px;
	}
}

.location-address-section {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	place-items: center;
	gap: 20px;
	margin-block: 2rem;
}

.location-address-section > * {
	width: 100%;
	margin-inline: 20px;
	min-height: 300px;
}

.location-address-section > :first-child {
	grid-column: 2/7;
}

.location-address-section > :nth-child(2) {
	grid-column: 7/12;
	width: 100%;
	margin-inline: 20px;
}

main > *:not(:first-child) {
	position: relative;
}

@media (width < 800px) {
	html {
		padding-top: 3.55rem;
	}

	main > *:not(:first-child) {
		padding-inline: 15px;
		position: relative;
	}

	.location-address-section {
		display: flex;
		flex-direction: column;
	}

	.location-address-section.order {
		flex-direction: column-reverse;
	}
}

.tile {
	background-color: #ffffff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 16px;
}

.address-box {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.address-box p {
	font-size: 15px;
	color: #555;
	font-weight: 500;
}

.address-box > :not(:first-child) {
	display: flex;
	align-items: center;
}

.contact-page-contact-info > :not(:first-child) > span,
.address-box > :not(:first-child) > span {
	margin-inline: 40px 20px;
	width: 40px;
	height: 40px;
	background: linear-gradient(
		55deg,
		rgba(224, 170, 62, 0.6) 0%,
		rgba(245, 216, 138, 0.6) 10%,
		rgba(235, 213, 122, 0.6) 40%,
		rgba(224, 170, 62, 0.7) 50%,
		rgba(214, 162, 89, 0.6) 60%,
		rgba(187, 138, 68, 0.6) 75%,
		rgba(224, 170, 62, 0.6) 100%
	);

	background-color: #ea7c10;
	overflow: visible;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-page-contact-info > :not(:first-child) > span svg,
.address-box > :not(:first-child) > span svg {
	height: 28px;
	width: 28px;
	stroke: black;
}

.address-box h3 {
	font-weight: 600;
	background: linear-gradient(
		to right,
		#e0aa3e 0%,
		#ebd57a 40%,
		#e0aa3e 50%,
		#d6a259 60%,
		#bb8a44 75%,
		#e0aa3e 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 23px;
	text-align: center;
}

.social-icons-section {
	width: 83.5%;
	margin-inline: auto;
	margin-block: 2rem;
	padding-block: 2rem 3rem;
}

.social-icons-section h2 {
	text-align: center;
	margin-bottom: 14px;
}

.social-icons-section div {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;

	margin-inline: auto;
	max-width: 600px;
}

.social-icons-section a {
	padding-left: 30%;
	position: relative;
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-color: #ea7c10;
	text-decoration-thickness: 1px;
}

.social-icons-section a i {
	font-size: 22px;
	z-index: 2;
	position: relative;
	margin-right: 10px;
}

.social-icons-section a::before {
	content: "";
	position: absolute;
	display: block;
	height: 30px;
	width: 30px;
	left: 29%;
	top: 2px;
	border-radius: 30px;
	background-color: #ea7c10;
}

@media (width < 700px) {
	.social-icons-section {
		padding-block: 1rem 3rem;
		width: calc(100% - 30px);
	}

	.social-icons-section div {
		grid-template-columns: 1fr;
	}
}

.form-social-wrapper {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
}

.form-container {
	grid-column: 2/8;
	padding: 20px;
	padding-bottom: 3rem;
	margin-inline: 0px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	/* background-color: #ffffff; */
	font-family: Arial, sans-serif;
}

.contact-page-contact-info {
	grid-column: 8/12;
	margin-inline: 20px;
	display: flex;
	flex-direction: column;
	padding-block: 2rem 5rem;
}

.contact-page-contact-info > :not(:first-child) {
	display: flex;
	padding-left: 16px;
	margin-top: 14px;
}

.contact-page-contact-info > :not(:first-child) > span {
	margin-inline-start: 0;
}

.contact-page-contact-info a {
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-color: #ea7c10;
	font-weight: 600;
}

.contact-page-contact-info p + div p {
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-size: 15px;
}

#contactForm {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-inline: auto;
	max-width: 400px;
	padding: 1rem 2rem 2rem;
	border-radius: 10px;
	box-shadow: inset -1px -1px 6px 1px rgba(0, 0, 0, 0.03),
		2px 2px 10px 1px rgba(0, 0, 0, 0.1);
}

@media (width < 700px) {
	.form-container {
		padding-inline: 0;
		padding-bottom: 0;
	}

	#contactForm {
		max-width: 100%;
		padding: 1rem 15px 2.5rem;
		box-shadow: inset -1px -1px 6px 1px rgba(0, 0, 0, 0.03),
			0 0 0 0 rgba(0, 0, 0, 0.1);
	}
}

.contact-page-contact-info h2,
.form-container h2 {
	text-align: center;
	margin-bottom: 20px;
	color: #333333;
}

.form-group {
	margin-bottom: 15px;
	width: 100%;
}

.form-group label {
	display: block;
	font-size: 14px;
	margin-bottom: 5px;
	color: #555;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 10px;
	font-size: 13px;
	font-weight: 500;
	color: black;
	border: 1px solid #333333;
	border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
	border: 1px solid rgb(19, 162, 148);
	background: rgba(255, 255, 255, 0.5);
	color: #333333;
	box-shadow: 0 0 8px rgba(19, 162, 148, 0.5);
}

.form-group textarea:focus-visible {
	outline: none;
}

.form-group input:not(:placeholder-shown):valid,
.form-group textarea:not(:placeholder-shown):valid {
	border: 1px solid #52b788;
	box-shadow: 0 0 4px rgba(19, 162, 148, 0.5);
}

.form-group input:not(:placeholder-shown):invalid {
	border: 1px solid #ee6055;
	box-shadow: 0 0 4px rgba(238, 95, 85, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(132, 132, 132, 0.63);
}

.form-group textarea {
	resize: vertical;
	height: 100px;
}

.submit-btn {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	color: #ffffff;
	background: radial-gradient(
		circle at top,
		#0e9688 0%,
		#007f70 30%,
		#ea7c10 100%
	);
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	position: relative;
}

.submit-btn::before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	border-radius: 5px;
	height: 100%;
	background: linear-gradient(164deg, #fff, transparent 40%);
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 150ms ease-in-out;
}

.submit-btn:hover::before {
	opacity: 0.4;
}

.success-message {
	margin-top: 15px;
	padding: 10px;
	font-size: 14px;
	color: #256d2e;
	background-color: #dff2e1;
	border: 1px solid #b3e0bb;
	border-radius: 4px;
	text-align: center;
}

main {
	margin-bottom: 6rem;
}

@media (width < 800px) {
	.form-social-wrapper {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.form-social-wrapper > * {
		width: 100%;
		margin-inline: 0;
	}
}
.single-widgets.widget_egns_tag {
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	position: absolute !important;
	top: -9999px;
	left: -9999px;
	pointer-events: none;
	opacity: 0;
}






.footer-logo img{
	width: 100px;
	animation: zoomInOut 2s ease-in-out infinite;
}
@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}



.panel-grid-cell .widget-title{
	display: none !important;
}
.so-panel {
    margin-bottom: 0px !important;
}











.slide-in-form-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(3px);
            display: none;
            z-index: 999;
        }

        .slide-in-form-dialog {
            display: none;
            position: fixed;
            top: 58%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle at top left, rgba(0, 0, 0, 0.2) 0%,
            /* Pure black at the center */
            rgba(0, 91, 82, 0.3) 10%,
            /* Slightly transparent black */
            rgba(0, 91, 82, 0.2) 20%, rgba(0, 91, 82, 0.1) 30%, rgba(0, 91, 82, 0.2) 40%,
            /* Gradual fading to lighter tones */
            rgba(4, 63, 58, 0.2) 50%, rgba(3, 44, 40, 0.3) 60%, rgba(17, 42, 40, 0.3) 70%, rgba(0, 0, 0, 0.2) 80%,
            /* Very soft black nearing edges */
            rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0) 100%
            /* Fully transparent at the edges */
            );
            border-radius: 8px;
            z-index: 1000;
            width: 85%;
            max-width: 400px;
            outline: 1px solid rgba(204, 204, 204, 0.5);
            padding: 20px;
            animation: fadeIn 1s ease-in-out;
            color: white;
            backdrop-filter: blur(8px);
        }

        .slide-in-form-group label {
            font-weight: bold;
            font-size: 11px;
            opacity: 0.8;
            margin-block: 2px;
            display: block;
            color: white;
            background-color: #ea7c10;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .slide-in-form-group input,
        .slide-in-form-group select,
        .slide-in-form-group textarea {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            outline: 1px solid rgba(204, 204, 204, 0.3);
            /* transition: border-color 0.2s; */
            color: black;
            background: transparent;
            color: #ffffff;
        }
            .slide-in-form-group input:focus,
            .slide-in-form-group select:focus,
            .slide-in-form-group textarea:focus {
                outline: 1px solid rgba(204, 204, 204, 1);
            }

            .slide-in-form-group input:not(:placeholder-shown):valid,
            .slide-in-form-group select:not(:placeholder-shown):valid,
            .slide-in-form-group textarea:not(:placeholder-shown):valid {
                outline: 1px solid #52b788;
                box-shadow: 0 0 10px 0px rgba(82, 183, 136, 0.3);
            }

            .slide-in-form-group input:not(:placeholder-shown):invalid,
            /* .slide-in-form-group select:not(:placeholder-shown):invalid, */
            .slide-in-form-group textarea:not(:placeholder-shown):invalid {
                outline: 1px solid #ee6055;
                box-shadow: 0 0 10px 0px rgba(238, 95, 85, 0.3);
            }


        .slide-in-form-group option {
            background: #ffffff;
            color: #000000;
        }



        .slide-in-form-button-group {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-block-start: 6px;
        }

            .slide-in-form-button-group button {
                padding: 10px 15px;
                border-radius: 4px;
            }


        .slide-in-form-button {
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            border: none;
            font-weight: bold;
            transition: transform 0.2s;
        }

        .slide-in-form-submit-btn {
            background-color: #ea7c10;
            color: white;
            transition: background-color 0.2s, transform 0.2s;
            outline: 2px solid white;
            outline-offset: 2px;
        }

            .slide-in-form-submit-btn:hover {
                transform: scale(1.05);
            }

            .slide-in-form-submit-btn:disabled {
                background: radial-gradient(circle at top, #0e9688 0%, #007f70 30%, #ea7c10 100%);
                outline: none;
                cursor: not-allowed;
            }

        .slide-in-form-cancel-btn {
            background: linear-gradient(to right, #f44336, #c62828);
            color: white;
            transition: background-color 0.2s, transform 0.2s;
        }

            .slide-in-form-cancel-btn:hover {
                transform: scale(1.05);
            }

        .slide-in-form-close-btn {
            position: absolute;
            top: 9px;
            right: 16px;
            background: none;
            border: none;
            font-size: 34px;
            cursor: pointer;
            color: white;
            width: min-content;
        }

            .slide-in-form-close-btn:hover {
                color: #f44336;
            }

        .slide-in-form-notification {
            display: none;
            position: fixed;
            top: 20px;
            right: 20px;
            background: #007BFF;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 14px;
            z-index: 1100;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }

            .slide-in-form-notification.error {
                background: #f44336;
            }



        .slide-in-form-toggle-btn:hover {
            background: #0056b3;
        }

        .slide-in-form-group.flex-label {
            display: flex;
            align-items: center;
            gap: 10px;
        }

            .slide-in-form-group.flex-label input[type="checkbox"] {
                width: 20px;
                height: 20px;
                outline: none;
            }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .desktop-form-whatsapp-div {
            position: fixed;
            bottom: 20px;
            /* right: 20px; */
            left: 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: center;
            z-index: 1200;
            flex: 1;
        }


        .slide-in-form-toggle-btn {
            padding: 10px 10px;
            background: linear-gradient(to right, #007BFF, #0056b3);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 8px;
            cursor: pointer;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }

            .slide-in-form-toggle-btn:hover {
                background: linear-gradient(to right, rgb(11, 89, 173), #0056b3);
            }

        .whatsapp-btn {
            background: linear-gradient(to right, #25D366, #128C7E);
            padding: 10px 10px;
            color: white;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }

            .whatsapp-btn i {
                font-size: 22px;
            }

            .whatsapp-btn:hover {
                background: linear-gradient(to left, rgb(29, 150, 73), #128C7E);
            }


        .slide-in-form-notification {
            display: none;
            position: fixed;
            top: 20px;
            right: 20px;
            background: #28a745;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 14px;
            z-index: 1100;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            animation: slideDown 0.5s ease;
        }

            .slide-in-form-notification.error {
                background: #f44336;
            }

        @keyframes slideDown {
            from {
                transform: translateY(-20px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .slide-in-form-heading-wrapper {
            /*display: flex;*/
            padding-bottom: 10px;
        }

            .slide-in-form-heading-wrapper img {
                margin-bottom: 10px;
                width: 180px;
            }

            .slide-in-form-heading-wrapper div {
                height: 100%;
                width: 100%;
                padding: 0 10px;
            }

                .slide-in-form-heading-wrapper div p {
                    font-size: 11px;
                    padding: 0;
                }

                    .slide-in-form-heading-wrapper div p:first-child {
                        font-size: 18px;
                        font-weight: bold;
                    }

        @media (width < 1160px) {
            .desktop-form-whatsapp-div {
                display: none;
            }

            .slide-in-form-heading-wrapper img {
                height: 30px;
                width: 70px;
            }

            .slide-in-form-heading-wrapper div p {
                font-size: 8px;
                padding: 0;
                font-weight: 600;
            }

                .slide-in-form-heading-wrapper div p:first-child {
                    font-size: 17px;
                    font-weight: bold;
                }

            .slide-in-form-dialog {
                top: 49%;
            }
        }


        .website_cta {
            padding-block: 4rem 1rem;
            cursor: pointer;
        }

            .website_cta img {
                width: 100%;
            }

        .cta_desktop {
            display: block;
        }

        .cta_mobile {
            display: none;
        }


        @media (width < 800px) {
            .cta_desktop {
                display: none;
            }

            .cta_mobile {
                display: block;
            }
        }
    
        .more-tags {
            margin-top: 2rem;
            min-height: 22rem;
            display: flex;
            justify-content: center;
            justify-items: center;
            gap: 16px;
            width: 91vw;
            margin-inline: auto;
            padding-bottom: 4rem;
        }

        @media (width < 1000px) {
            .more-tags {
                flex-direction: column;
                align-items: center;
            }
        }

        .more-tags div {
            display: flex;
            flex-direction: column;
            width: 230px;
        }

            .more-tags div:last-child {
                width: auto;
            }

        @media (width < 900px) {
            .more-tags div:last-child {
                justify-content: center;
            }

            .more-tags div {
                align-items: center;
            }
        }

        .more-tags ul {
            list-style-type: none;
            text-align: left;
            margin: 0;
            padding: 0;
        }

        .more-tags h2 {
            text-transform: capitalize;
            color: #fff;
            position: relative;
            margin-bottom: 34px;
            margin-left: 0;
            display: flex;
            align-items: center;
            font-size: 20px;
        }

            .more-tags h2::after {
                content: '';
                display: block;
                position: absolute;
                bottom: -14px;
                left: 0;
                height: 2px;
                width: 100%;
                background: #e2dede;
            }

        .more-tags li {
            font-size: 16px;
            color: #000;
            text-decoration: underline;
        }

        .more-tags button {
                background: #ea7c10;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            position: relative;
            font-weight: 500;
            height: 50px;
            width: 110px;
            overflow: hidden;
            margin-top: 1rem;
        }

        @media (width<900px) {
            .more-tags button {
                margin-top: 20px;
            }
        }

        .more-tags button::before {
            content: '';
            display: block;
            position: absolute;
            width: 100%;
            border-radius: 5px;
            height: 100%;
            background: linear-gradient(164deg, white, transparent 40%);
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 150ms ease-in-out;
        }

        .more-tags button:hover::before {
            opacity: 0.4;
        }

        div.bigger-tag {
            width: auto;
        }

        @media (width < 1000px) {
            div.bigger-tag {
                width: 14rem;
            }
        }

        .more-tags a {
            background: radial-gradient(circle at top, #fff 0%, #fff 30%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    
        .sticky-footer {
            display: none;
            position: fixed;
            z-index: 2000;
            bottom: 0;
            width: 100%;
            background: #EFEFEF;
            color: white;
            padding-block: 4px;
            text-align: center;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.42);
        }

            .sticky-footer a,
            .sticky-footer button {
                color: white;
                text-decoration: none;
                font-size: 12px;
                padding: 6px 10px;
                border: none;
                background: #ea7c10;
                border-radius: 5px;
                cursor: pointer;
                margin: 0;
            }

        .button-call {
            background: linear-gradient(135deg, #ea7c10, #00796b);
            border-color: #004d46;
        }

        .button-enquiry {
            background: linear-gradient(135deg, #00796b, #00a28a);
            border-color: #00695c;
        }

        .button-whatsapp {
            background: #25d366;
            border-color: #007d57;
        }

        .sticky-footer i {
            margin-right: 1px;
            font-size: 17px;
        }

            .sticky-footer i::before {
                margin-top: 0 !important;
            }

        .whatapp.whatapp {
            background: #25d366;
        }

        @media (width < 1160px) {
            .sticky-footer {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                padding-inline: 3px;
                gap: 3px;
            }

            .footer-section {
                padding-bottom: 1.5rem;
            }

            .slide-in-form {
                padding-bottom: 5rem;
            }
        }
    
    .testimonial-text.line-clamp {
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .show-more-btn {
            background: none;
            border: none;
            color: #007bff;
            cursor: pointer;
            padding: 5px 0;
            font-size: 14px;
            margin-top: 5px;
        }

            .show-more-btn:hover {
                text-decoration: underline;
            }



            :root {
                --green-gradient: linear-gradient(to top, #00100F, #ea7c10);
            }

            .green-gradient-bg {
               background-color: #000;
            }

            .golden-gradient-text {
                /*background-color: #000;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;*/
                background-clip: text;
                text-fill-color: transparent;

            }

            .bold-text {
                color: inherit;
                font-weight: 700;
            }

            .top-banner-image {
                background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url('../img/top-banner-image-1.png');
                background-size: cover;
                background-position: right;
                background-repeat: no-repeat;
                height: 239px;
                position: relative;

            }

            .content-box {
                margin-inline: auto;
                max-width: 1200px;
                width: 90%;
                padding: 2rem 4rem;
                color: #fff;
                text-align: center;
                transform: translateY(-6em);
                border-radius: 8px;
                background-color: #000;
            }

            .content-box p {
                margin-block: 14px;
                font-size: 16px;
                padding-inline: 1rem;
            }

            .heading-box {
                color: #fff;
                padding-block: 2.2rem;
            }

            h1 {
                color: inherit;
                font-size: 26px;
                font-weight: 600;
                line-height: 1.9;
            }

            .logo-box {
                position: absolute;
                top: 53%;
                left: 50%;
                transform: translate(-50%, -50%);
                z-index: -1;
                opacity: 22%;
            }

            .founder-box {
                color: #000;
                text-align: center;
                padding: 4rem;
                    background: #ea7c10;
            }

            .founder-box-container {
                display: flex;
                justify-content: center;
                /* align-items: center; */
                gap: 2rem;
            }

            .founder-image-box {
                flex: 1;
            }

            .founder-text-box {
                flex: 3;

            }

            .founder-text-box p {
                margin-block: 1em;

            }


            .founder-image-box-img {
                border: 8px solid;
                border-image: linear-gradient(90deg, #C59346 0%, #E6CA84 40%, #C38F42 70%, #D2A363 100%) 1;
                margin-bottom: 2rem;
                width: 341px;
            }

            .founder-text-box-text {
                font-size: 18px;
                font-weight: 600;
                text-transform: uppercase;
                padding-inline: 12px;
            }

            .founder-text-box-text h3 {
                font-size: 20px;
                margin-bottom: 1rem;
                color: #000;
            }

            .founder-box-heading {
                font-size: 26px;
                margin-block-end: 2rem;
                color: #000;
            }

            .why-choose-section {

                padding-block: 18rem;
            }

            main {
                margin-bottom: 0;
            }

            @media (width < 800px) {
                .heading-box {
                    padding: 0;
                }

                .heading-box h1 {
                    font-size: 18px;
                    line-height: 1.5;
                }

                .founder-box-container {
                    flex-direction: column;
                }

                .founder-image-box-img {
                    margin-inline: auto;
                    width: auto;
                }
                .founder-image-box-img img{
                	width: 100%;
                }
                .founder-box{
                	padding: 20px;
                }

                .why-choose-section {
                    padding-block: 3rem;
                }

                .why-choose-section h2 {
                    width: 100%;
                    font-size: 26px;
                }

                .top-banner-image {
                    background-position: 77% 0px;
                }
            }




        .vision-and-mission-section {
            display: grid;
            grid-template-columns: auto 1fr;
            width: 95%;
            margin: 0 auto;
            padding: 2rem;
            gap: 2rem;
        }


        .vision-and-mission-section-heading h2,
        .vision-and-mission-section-heading h4 {
            all: unset;
        }

        .vision-and-mission-section-heading h2 {
            color: #333333;
            font-size: 26px;
            font-weight: 600;
        }

        .vision-and-mission-section-heading h4 {
            display: block;
            color: #ea7c10;
            font-size: 20px;
            font-weight: 600;
        }

        .vision-and-mission-section-heading p {
            margin-block: 1.2rem;
            color: #333333;
            font-size: 16px;
            font-weight: 500;
        }

        .green-text {
            color: #ea7c10;
            font-weight: 600;
        }

        a.green-text {
            text-decoration: underline;
        }

        .logo-tree {
            position: absolute;
            grid-column: 2/3;
            grid-row: 1/3;
            height: 30%;
            place-self: center;
            object-fit: contain;
            opacity: 24%;
            z-index: -1;
        }

        @media (width < 800px) {
            .top-banner-image {
                background-position: 77% 0px;
                height: 150px;
            }

            .vision-and-mission-section {

                grid-template-columns: 1fr;
                justify-items: center;
                text-align: center;
            }

            main {
                margin-bottom: 2rem;
            }

            .logo-tree {
                grid-column: 1/2;
                grid-row: 1/3;
                height: 80%;
                top: 30%;
            }
        }

        @media (width < 450px) {
            .vision-and-mission-section {
                width: 100%;
                padding-inline: 1rem;
            }

            .logo-tree {
                height: 60%;
                top: 30%;
            }
        }


        .developer-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
                padding: 40px;
                max-width: 1200px;
                margin: auto;
            }

            .developer-card {
                text-align: center;
                border: 4px solid #ea7c10;
                border-radius: 10px;
                padding: 20px;
                background-color: #ffffff;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                border-top-left-radius: 70px;
    			border-bottom-right-radius: 70px;
    			border-style: ridge;
            }

            .developer-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            }

            .developer-image img {
                width: 120px;
                height: 120px;
                object-fit: contain;
                /* margin-bottom: 15px; */
            }

            .developer-card h3 {
                font-size: 1.1rem;
                font-weight: 600;
                color: #222;
                /* margin: 10px 0 0; */
                text-transform: capitalize;
                padding: 0;
            }

            .developer-card a {
                text-decoration: none;
                color: inherit;
            }

            .developer-card a:hover h3 {
                color: #007BFF;
            }

            .events-container {
            max-width: 1200px;
            margin: 50px auto;
            width: 90%;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .event-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
            position: relative;
        }

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

        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 200px;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            display: block;
            opacity: 0;
            visibility: hidden;
            transition: opacity 150ms ease-in, visibility 150ms ease-in;
        }

        .video-thumbnail:hover .play-button {
            visibility: visible;
            opacity: 1;
            transition: opacity 150ms ease-in;
        }

        .video-thumbnail:hover .play-button {
            animation: fadeOut 1s ease-out 1s forwards;
        }

        @keyframes fadeOut {
            0% {
                opacity: 1;
            }

            100% {
                opacity: 0;
                visibility: hidden;
            }
        }

        .event-content {
            padding: 20px;
        }

        .event-content h2 {
            margin: 0 0 10px 0;
            font-size: 18px;
            color: #333;
        }

        .event-content p {
            margin: 0;
            font-size: 14px;
            color: #666;
        }

        .player-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        #player-container {
            width: 90%;
            max-width: 800px;
            position: relative;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            /* Ensures the player maintains a 16:9 aspect ratio */
        }

        #player {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .close-button {
            position: absolute;
            top: 4px;
            right: 4px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            font-size: 16px;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
            z-index: 1001;
            border: 2px solid white;
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .event-content h2 {
                font-size: 16px;
            }

            .event-content p {
                font-size: 12px;
            }

            .video-thumbnail {
                height: 150px;
            }

            .play-button {
                font-size: 14px;
                padding: 8px 16px;
            }

            #player-container {
                width: 100%;
                max-width: 100%;
            }

            .close-button {
                font-size: 12px;
                padding: 8px;
            }
        }

        .shukrana-section h2 {
                font-size: 32px;
            }


            .shukrana-section {
                width: 80%;
                margin-inline: auto;
                background: #ffffff;
                padding: 1.5rem 1rem;
                margin-top: 2rem;
                border-radius: 8px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 14px;
                padding-bottom: 1rem;
                position: relative;
                z-index: 2;
                overflow: clip;
            }

            .shukrana-section>img {
                position: absolute;
                z-index: -1;
                height: 100%;
                width: 100%;
                object-fit: contain;
                opacity: 0.3;
            }

            .shukrana-subsection {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 50px;
                align-items: center;
                margin-block: 30px;
            }

            .shukrana-subsection img {

                object-fit: cover;
                /* padding: 10px; */
                    box-shadow: 0px 0px 0px 6px white, 0px 0px 1px 8px rgb(247 215 32), 0px 0px 4px 10px rgb(247 215 32);
                border-radius: 10px;
            }

            .gallery {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
                margin-block: 30px 50px;
            }

            .gallery img,
            .misc {

                object-fit: cover;
                /* padding: 10px; */
                    box-shadow: 0px 0px 0px 6px white, 0px 0px 1px 8px rgb(247 215 32), 0px 0px 4px 10px rgb(247 215 32);
                border-radius: 10px;
                animation: bounce 1s infinite;

            }

            @keyframes bounce {
                50% {
                    transform: translateY(2px);

                }

                to {
                    transform: translateY(0px);
                }
            }


            .shukrana-section q {
                font-weight: 600;
            }

            @media (width < 700px) {
                .shukrana-section {
                    width: 100%;

                }

                .shukrana-section h2 {
                    text-align: center;

                }

                .gallery {

                    grid-template-columns: repeat(1, 1fr);

                }

                .shukrana-subsection {
                    display: grid;
                    grid-template-columns: 1fr;

                }
            }

            .blog-heading {
                font-size: 42px;
                margin-bottom: 45px;
                padding-bottom: 15px;
                border-bottom: 1px solid #6D6E76;
            }

            .blog-grid {
                display: grid;
                gap: 2rem;
                container-type: inline-size;

            }

            .blog-card {
                all: revert;
                display: grid;
                grid-template-columns: 45ch auto;
                gap: 0 2rem;
                text-decoration: none;
                border-bottom: 1px solid #666666;
                padding-block: 1rem 2rem;

            }




            .blog-card-content {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            .blog-card-date {
                font-size: 16px;
                letter-spacing: 3px;
                color: #ea7c10;
                font-weight: 600;
            }

            .blog-card-title {
                font-size: 30px;
                font-weight: 600;
                color: #232536;
                line-height: 1.2;
            }

            .blog-card-description {
                font-size: 15px;
                color: #000;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                line-height: 1.5;
                color: #666666;
            }

            @container (width < 1024px) {
                .blog-card {
                    font-size: 0.9em;
                    grid-template-columns: 30ch auto;

                }

                .blog-card-date {
                    font-size: 14px;
                    letter-spacing: 3px;
                    color: #ea7c10;
                    font-weight: 600;
                }

                .blog-card-title {
                    font-size: 24px;
                }

                .blog-card-description {
                    font-size: 14px;
                }

                .blog-card-content {
                    gap: 0.5rem;

                }
            }

            @container (width < 700px) {
                .blog-card {
                    grid-template-columns: auto;
                    gap: 2rem 0;
                    padding-block: 1rem 2rem;
                    border-bottom: 1px solid #666666;
                }
            }



            .blog-card .blog-card-img {
                /* width: 45ch; */
            }

            .pagination {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 0.5rem;
                margin: 3rem 0;
                padding: 1rem;
                flex-wrap: wrap;
            }

            .pagination a {
                padding: 0.75rem 1.25rem;
                border: 2px solid #ea7c10;
                border-radius: 8px;
                text-decoration: none;
                color: #ea7c10;
                font-weight: 600;
                font-size: 1rem;
                transition: all 0.3s ease;
                min-width: 2.5rem;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .pagination a.active {
                background-color: #ea7c10;
                color: white;
                border-color: #ea7c10;
                box-shadow: 0 4px 6px rgba(0, 91, 82, 0.1);
            }

            .pagination a:hover:not(.active) {
                background-color: rgba(0, 91, 82, 0.1);
                transform: translateY(-2px);
                box-shadow: 0 4px 6px rgba(0, 91, 82, 0.1);
            }

            .pagination a:active {
                transform: translateY(0);
            }

            .pagination-arrow {
                font-size: 1.2rem !important;
                padding: 0.75rem 1rem !important;
            }

            .pagination-ellipsis {
                color: #ea7c10;
                font-weight: 600;
                padding: 0 0.5rem;
                display: flex;
                align-items: center;
            }

            @media (max-width: 768px) {
                .pagination {
                    gap: 0.25rem;
                    margin: 2rem 0;
                    padding: 0.5rem;
                }

                .pagination a {
                    padding: 0.6rem 0.8rem;
                    font-size: 0.9rem;
                    min-width: 2rem;
                    border-width: 1px;
                }

                .pagination-arrow {
                    font-size: 1rem !important;
                    padding: 0.6rem 0.8rem !important;
                }

                .pagination-ellipsis {
                    padding: 0 0.25rem;
                    font-size: 0.9rem;
                }

                .content-box {
                padding: 2rem 0rem;
            }

                /* Hide some page numbers on very small screens */
                @media (max-width: 360px) {
                    .pagination a:not(.active):not(.pagination-arrow) {
                        display: none;
                    }

                    .pagination a.active {
                        margin: 0 0.5rem;
                    }
                }
            }

            /* Add touch feedback for mobile */
            @media (hover: none) {
                .pagination a:active {
                    background-color: rgba(0, 91, 82, 0.2);
                    transform: scale(0.95);
                }
            }

            .heading {
            /*max-width: 700px;*/
            margin-inline: auto;
            text-align: center;
            /*margin-block: 2.5rem;*/
        }

        .heading-title {
            font-size: 40px;
            font-weight: 700;
            margin-block: 15px;
            padding: 0;
            color: #000000;

        }

        .heading-text {
            color: #717171;
            font-size: 18px;
        }

        .contact-form-wrapper {
            background: #ffffff;
            max-width: 1200px;
            width: 85%;
            margin-inline: auto;
            padding: 10px;
            display: flex;

            border-radius: 10px;

        }


        .contact-left {
            width: 43%;
            background: #1bbac5;
            color: white;
            padding: 40px;
            border-radius: 10px;

            display: flex;

            flex-direction: column;

            gap: 35px;

            position: relative;
            overflow: clip;

        }

        .contact-left-heading {
            color: white;
            font-size: 24px;
            font-weight: 600;

            text-align: left;
        }

        .contact-left-text {
            color: #CCCCCC;
            font-size: 14px;
            font-weight: 400;
            text-align: left;

        }


        .contact-left-item {
            display: grid;
            grid-template-columns: auto 1fr;

            font-size: 14px;
            gap: 15px;

            z-index: 2;
        }

        .contact-left-icon {
            height: 24px;
            width: 24px;
        }


        .contact-page-address {
            display: flex;
            flex-direction: column;
        }

        .contact-page-address address {
            padding-block-end: 6px;
            line-height: 1.7;
        }

        .contact-page-address-heading {
            display: block;
            text-decoration: underline;
            font-weight: 600;
            font-size: 16px;
            text-decoration-thickness: 1px;
            text-underline-offset: 2px;

            margin-block-end: 5px;
        }



        .contact-right {
            /* background: pink; */
            flex: 1;
            padding: 20px;


        }

        .field-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .contact-page-form {
            height: 100%;
        }

        .contact-page-form-field {
            display: flex;
            flex-direction: column;
            margin: 20px;

        }

        .contact-page-form-field input {
            padding: 5px;
            border-bottom: 1px solid #8D8D8D;

            color: #000000;
            font-size: 14px;
        }

        .contact-page-form-field input:focus-within {
            border-bottom-color: #000000;
        }

        .contact-page-form-field input::placeholder {
            color: #8D8D8D;
            font-size: 13px;
            font-weight: 300;

        }

        .contact-page-form-field label {
            color: #8D8D8D;
            font-size: 12px;
            font-weight: 500;

        }

        .contact-right-heading {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 600;
        }


        .contact-radio-button input[type="radio"] {
            /* remove native look */
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;

            /* base box style */
            width: 18px;
            height: 18px;
            border: 1px solid #E0E0E0;
            border-radius: 100px;
            /* square corners */
            vertical-align: middle;
            margin-right: 8px;
            position: relative;
            cursor: pointer;
            outline: none;
            background-color: #E0E0E0;
            transition: border-color .2s, background-color .2s;
        }

        .contact-radio-button input[type="radio"]:checked {
            background-color: #000000;
            border-color: #000000;
        }

        .contact-radio-button input[type="radio"]:checked::after {
            content: "";
            position: absolute;
            top: 3px;
            left: 6px;
            width: 4px;
            height: 8px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .contact-radio-button input[type="radio"]:hover {
            border-color: #000000;
        }

        .contact-radio-button input[type="radio"]:focus {
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
        }

        .contact-radio-button {
            display: inline-flex;
            align-items: center;
            user-select: none;
            cursor: pointer;
            margin-right: 1em;
            font-size: 12px;
            font-weight: 500;
        }

        .radio-button-wrapper {
            padding: 6px 20px;
        }

        .contact-page-form-submit-button {
            padding: 10px;
            max-width: 200px;
            width: 100%;
            min-height: 50px;
            border-radius: 8px;
            background: #ea7c10;
            text-align: center;
            font-size: 17px;
            font-weight: 400;
            color: white;
            margin-block: 16px;
        }

        div:has(> .contact-page-form-submit-button) {
            display: flex;
            justify-content: end;
        }

        .contact-mockup-circle-small {

            --mock-circle-size-small: 138px;

            --mock-circle-postion-small: 3.5rem;

            height: var(--mock-circle-size-small);
            width: var(--mock-circle-size-small);
                   background: #ffc107;
            border-radius: 1000px;
            position: absolute;
            right: var(--mock-circle-postion-small);
            bottom: var(--mock-circle-postion-small);
        }

        .contact-mockup-circle-big {
            --mock-circle-size-big: 269px;

            --mock-circle-postion-big: -6.5rem;

            height: var(--mock-circle-size-big);
            width: var(--mock-circle-size-big);
            background: #ea7c10;
            border-radius: 1000px;
            position: absolute;
            right: var(--mock-circle-postion-big);
            bottom: var(--mock-circle-postion-big);
        }

        .branch-dropdown {
            /* border: 1px solid #ddd; */
            border-radius: 4px;
            max-width: 300px;
            background: transparent;
            overflow: hidden;
        }

        /* Style the “summary” (the part you click) */
        .branch-dropdown summary {
            cursor: pointer;
            padding: 0;
            font-weight: bold;
            list-style: none;
            /* remove default marker */
            position: relative;
        }

        /* Hide the default arrow and add a custom one */
        .branch-dropdown summary::-webkit-details-marker {
            display: none;
        }

        .branch-dropdown summary::after {
            content: '►';
            display: inline-block;
            font-size: 12px;
            margin-left: 3px;
            transition: transform 0.2s ease;
            transform: rotate(90deg);
            top: -2px;

        }

        .branch-dropdown[open] summary::after {
            transform: rotate(-90deg);
        }

        /* The hidden address content */
        .branch-details {
            padding: 0;
            color: #ffffff;
            line-height: 1.4;
        }

        .contact-social-icons {
            display: flex;
            margin-block-start: 2rem;
        }

        .contact-social-icon {
            padding: 0;
            margin: 0;
            text-decoration: none;
        }

        .contact-social-icon {
            padding: 9px;
            margin-inline: 6px;
            background: #000000;
            display: flex;
            place-content: center;
            border-radius: 999rem;

            transition: background 250ms ease-in-out;

        }

        .contact-social-icon svg {
            fill: white;
            /* -webkit-text-stroke-color: black; */
            width: 18px;
            height: 18px;
            transition: fill 200ms ease-in-out, height 200ms ease, width 200ms ease;
        }

        .contact-social-icon:hover {
            background: #ffffff;

            animation: energy 0.7s ease-in;

        }

        .contact-social-icon:hover svg {
            fill: #000000;
            /* -webkit-text-stroke-color: white; */

            width: 18px;
            height: 18px;


        }

        @keyframes energy {
            0% {
                transform: scale (1, 1);
            }

            25% {
                transform: scale(0.9, 1.1);
            }

            50% {
                transform: scale(1.2, 0.8);
            }

            75% {
                transform: scale(0.95, 1.05);
            }
        }

        @keyframes squish {
            5% {
                transform: scale(1.2, 0.9);
            }

            10% {
                transform: scale(0.9, 1.2) translate(0, -4px);
            }

            15% {
                transform: scale(1);
            }
        }


        @media (width < 800px) {
            .contact-form-wrapper {
                width: calc(100% - 30px);
                flex-direction: column;
            }

            .contact-left {
                width: 100%;
            }
        }

        @media (width < 450px) {
            .field-grid {
                grid-template-columns: 1fr;
            }

            .contact-form-wrapper {
                padding: 12px 8px !important;
                width: calc(100% - 15px);
            }

            .contact-right {
                padding: 0;
            }

            .contact-radio-button {
                padding: 6px;
            }

            .heading {
                margin-block: 1.5rem;
            }
        }

        main {
    width: 93%;
    margin: 0 auto;
    padding: 2rem 0;
}






#heroSectioin {
    position: relative;
}
.businessHero_section {
    position: relative;
    height: 100%;
    top: 130px;
}
.business_iconsWrapper {
    position: relative;
}
.business_iconsWrapper .business_tabhead {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 120px;
        height: 120px;
        background: #fff !important;
        border-radius: 15px;
        outline: 1px solid #ea7c10;
        transition: var(--transition-fast);
        margin: 0 auto 1rem;
        /*padding: 10px;*/
    }
.business_iconsWrapper .business_tabhead img {
                filter: unset !important;
            width: 80px !important;
        }
.business_iconsWrapper:hover .business_tabhead {
            outline: 2px solid #fa9e25;
            outline-offset: -2px;
        }
        .business_iconsWrapper:hover .business_tabhead img {
                filter: unset;
            }
.business_iconsWrapper a {
    display: block;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}
#aboutPage__section {
    position: relative;
    padding: 3rem 0;
}
.heading {
    color: #000000;
}
.heading h1, .heading .h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    text-transform: capitalize;
    letter-spacing: -1px;
}
.heading h1 span, .heading .h1 span {
    background: linear-gradient(90deg, #32568a 48.64%, #eb905d 100.82%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.heading p, .heading .p {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #000000;
    opacity: 0.75;
    text-align: justify;
}
.sustainbility__section {
    padding: 3rem 0;
    background: #f4f6fb;
}
.innovation__leftWrapper img {
    border-radius: 10px;
}
.innovation__rightWrapper .heading h3 {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
}
.innovation__rightWrapper .heading h3::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, #ea7c10 0%, rgba(42, 88, 120, 0) 100%);
}



@media only screen and (max-width: 992px) {
    .businessHero_section {
        top: 100px;
    }
}
@media only screen and (max-width: 768px) {
    .heading {
        width: 100% !important;
    }
        .heading p, .heading .p {
        font-size: 14px;
        font-weight: 300;
    }
}

@media only screen and (max-width: 480px) {
    #aboutPage__section {
        padding: 3rem 0;
    }
    .heading h1, .heading .h1 {
        font-size: 24px;
        font-weight: 600;
    }
        .sustainbility__section {
        padding: 4rem 0 2rem;
    }
}
.real-estate-text-bg{
	text-align: center;
	margin-bottom: 50px;
	    background-color: #ea7c10;
    color: #000;
    padding: 20px;
    border-radius: 50px;
        transition: 0.5s;
}
.real-estate-text-bg:hover{
	background-color: #000;
	color: #ea7c10;
	    transition: 0.5s;
}
.real-estate-text-bg:hover h2{
	color: #ea7c10;
	    transition: 0.5s;
}
.innovation__leftWrapper,
.companies_wrapper{
	    transition: 0.5s;
	    overflow: hidden;
    width: 100%;
    /* height: 50%; */
    border: 2px dashed #ea7c10;
    border-radius: 20px;
    padding: 10px;
}
.innovation__leftWrapper img, 
.companies_wrapper img{
    transition: 0.5s;
}
.innovation__leftWrapper:hover img,
.companies_wrapper:hover img{
	       transform: scale(1.1);
    transition: 0.5s;
}
.innovation__rightWrapper .rounded-2.border.border-1{
	animation: zoomInOut 2s ease-in-out infinite;
}









.blog-one {
  position: relative;
  display: block;
 /* background: #f3f7fe;
  padding: 120px 0px 90px;*/
  z-index: 1;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 35px;
}

.blog-one__single-img {
  position: relative;
  display: block;
}

.blog-one__single-img .overlay-text {
  position: absolute;
  bottom: -27px;
  z-index: 5;
}

.blog-one__single-img .overlay-text li {
  position: relative;
  display: inline-block;
  margin-right: 3px;
}

.blog-one__single-img .overlay-text li:last-child {
  margin-right: 0;
}

.blog-one__single-img .overlay-text li p {
  position: relative;
  display: block;
  background: #65ab50;
  color: #fff;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 13px;
  padding: 1px 15px 2px;
}

.blog-one__single-img .overlay-text li.style2 p {
  color: #ffffff;
  background: #fd912c;
}

.blog-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  z-index: 1;
}

.blog-one__single-img .inner::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(var(--gifall-black-rgb), 0.5);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
}

.blog-one__single:hover .blog-one__single-img .inner::before {
  transform: scaleY(1.0);
}

.blog-one__single-img .inner img {
  width: 100%;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
}

.blog-one__single:hover .blog-one__single-img .inner img {
  transform: scale(1.2) rotate(1deg);
}

.blog-one__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 35px 0px rgb(209, 210, 212, 0.35);
  padding: 15px 20px 20px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  z-index: 1;
}

.blog-one__single-content .white-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  content: "";
  z-index: -1;
}

.blog-one__single-content .left-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -5px;
  width: 43%;
  background: #65ab50;
  border-bottom-left-radius: 30px;
  z-index: -3;
}

.blog-one__single-content .right-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -5px;
  width: 65%;
  background: #fd912c;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: -2;
}

.blog-one__single-content .meta-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 12px;
  padding-left: 0;
}

.blog-one__single-content .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 25px;
  line-height: 0;
}

.blog-one__single-content .meta-box li:last-child {
  margin-right: 0px;
}

.blog-one__single-content .meta-box li .icon {
  position: relative;
  display: block;
}

.blog-one__single-content .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--gifall-black);
  font-size: 16px;
}

.blog-one__single-content .meta-box li .text {
  position: relative;
  display: block;
  margin-left: 8px;
  margin-top: 0;
}

.blog-one__single-content .meta-box li .text p {
  color: rgba(var(--gifall-gray-rgb), 0.7);
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}

.blog-one__single-content .meta-box li .text p a {
  color:#333;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content .meta-box li .text p a:hover {
  color: var(--gifall-base);
}

.blog-one__single-content h2 {
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
}

.blog-one__single-content h2 a {
  color: #333;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 19px;
}

.blog-one__single-content h2 a:hover {
  color: #fd912c;
}

.blog-one__single-content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 23px;
}

.blog-one__single-content-bottom .btn-box {
  position: relative;
  display: block;
}

.blog-one__single-content-bottom .btn-box a {
  color: #ea7c10;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content-bottom .btn-box a:hover {
  color: var(--gifall-black);
}

.blog-one__single-content-bottom .btn-box a span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 14px;
  top: 2px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content-bottom .btn-box a:hover span:before {
  color: var(--gifall-black);
}

.blog-one__single-content-bottom .icon-box {
  position: relative;
  display: block;
}

.blog-one__single-content-bottom .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #65ab50;
  font-size: 18px;
  font-weight: 700;
}
.setup-mar {
    margin-bottom: 60px;
}
.blog-one__single-content .meta-box li .icon span::before {
    position: relative;
    display: inline-block;
    color: #ea7c10;
    font-size: 16px;
}




.vsm-hero-slider.home .content {/* border: 0.5rem solid rgba(var(--vsm-primary-colour), 1); */padding: 1.5rem;}
.box-line-row {
	position: relative;
	padding: 30px 60px;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	border-radius: 2px;
	background: #00000096;
}

.box-line-row span.animate-line:nth-child(1) {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 6px;
	background: linear-gradient(to right, #ea7c10, #264d5e);
	animation: animate1 2s linear infinite;
}

@keyframes animate1 {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.box-line-row span.animate-line:nth-child(2) {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 6px;
	background: linear-gradient(to bottom, #ea7c10, #264d5e);
	animation: animate2 2s linear infinite;
	animation-delay: 1s;
}
@keyframes animate2 {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

.box-line-row span.animate-line:nth-child(3) {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 6px;
	background: linear-gradient(to right, #264d5e, #ea7c10);
	animation: animate3 2s linear infinite;
}

@keyframes animate3 {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.box-line-row span.animate-line:nth-child(4) {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 6px;
	background: linear-gradient(to bottom, #264d5e, #ea7c10);
	animation: animate4 2s linear infinite;
	animation-delay: 1s;
}

@keyframes animate4 {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(-100%);
	}
}

.vsm-hero-slider.home .content .md-heading {
    font-family: "Arial Black","Open Sans",sans-serif;
    font-weight: 800;
    font-size: 25px;
    font-size: 1.5625rem;
    margin-bottom: 1.875rem
}

.footer-logo {
    margin-bottom: 20px;
}


.profile-card{
     position: relative;
     font-family: sans-serif;
    /* width: 220px;
     height: 220px;*/
     background: #fff;
     padding: 30px;
     border-radius: 50%;
     box-shadow: 0 0 22px #3336;
     transition: .6s;
     margin: 0 25px;
     border-radius: 10px;
     height: 290px;
     margin-top: 30px;
   }
   .profile-card .img{
     position: relative;
     width: 100%;
     height: 100%;
     transition: .6s;
     z-index: 99;
     transform: translateY(-60px);
   }
   .img img{
     width: 100%;
     border-radius: 50%;
     box-shadow: 0 0 22px #3336;
     transition: .6s;
     border-radius: 10px;
   }
   .caption{
     text-align: center;
     transform: translateY(-95px);
     opacity: 1;
     transition: .6s;
   }
   .caption h3{
     font-size: 21px;
     font-family: sans-serif;
   }
   .caption p{
     color: #bfbdbd;
    font-size: 16px;
    margin: 0;
   }
   .caption .social-links a{
     color: #333;
     margin-right: 15px;
     font-size: 21px;
     transition: .6s;
   }
   .social-links a:hover{
     color: #0c52a1;
   }






.hero-1 {
     background-color: var(--st-custom-bg);
}
@media (max-width: 1399px) {
  .hero-1 {
    padding-top: 170px;
    padding-bottom: 120px;
  }
}
@media (max-width: 1199px) {
  .hero-1 {
    padding-bottom: 0;
  }
}
.hero-1 .container-fluid {
  padding: 0 155px;
}
@media (max-width: 1600px) {
  .hero-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .container-fluid {
    padding: 0 30px;
  }
}
.hero-1 .hero-content {
  max-width: 680px;
}
.hero-1 .hero-content h5 {
      color: var(--st-white);
    margin-bottom: 12px;
}
@media (max-width: 470px) {
  .hero-1 .hero-content h5 {
    font-size: 16px;
  }
}
.hero-1 .hero-content h5 i {
  margin-right: 8px;
}
.hero-1 .hero-content h1 {
      color: #fff;
    margin-bottom: 20px;
    font-size: 72px;
    font-weight: 800;
    line-height: 112%;
        transition: all 0.4s ease-in-out;
    text-transform: capitalize;
    text-align: unset;
}
.hero-1 .hero-content p {
      color: #fff;
    opacity: 0.7;
}
.hero-1 .hero-image {
  margin-left: -40%;
}
.hero-1 .hero-image img{
	max-width: unset;
}
@media (max-width: 1399px) {
  .hero-1 .hero-image {
    margin-left: 0;
  }
  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
.hero-1 .form-area {
  width: 1000px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .hero-1 .form-area {
    width: initial;
    margin-top: 30px;
  }
}
.hero-1 .form-area .nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-1 .form-area .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--st-header);
  padding: 16px 24px;
  background-color: var(--st-white);
  font-family: "Manrope", sans-serif;
  border-radius: 12px 12px 0px 0px;
}
.hero-1 .form-area .nav .nav-item .nav-link.active {
  background-color: var(--st-theme2);
  color: var(--st-white);
}
.hero-1 .form-area form {
  border-radius: 0px 16px 16px 16px;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(24px);
  margin: 0;
  padding: 24px 22px;
  position: relative;
  z-index: 99;
}
.hero-1 .form-area form .form-item h6 {
  font-size: 16px;
  font-weight: 400;
  color: var(--st-white);
  margin-bottom: 15px;
  display: inline-block;
}
.hero-1 .form-area form .form-item input {
  width: 100%;
  background-color: transparent;
  font-size: 18px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  border: none;
  color: var(--st-white);
}
.hero-1 .form-area form .form-item input::placeholder {
  color: var(--st-white);
}
.hero-1 .form-area form .form-item .single-select {
  padding: 0;
  background-color: transparent;
  border: none;
  line-height: 1;
  height: initial;
  font-size: 18px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--st-white);
}
.hero-1 .form-area form .form-item .single-select .option {
  color: var(--st-header);
}
.hero-1 .form-area form .form-item .single-select::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.hero-1 .form-area form .text-align-right {
  text-align: right;
}
@media (max-width: 1199px) {
  .hero-1 .form-area form .text-align-right {
    text-align: left;
  }
}
.hero-1 .form-area form .theme-btn {
  background-color: var(--st-theme2);
  color: var(--st-white);
  padding: 19px 36px;
}
.hero-1 .form-area form .theme-btn::before {
  background-color: var(--st-header);
}
.hero-1 .form-area .button-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 48px;
}
@media (max-width: 1199px) {
  .hero-1 .form-area .button-list {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
  }
}
.hero-1 .form-area .button-list .theme-btn {
  background-color: transparent;
  border: 1px solid var(--st-white);
  padding: 18px 28px;
  color: var(--st-white);
}
.hero-1 .form-area .button-list .theme-btn::before {
  background-color: var(--st-theme2);
}
.hero-1 .form-area .button-list .theme-btn:hover {
  border: 1px solid var(--st-theme2);
}


.business_iconsWrapper h2{
    margin: 0;
    font-size: 26px !important;
    color: #000;
}



.inquiry-widget {
      --accent:#0b74de;
      --accent-2:#0f9d58;
      --bg:#f7f9fb;
      --card:#ffffff;
      --muted:#6b7280;
      --radius:14px;
      font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
      box-sizing: border-box;
          padding: 0px;
    background: transparent !important;
    }

    .inquiry-widget .card{
      border-radius:var(--radius);
      box-shadow:0 6px 20px rgba(16,24,40,0.06);
      padding: 10px 18px;
	     background-color: var(--st-custom-bg) !important;
	    box-shadow: none;
	    border-color: var(--st-custom-bg) !important;
	    }

    .inquiry-widget .actions{
      display:flex;
      gap:12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .inquiry-widget .btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:12px 16px;
      border-radius:10px;
      text-decoration:none;
      font-weight:600;
      cursor:pointer;
      border:0;
      font-size:15px;
    }

    .inquiry-widget .btn svg{
      width:20px;
      height:20px;
    }

    .inquiry-widget .btn-call{ 
    	background:linear-gradient(90deg,
    		#06b6d4,#0ea5b5); 
    	color:white;
    	 }
    .inquiry-widget .btn-wa{ 
    	background:linear-gradient(90deg,
    		#25D366,
    		#128C7E); 
    	color:white; 
    }
    .inquiry-widget .btn-form{
    	background: #ea7c10;
    	color: #ffffff;
    }

    @media (max-width:600px){
      .inquiry-widget .actions{
        flex-direction: column;
        align-items: stretch;
      }
    }





    @media (max-width: 991px) {
    	.heading h1, .heading .h1{
    		    font-size: 22px;
    	}
		.business_iconsWrapper .business_tabhead{
			width: 60px;
    height: 60px;
        margin: 0 auto 5px;
		}
		.business_iconsWrapper .business_tabhead img{
			    width: 50px !important;
		}
		.real-estate-text-bg{
			    padding: 5px;
			    margin-bottom: 10px;
		}
		.business_iconsWrapper h2{
			    font-size: 20px !important;
		}
		.businessHero_section{
			top: 30px;
		}
	}