/*  */


.onest-fonts {
	font-family: "Onest", sans-serif;
	font-optical-sizing: auto;

}


.poppins-thin {
	font-family: "Poppins", sans-serif;
	font-weight: 100;
	font-style: normal;
}

.poppins-extralight {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: normal;
}

.poppins-light {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.poppins-regular {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.poppins-medium {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.poppins-semibold {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
}

.poppins-bold {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.poppins-extrabold {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: normal;
}

.poppins-black {
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	font-style: normal;
}

.poppins-thin-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 100;
	font-style: italic;
}

.poppins-extralight-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: italic;
}

.poppins-light-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: italic;
}

.poppins-regular-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: italic;
}

.poppins-medium-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: italic;
}

.poppins-semibold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: italic;
}

.poppins-bold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: italic;
}

.poppins-extrabold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: italic;
}

.poppins-black-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	font-style: italic;
}


/* Buttons */

@media(max-width: 992px) {

	#header {
		background: #fff;
	}

}


@media(min-width: 1199px) {

	/* Default state */
	#header {
		position: relative;
		width: 100%;
		transition: all 0.4s ease;
		z-index: 999;
	}

	/* When scrolled */
	.scrolled #header {
		position: fixed !important;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 999;

		background: rgba(255, 255, 255, 0.3);
		/* semi transparent */
		backdrop-filter: blur(7px);
		/* ✅ main blur */
		-webkit-backdrop-filter: blur(7px);
		/* ✅ Safari support */

		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
		/* glass edge */
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

		animation: smoothSlideDown 0.4s ease;
	}

	/* Remove conflicting rule */
	.header.fixed-top {
		position: relative !important;
		z-index: 999;
	}

}

@keyframes smoothSlideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}

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

/*  */

.btn-org {
	white-space: nowrap;
	font-size: 16px;
	color: #222;
	font-family: 'freight_big_prolight';
	background: #F6D258;
	padding: 7px 20px;
	transition: 0.3s;
}

.btn-org:hover {
	font-size: 16px;
	color: #fff;
	font-family: 'freight_big_prolight';
	background: #222;
	padding: 7px 20px;
}

.btn-light-blud {
	white-space: nowrap;
	background: #A9E1FF;
	color: #222;
	font-family: 'freight_big_prolight';
	border-radius: 6px;
	padding: 7px 20px;
	transition: 0.3s;
}

.btn-light-blud:hover {
	background: hwb(132 42% 4%);
	color: #222;
}


.btn-black {
	white-space: nowrap;
	font-size: 16px;
	color: #fff;
	font-family: 'freight_big_prolight';
	background: #222;
	padding: 7px 20px;
	transition: 0.3s;
}

.btn-black:hover {
	font-size: 16px;
	color: #fff;
	font-family: 'freight_big_prolight';
	background: #F6D258;
	padding: 7px 20px;
}

/*  */


/* Wrapper */
.header-cta-wrap .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	font-size: 14px;
	transition: all 0.3s ease;
}

/* 🔥 WhatsApp Button */
.header-cta-wrap .rs-btn-whatsapp {
	width: 42px;
	height: 42px;
	background: #25D366;
	color: #fff;
	border-radius: 50%;
	font-size: 20px;
	position: relative;
	margin-right: 10px;
}

/* Pulse Animation */
.header-cta-wrap .rs-btn-whatsapp::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #25D366;
	animation: rsPulse 1.8s infinite;
	z-index: -1;
}

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

	70% {
		transform: scale(1.6);
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

/* Hover */
.header-cta-wrap .rs-btn-whatsapp:hover {
	transform: scale(1.1);
}

/* 🔲 Book Meeting Button */
.header-cta-wrap .rs-btn-meeting {
	background: #222;
	color: #fff;
	padding: 10px 18px;
	gap: 8px;
	border-radius: 5px;
}

/* Icon */
.header-cta-wrap .rs-btn-meeting i {
	font-size: 16px;
}

/* Hover */
.header-cta-wrap .rs-btn-meeting:hover {
	background: #000;
	color: #fff;
	transform: translateY(-2px);
}


.hero-content {
	display: flex;
	justify-content: end;
}

.hero-content-block {
	max-width: 800px;
}


.h-100vh {
	height: 100vh;
}

.h-90vh {
	height: 85vh;
}


.rs-video-parent {
	position: relative;
	width: 100%;
	height: 100%;
	/* parent controls height */

}

/* Video Fit */
.rs-video-parent .rs-video {
	height: 100%;
	width: 100%;
	min-width: 100%;
	/* prevents side gaps */
	object-fit: cover;
	/* keeps aspect ratio */
	display: block;
}


/* hero-form */


.ideal-property .rs-tabs .nav-link {
	color: #fff;
	font-family: 'bentonsans_boldregular';

}

.ideal-property .rs-tabs .nav-link.active {
	color: #fff;
	border-bottom: 2px solid #fff;
}


.rs-tabs .nav-link {
	color: rgb(152, 152, 152);
	font-weight: 300;
	border: none;
	padding: 5px 5px;
	margin-right: 30px;
	text-transform: uppercase;
}

.rs-tabs .nav-link.active {
	color: #222;
	border-bottom: 2px solid #222;
}

/* Search Bar */
.rs-search-bar {
	border: 1px solid #777;
	border-radius: 7px;
	background: #fff;
	overflow: hidden;
	max-width: 600px;
	background: #fff;
	position: relative;
	z-index: 2;


}

/* Input */
.rs-input {
	border: none;
	box-shadow: none;
	letter-spacing: 0.3px;
	font-size: 14px;

	flex: 1;
	min-width: 0;

}

.rs-input:focus {
	box-shadow: none;
}


.rs-icon,
.rs-filter {
	flex: 0 0 auto;
}

/* Icons */
.rs-icon {
	padding: 12px;
	color: #666;
	display: flex;
	align-items: center;
}

.rs-filter {
	border-right: 1px solid #222;
}

/* Arrow Button */
.rs-arrow-btn {
	border: none;
	background: transparent;
	padding: 0;
	font-size: 18px;
	cursor: pointer;
	flex: 0 0 auto;
}

.rs-arrow-btn a {
	display: block;
	padding: 10px 15px;
}


/* Responsive */
@media (max-width: 768px) {
	.rs-search-bar {
		flex-wrap: wrap;
	}

	.rs-arrow-btn {
		width: auto;
		padding: 10px;
		border-top: 1px solid #eee;
	}
}


.hero-img {
	position: absolute;
	bottom: 0;
	right: -30px;
}


/*  */


.homemap-img {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 75%;
}

.rs-about-section {
	background: #fff;
}

/* Subtitle */
.rs-about-section .rs-subtitle {
	font-size: 14px;
	color: rgb(29, 29, 27);
	display: block;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1.3px;
}

/* Title */
.rs-about-section .rs-title {
	font-size: 80px;
	color: rgb(29, 29, 27);
	margin-bottom: 10px;
}

/* Description */
.rs-about-section .rs-desc {
	font-size: 16px;
	color: #444;
	max-width: 600px;
	line-height: 1.7;
}

/* Image */
.rs-about-section .rs-about-img img {
	max-width: 100%;
	border-radius: 6px;
	transform: rotate(-5deg);
}

/* Learn More */
.rs-about-section .rs-learn-more {
	font-size: 14px;
	color: #000;
	text-decoration: none;
	border-bottom: 1px solid #000;
}

/* Left bottom */
.rs-about-section .rs-year {
	font-size: 96px;
	font-weight: 800;
	margin-bottom: 5px;
	border-bottom: 1px solid #222;
}

.rs-about-section .rs-since {
	font-size: 16px;
	letter-spacing: 2px;
}

/* Tabs */
.rs-about-section .rs-tabs-wrap {
	display: flex;
	gap: 10px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
}

.rs-about-section .rs-tab {
	background: none;
	border: none;
	padding: 6px 14px;
	font-size: 14px;
	cursor: pointer;
}

.rs-about-section .rs-tab.active {
	background: #222;
	color: #fff;
}

/* Content */
.rs-about-section .rs-tab-content p {
	font-size: 16px;

	line-height: 1.8;
}

.home-outline-bg {
	background: url("../img/home-map.png") left bottom no-repeat;

}


/* Responsive */
@media (max-width: 991px) {
	.rs-about-section .rs-title {
		font-size: 40px;
	}

	.rs-about-section .rs-year {
		font-size: 50px;
	}
}

@media (max-width: 576px) {
	.rs-about-section .rs-title {
		font-size: 32px;
	}
}


/*  */


/* ideal property */
/* SECTION FULL HEIGHT */
.ideal-property {
	position: relative;
	max-height: 90vh;
	overflow: hidden;
}

/* VIDEO BACKGROUND */
.ideal-property .ideal-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* DARK OVERLAY */
.ideal-property .ideal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

/* 🔥 CENTER CONTENT */
.ideal-property .ideal-inner {
	position: relative;
	z-index: 2;

	min-height: 100vh;

	display: flex;
	align-items: center;
	/* vertical center */
	justify-content: center;
	/* horizontal center */
	text-align: center;
}

/* CENTER SEARCH BAR WIDTH */
.ideal-property .rs-search-bar {
	max-width: 750px;
	width: 100%;
	min-width: 550px;
	margin: 0 auto;
}


/* CENTER TABS */
.ideal-property .rs-tabs {
	justify-content: center;
}

.ideal-property .ideal-inner h1 {
	color: #fff;
	margin: 20px 0 0 0;
	font-family: 'freight_big_probook';
	font-size: 36px;
	letter-spacing: 0.3px;
}


@media (max-width: 992px) {

	.ideal-property .rs-search-bar {

		min-width: 100%;
	}

}

/*  */


/*  */

.handov {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #222;
	color: #fff;
	padding: 5px 10px;
	z-index: 8
}

.by-made {
	color: #ee7133;
}

.by-made>strong {
	font-weight: 400;
	text-transform: uppercase;
}

.property-card {
	border-radius: 0;
	overflow: hidden;
	background: #fff;
	color: #222;
	border: 0px solid #ddd;
	padding: 0px;
	border: 1px solid #ddd;
}

/* Image */
.property-img {
	position: relative;
	border-radius: 0;
	overflow: hidden;
}

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

/* Overlay */
.property-overlay {
	position: relative;
	bottom: 0;
	width: 100%;
	padding: 20px 20px 10px 20px;
	background: #fff;
}

/* Type */
.property-type {
	font-size: 10px;
	background: #ddd;
	padding: 5px 10px;
	letter-spacing: 1.3px;
	margin-bottom: 10px;

}

/* Title */
.property-title {
	font-size: 18px;
	font-family: 'freight_big_prolight';
	margin: 25px 0;
	color: #000;
	letter-spacing: 1px;
}

/* Location */
.property-location {
	font-size: 15px !important;
	opacity: 0.8;
	color: #222 !important;
	margin: 10px 0 20px 0 !important;
}

.property-location img {
	width: 28px;
}

/* Features */
.property-features {
	display: flex;
	gap: 15px;
	font-size: 16px;
	margin: 10px 0 30px;
}

.property-features img {
	width: 28px;
}

/* Price */
.property-price {
	margin-top: 10px;
}

.property-price span {
	opacity: 0.8;
	font-size: 16px;
	text-transform: uppercase;

}

.property-price strong {
	font-size: 20px;
	margin-left: 5px;
	font-weight: 500;
}

/* Bottom Actions */
.property-actions {
	background: #fff;
	padding: 12px 15px;
	border-top: 1px solid #eee;
}

.property-actions a {
  color: #07234b;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  padding: 10px;
  background: #f0f3f8;
  border-radius: 8px;
  position: relative;
  font-weight: 500;
  display: flex;
  gap: 6px;
  width: 30%;
  align-content: center;
  justify-content: center;
  word-spacing: ;
  flex-wrap: nowrap;white-space: nowrap;
}

.property-actions a:hover {
	opacity: 1;
	color: #ee7133;
}

.property-actions a img {
	height: 18px;
	position: relative;
	
	top: -3px;
}

.svggreen {
	filter: invert(60%) sepia(83%) saturate(400%) hue-rotate(90deg) brightness(90%) contrast(90%);
}

.svgorange {
	filter: invert(56%) sepia(96%) saturate(2000%) hue-rotate(10deg) brightness(100%) contrast(100%);
}

/* Hover Effect */
.property-card:hover img {
	transform: scale(1.05);
	transition: 0.5s ease;
}


.brand-logo .section-title p {
	text-transform: uppercase;
}


/* 
 */


.communities-sec {
	background: #fff;
}

/* Card */
.community-card {
	position: relative;
	overflow: hidden;
	border-radius: 0px;
	height: 250px;
}


.community-card h5 {
	color: #fff;
	display: block;
	margin-bottom: 15px;
	font-size: 30px;
	font-weight: 600;
}

.community-card.h-100 {
	height: 100%;
}

/* Image */


.community-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.6s ease;
}

.community-card:hover img {
	transform: scale(1.1);
}

/* Overlay */

.community-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	padding: 20px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: #fff;
}


.community-overlay-inner {
	display: flex;
	flex-direction: column;
	justify-content: end;
	height: 100%;
}

/* Button */
.community-btn {
	display: inline-flex;
	align-items: center;
	gap: 19px;
	padding: 12px 22px;
	background: #222;
	max-width: 170px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	border-radius: 0px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	white-space: nowrap;
	height: 50px;
}

/* Arrow Wrapper */
.community-btn .arrow {
	display: inline-flex;
	transition: transform 0.4s ease;
}

/* Arrow Image */
.community-btn .arrow img {
	width: 24px;
	transition: transform 0.4s ease;
}

/* Hover Effects */
.community-card:hover .community-btn,
.community-btn:hover {
	background: #F6D258;
	color: #fff;
}

/* 🔥 Move + Rotate */
.community-card:hover .community-btn .arrow,
.community-btn:hover .arrow {
	transform: translateX(6px) rotate(30deg);
}

/* Responsive */
@media (max-width: 768px) {
	.community-card {
		height: 200px;
	}
}


/*  */
.community-btn-link {
	display: inline-flex;
	align-items: center;
	gap: 19px;
	max-width: 170px;
	padding: 12px 22px;
	background: transparent;
	color: #222;
	font-size: 16px;
	text-decoration: none;
	border-radius: 0;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

/* Arrow Wrapper */
.community-btn-link .arrow {
	display: inline-flex;
	transition: transform 0.4s ease;
}

/* Arrow Image */
.community-btn-link .arrow img {
	width: 24px;
	transition: 0.4s ease;
}

/* Default SVG → black */
.blacksvg {
	filter: brightness(0) saturate(100%);
	transition: 0.3s ease;
}

/* ✅ Hover: Text + SVG color */
.community-btn-link:hover {
	color: #222;
}

/* ✅ SVG turns gold */
.community-btn-link:hover .blacksvg {
	filter: invert(83%) sepia(36%) saturate(532%) hue-rotate(6deg) brightness(102%) contrast(95%);
}

/* 🔥 Move + Rotate Arrow */
.community-btn-link:hover .arrow {
	transform: translateX(6px) rotate(30deg);
}


/*  */


/* Button */
.main-btn {
	display: inline-flex;
	align-items: center;
	gap: 19px;
	padding: 12px 22px;
	background: #222;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	border-radius: 0px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	white-space: nowrap;
}

/* Arrow Wrapper */
.main-btn .arrow {
	display: inline-flex;
	transition: transform 0.4s ease;
}

/* Arrow Image */
.main-btn .arrow img {
	width: 24px;
	transition: transform 0.4s ease;
}

/* Hover Effects */
.main-btn:hover {
	background: #F6D258;
	color: #fff;
}

/* 🔥 Move + Rotate */
.main-btn:hover .arrow {
	transform: translateX(6px) rotate(30deg);
}


/* btn -orange */


/* Button */
.main-btn-org {
	display: inline-flex;
	align-items: center;
	gap: 19px;
	padding: 12px 22px;
	background: #F6D258;
	color: #222 !important;
	font-size: 16px;
	text-decoration: none;
	border-radius: 0px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	white-space: nowrap;
}

/* Arrow Wrapper */
.main-btn-org .arrow {
	display: inline-flex;
	transition: transform 0.4s ease;
}

/* Arrow Image */
.main-btn-org .arrow img {
	width: 24px;
	transition: transform 0.4s ease;
}

/* Hover Effects */
.main-btn-org:hover {
	background: #fff;
}

/* 🔥 Move + Rotate */
.main-btn-org:hover .arrow {
	transform: translateX(6px) rotate(30deg);
}


/* Default SVG color → #222 */
.svg-color {

	filter: brightness(0) saturate(100%) invert(10%);
}

/* Hover → change to gold */
.main-btn-org:hover .arrow .svg-color {
	filter: invert(83%) sepia(36%) saturate(532%) hue-rotate(6deg) brightness(102%) contrast(95%);
}


/*  */

.exclusive-wrap {
	background: rgb(29, 29, 27) url("../img/ex-bg.jpg") 0 0 no-repeat;
	background-size: cover;
	position: relative;
}


.exclusive-wrap::before {
	position: absolute;
	bottom: 0;
	height: 40%;
	left: 0;
	right: 0;
	background: #fff;
	content: "";
}

.exclusive-card {
	background: #fff;
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	transition: 0.4s ease;
	padding: 10px;
}

/* Image */
.exclusive-img {
	position: relative;
	height: 260px;
	overflow: hidden;
}

.exclusive-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.6s ease;
}

/* 🔥 Zoom Effect */
.exclusive-card:hover .exclusive-img img {
	transform: scale(1.08);
}

/* Dots */
.exclusive-dots {
	position: absolute;
	right: 15px;
	top: 50%;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.exclusive-dots span {
	width: 8px;
	height: 8px;
	background: #ccc;
	border-radius: 50%;
}

.exclusive-dots span.active {
	background: #000;
}

/* Content */
.exclusive-content {
	padding: 20px;
}

/* Price */
.exclusive-price {
	font-size: 18px;
	letter-spacing: 0.3px;
	color: #333;
	font-family: 'bentonsans_regularregular';
	margin-bottom: 8px;
}

/* Title */
.exclusive-title {
	font-size: 19px;
	letter-spacing: 1px;
	margin-bottom: 10px;
	color: #111;
}

/* Location */
.exclusive-location {
	font-size: 14px;
	color: #333;
	margin-bottom: 15px;
}

/* Features */
.exclusive-features {
	font-size: 14px;
	color: #444;
}

/* Hover Lift */

.excusivepagi {
	margin: 0 0 0px 0;
}

.excusivepagi .swiper-pagination-bullet {
	background-color: #222;
	width: 30px;
	border-radius: 5px;
	height: 5px;
}

.excusivepagi .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #222;
	width: 65px;
}

.exSwiper .swiper-wrapper {
	padding-bottom: 60px;
}


/*  */

/* Section */
.property-manage-sec {
	background-color: #fff;

	/* dotted pattern */
	background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
	background-size: 12px 12px;
}

/* Title */
.prop-title {
	font-size: 36px;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 20px;
	font-family: 'freight_big_prolight';
}

/* Description */
.prop-desc {
	font-size: 16px;
	color: #666;
	line-height: 1.7;

	margin: 0 0 25px 0;
}

/* Button */
.prop-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border: 1px solid #333;
	border-radius: 6px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: 0.3s ease;
}

.prop-btn span {
	transition: 0.3s ease;
}

/* Hover */
.prop-btn:hover {
	background: #000;
	color: #fff;
}

.prop-btn:hover span {
	transform: translateX(5px) rotate(45deg);
}

/* Image */
.prop-img img {
	border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
	.prop-title {
		font-size: 30px;
	}
}


.video-management {
	position: relative;
	width: 100%;
	border-radius: 15px;

	overflow: hidden;
	height: 500px;
}

.video-fit {
	width: 100%;

	object-fit: cover;
	/* key for auto fit */
	display: block;
}


/*  */

.rs-property-section {
	background: #f5f5f5;
}

.rs-property-section .rs-title {
	font-size: 48px;
	font-weight: 700;
	color: #000;
	line-height: 1;
}

.rs-property-section .rs-text {
	font-size: 16px;
	color: #222;
	line-height: 1.5;
}

/* Image Box */
.rs-property-section .rs-img-box {
	overflow: hidden;
	border-radius: 6px;
}

/* VIDEO BOX */
.rs-property-section .rs-video-box {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 480px;
	/* controls height */
	overflow: hidden;
	border-radius: 6px;
}

/* AUTO FIT VIDEO */
.rs-property-section .rs-video-box video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
}

/* RESPONSIVE */
@media (max-width: 991px) {
	.rs-property-section .rs-title {
		font-size: 24px;
	}

	.rs-property-section .rs-video-box {
		min-height: 300px;
	}
}

@media (max-width: 576px) {
	.rs-property-section .rs-title {
		font-size: 20px;
	}

	.rs-property-section .rs-text {
		font-size: 14px;
	}

	.rs-property-section .rs-video-box {
		min-height: 250px;
	}
}


/*  */


.news {
	position: relative;
	background: #fff url("../img/new-bg.png") left bottom no-repeat;
	background-size: contain;
}

/* Background blueprint effect (optional) */
.news::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 300px;
	height: 800%;
	background8 url('../img/bg-pattern.png') no-repeat center;
	opacity: 0.05;
}

/* Title */
.news-title {
	font-size: 80px;
	;
	font-family: 'freight_big_prolight';
	color: rgb(29, 29, 27);
}

.news-desc {
	max-width: 600px;
	color: #666;

}

/* Explore Link */
.explore-link {
	color: rgb(29, 29, 27);
	text-decoration: none;
	font-weight: 500;
	transition: 0.3s;
}

.explore-link span {
	display: inline-block;
	transition: 0.3s;
}

.explore-link:hover span {
	transform: translateX(5px);
}

/* Card */
.news-card {
	position: relative;

}

.news-img img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: 0.5s;
}

/* Zoom effect */
.news-card:hover img {
	transform: scale(1.1);
}

/* Content box */
.news-content {
	position: relative;
	width: 100%;
	background: #fff;
	padding: 26px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
	margin: 0;
	border-radius: 10px;
}

.news-img {
	overflow: hidden;
}

.news-content .category {
	font-size: 14px;
	color: #888;
	display: block;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.news-content h5 {
	font-size: 20px;

	line-height: 1.4;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.news-content p {
	font-size: 16px;
	color: #111;
	margin: 0;
}


/*  */


.premium-project {
	background: #f4f4f4;
}

/* Left Box */
.project-content {
	background: url("../img/hero-bg-image.png") 0 0 no-repeat;
	background-size: cover;
	padding: 30px;
	border-radius: 20px;
	height: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

/* Tag */
.project-content .tag {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
	display: block;
}

/* Title */
.project-title {
	font-size: 34px;
	font-weight: 400;
	font-family: 'freight_big_prolight';
	color: rgb(29, 29, 27);
	line-height: 1.5;
}

/* Info */
.project-info strong {
	font-size: 16px;
	display: block;
}

.project-info p {
	font-size: 12px;
	color: #777;
	margin: 0;
}

/* Button */
.discover-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #000;
	color: #fff;
	padding: 12px 20px;
	text-decoration: none;
	transition: 0.3s;
}

.discover-btn span {
	transition: 0.3s;
}

/* Hover */
.discover-btn:hover {
	background: #F6D258;
	color: #000;
}

.discover-btn:hover span {
	transform: translateX(5px);
}

/* Image */
.project-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}


.swiper.projectSwiper {
	padding: 0 30px;
}

.swiper-button-prev {
	left: 0;
}

.swiper-button-next {
	right: 0;
}


/* Wrapper */
.custom-nav {
	display: flex;
	gap: 15px;
}

/* Common Button Style */
.swiper-button-prev,
.swiper-button-next {
	width: 45px;
	height: 45px;
	background: #000;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s;
}

/* Hover effect */
.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: rgb(29, 29, 27);
}

/* Remove default arrows */
.swiper-button-prev::after,
.swiper-button-next::after {
	display: none;
}

/* Custom Arrow */
.swiper-button-prev::before,
.swiper-button-next::before {
	content: "";
	width: 15px;
	height: 15px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	display: block;
}

/* Left Arrow */
.swiper-button-prev::before {
	transform: rotate(-135deg);
}

/* Right Arrow */
.swiper-button-next::before {
	transform: rotate(45deg);
}


/*  */


.footer {
	background: #000 url(../img/hero-bg-image.png) 0 0 no-repeat;
	background-size: cover;
	color: #fff;
}


.footer-cta-overlay h2 {
	font-size: 4rem;
	line-height: 1;
	letter-spacing: 1px;
	font-weight: normal;
	font-family: 'freight_big_probook';
}

.footer-wrap {
	background: rgb(29, 29, 27);
}

.footer-link {
	color: #fff;
	text-decoration: none;
	display: block;
	font-size: 16px;
	margin-bottom: 6px;
	transition: 0.3s;
}

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

.footer-cta img {
	object-fit: cover;
	height: 100%;
}

.footer-cta-overlay {
	background: rgba(0, 0, 0, 0.4);
}

.footer-item span:first-child {
	color: #aaa;
	font-size: 13px;
}

.footer-item span:last-child {
	font-weight: 500;
}

.footer-social a:hover {
	color: #EC1D39;
}


.footer-menu .footer-link {
	display: inline-block;
	color: #fff;
	border-left: 1px solid #fff;
	padding: 0 10px !important;
	margin: 0 !important;
}

.footer-menu .footer-link:first-child {
	border: 0px;
}


.footer-cta {
	/* adjust as needed */
}


.footer-cta,
.foot-rt-info {
	min-height: 650px;
}

.bg-video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: 0;
}

/* Dark overlay (optional but recommended) */
.footer-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	/* adjust darkness */
	z-index: 1;
}

.footer-cta-overlay {
	z-index: 2;
}


.footer-contact .footer-item span {
	color: #fff;
}


.footer-contact .footer-item a i {
	font-size: 22px;
}


.foot-info-text {
	font-size: 22px;
	max-width: 450px;
}


.footer-block h6 {
	color: #fff;
	margin-bottom: 20px;
	font-family: 'freight_big_promedium';
	font-size: 20px;
	letter-spacing: 1px;
}

/*  */


.footer-links h6 {
	color: #fff;
	font-size: 18px;
	font-family: 'bentonsans_regularregular';
}


.sl-title {
	color: #fff;
	border: 1px solid #fff;
	border-radius: 30px;
	padding: 7px 15px;
	font-size: 14px;
}


/* SVG default color → #222 */
.svg-icon {


	transition: transform 0.3s ease;

	/* convert to dark gray (#222 approx) */
	filter: brightness(0) invert(1);
	/* makes SVG white */
}

/* Hover SVG → gold */
.svg-icon:hover {
	transform: scale(1.2);
}


/* Inputs */
.custom-input {
	border: none;
	border-bottom: 1px solid #999;
	border-radius: 0;
	background: transparent;
	padding: 15px 0 15px 0;
}

.custom-input:focus {
	box-shadow: none;
	border-color: #000;
}


.custom-input::placeholder {
	color: rgba(175, 174, 174, 0.8);
}

.select-wrapper {
	position: relative;
}

.select-wrapper select {
	appearance: none;
	padding-right: 40px;
}

.contact-box .toggle-dropdown {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #444;
	pointer-events: none;
	transition: 0.3s ease;
}

/* Hover effect */
.select-wrapper:hover .toggle-dropdown {
	color: #444;
}


/* Button */
.submit-btn {
	background: transparent;
	border: 1px solid #000;
	padding: 10px 20px;
	transition: 0.3s;
}

.submit-btn:hover {
	background: #F6D258;
	border-color: #F6D258;
}

/* Right side */
.contact-right {
	padding: 20px;
}

.contact-right h3 {
	font-family: 'bentonsansbold';
	font-size: 30px;
}

/* Profile */
.profile-img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

/* Text */
.small-text {
	font-size: 13px;
	color: #777;
}

.contact-right .detail-icon i {
	font-size: 26px;
}

.phone {
	font-size: 26px;
	font-weight: 500;
}


.info-block strong {
	font-family: 'bentonsansbold';
	font-weight: 500;
	width: 70px;
}

/* Social */

.social-icons {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 15px 0;
}

.social-icons a {
	margin-right: 10px;
	color: #000;
	font-size: 16px;
}

/* Mobile Fix */
@media (max-width: 768px) {
	.contact-box {
		padding: 25px;
	}

	.contact-right {
		margin-top: 20px;
	}
}


/*  */


.faq-section,
.faqimg {
	background: #f5f5f5
}

.faq-title {
	font-size: 48px;
	font-weight: 300;
	font-family: 'freight_big_prolight';
	letter-spacing: 2px;
	margin-top: 20px;
}

.faq-subtitle {
	color: #999;
	font-size: 14px;
}

.faq-desc {
	font-size: 13px;
	letter-spacing: 1px;
}

/* Contact Box */
.faq-contact {
	background: rgb(29, 29, 27);
	color: #fff;
	border-radius: 50px;
	padding: 10px 20px;
}

.call-icon {
	width: 40px;
	height: 40px;
	background: #F6D258;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Accordion */
.faq-list {
	max-width: 900px;
	margin: auto;
}

.faq-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	cursor: pointer;
	border-bottom: 1px dashed #999;
	text-align: left;
}

.faq-item p {
	margin: 0;
	font-size: 16px;
}

.faq-icon {
	font-size: 22px;
	transition: 0.3s;
}

/* Content */
.faq-content {
	padding: 24px 20px 10px;
	color: #666;
	font-size: 14px;
	text-align: left;
	background: #fff;
}

/* Hover */
.faq-item:hover p {
	color: #222;
}

/* Active icon change */
.faq-item[aria-expanded="true"] .faq-icon {
	transform: rotate(45deg);
	/* + becomes × */
	color: #222;
}


/* about us */


.find-title {
	font-size: 48px;
	font-weight: 400;
	line-height: 2;
	color: rgb(29, 29, 27);
}

.find-title .fw-bold {
	font-weight: 700;
	font-family: 'bentonsansbold';
}

/* Inline Images */
.inline-img {
	width: 90px;
	height: 60px;
	object-fit: cover;
	border-radius: 6px;
	margin: 0 8px;
	display: inline-block;
	vertical-align: middle;
	transform: rotate(-5deg);
}

/* Second image slightly different */
.img2 {
	transform: rotate(5deg);
}

/* Responsive */
@media (max-width: 768px) {
	.find-title {
		font-size: 28px;
	}

	.inline-img {
		width: 70px;
		height: 45px;
	}
}


/* about section 2 */


.about-img img {
	height: 100%;
	object-fit: cover;
}

/* Center Content */
.about-content {
	background: #f5f5f5;
}

.about-content h5 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
}

.about-content p {
	font-size: 16px;
	color: #666;
	margin-bottom: 15px;
}

/* Signature style */
.signature {
	font-family: 'Brush Script MT', cursive;
	font-size: 28px;
}

/* Responsive */
@media (max-width: 991px) {
	.about-img img {
		height: 300px;
	}

	.about-content {
		padding: 40px 20px;
	}
}

/*  */


.about-tag {
	font-size: 16px;
	letter-spacing: 1px;
	color: #222;
}

.about-title {
	font-size: 40px;
	line-height: 1.4;
	color: rgb(29, 29, 27);
}

.about-title strong {
	font-weight: 400;
	font-family: 'bentonsansbold';
}

.about-desc {
	font-size: 14px;
	color: #666;

}

/* Brochure image */
.brochure-img img {
	max-width: 250px;
	transform: rotate(-10deg);
}

/* Button */
.explore-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #F6D258;
	color: rgb(29, 29, 27);
	padding: 12px 25px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	transition: 0.3s ease;
}

.explore-btn span {
	transition: 0.3s ease;
}

/* Hover */
.explore-btn:hover span {
	transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
	.about-title {
		font-size: 26px;
	}

	.brochure-img img {
		max-width: 180px;
	}

	.about-desc {
		max-width: 100%;
	}
}


/*  */


.vision-wrapper {
	border-radius: 25px;
	position: relative;
	overflow: hidden;
	background: #222 url("../img/hero-bg-image.png") 0 0 no-repeat;
	background-size: cover;
}

/* Left & Right Boxes */
.vm-box {

	color: #fff;
	padding: 60px 30px;
	height: 100%;
	position: relative;
	border-radius: 20px 0 0 20px;
}

/* Subtle grid overlay */
.vision-wrapper::before {
	content: "";
	display: none;
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}

.vm-box h3 {
	font-size: 28px;
	font-family: 'freight_big_prolight';
	color: #fff;
	margin-bottom: 20px;
}

.vm-box p {
	font-size: 16px;
	color: #ccc;
	line-height: 1.7;
}

/* Center image */
.vm-image img {
	height: 100%;
	object-fit: cover;
}

/* Buttons */
.vm-btn {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
	transition: 0.3s ease;
}

/* WhatsApp button */
.whatsapp-btn {
	background: #25D366;
	color: #fff;
}

/* Primary button */
.primary-btn {
	background: #F6D258;
	color: rgb(29, 29, 27);
}

/* Hover */
.vm-btn:hover {
	opacity: 0.85;
}

/* Responsive */
@media (max-width: 991px) {
	.vm-box {
		padding: 40px 20px;
	}

	.vm-image img {
		height: 300px;
	}
}


/*  */

.property-opt {
	background: #fff;
}

.property-opt .property-title {
	font-size: 42px;
	font-weight: 300;
	font-family: 'freight_big_prolight';
	line-height: 1.4;
	color: rgb(29, 29, 27);
}

/* Box */
.property-opt .property-box img {
	width: 50px;
	margin-bottom: 15px;
}

.property-opt .property-box h6 {
	font-weight: 600;
	margin-bottom: 8px;
}

.property-opt .property-box p {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
}

/* Divider line */
.property-opt .border-line {
	position: relative;
}

.property-opt .border-line::before {
	content: "";
	position: absolute;
	left: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: #ccc;
}

/* Hover (optional premium) */
.property-opt .property-box:hover h6 {}

/* Responsive */
@media (max-width: 991px) {
	.property-opt .border-line::before {
		display: none;
	}

	.property-opt .property-title {
		font-size: 28px;
	}
}


.sound-btn {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: rgba(0, 0, 0, 0.6);
	border: none;
	color: #fff;
	font-size: 18px;
	padding: 10px 14px;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s;
}

.sound-btn:hover {
	background: #c79110;
	/* your gold theme */
	color: #000;
}


@media (max-width: 1199px) {

	.nav-wrap-left {}

}

@media (max-width: 992px) {
	.hero {
		padding-top: 60px;
	}

	.hero-content {
		justify-content: center;
	}

	.hero-content.h-90vh {
		height: auto;
	}

	.section-title h2 {
		font-size: 28px;
		line-height: 40px;
	}


	.project-title {
		font-size: 24px;
	}
}


.section-title h2 {
	font-family: 'freight_big_prolight';
	font-size: 40px;
	line-height: 50px;
	letter-spacing: 1.3px;
}


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


/* premium project slider */

/* ===== PREMIUM SLIDER ===== */
.premium-slider {
	position: relative;
	height: 95vh;
	overflow: hidden;
}

/* Slide */
.premium-slider .premium-slide {
	position: relative;
	height: 100vh;
}

.premium-slider .premium-slide img {
	position: absolute;
	width: 110%;
	height: 110%;
	object-fit: cover;
	transition: 6s ease;
}

/* Parallax */
.premium-slider .swiper-slide-active img {
	transform: scale(1);
}

/* Overlay */
.premium-slider .premium-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
}

/* Content */
.premium-slider .premium-content {
	position: relative;
	z-index: 2;
	color: #fff;
	top: 10%;
	left: 9%;
	max-width: 550px;
}

.premium-slider .premium-title {
	font-size: 48px;
	font-weight: bold;
	color: #fff;
}

.premium-slider .premium-btn {
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 12px 25px;
	margin-top: 20px;
	transition: 0.3s;
}

.premium-slider .premium-btn:hover {
	background: #222;
}

/* RIGHT UI */
.premium-slider .premium-ui {
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	color: #fff;
	text-align: center;
}

.premium-slider .counter {
	margin-bottom: 15px;
	text-align: left;
}

/* Thumbnail */
.premium-slider .thumb-box {
	width: 120px;
	height: 94px;
	overflow: hidden;
	margin-bottom: 0;
}

.premium-slider .thumb-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s;
}

.premium-slider .thumb-box img:hover {
	transform: scale(1.05);
}

/* Arrows */
.premium-slider .thumb-arrow-wrap .arrow {
	cursor: pointer;
	margin: 0;
	font-size: 18px;
	transition: 0.3s;
	background: #222;
	padding: 10px 14px;
}

.premium-slider .arrow-nav:hover {
	opacity: 0.7;
	background: #F6D258;
}

/* Progress */
.premium-slider .progress-bar-wrap {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: rgba(255, 255, 255, 0.2);
}

.premium-slider .progress-bar {
	width: 0%;
	height: 100%;
	background: #fff;
}

/* Responsive */
@media(max-width:768px) {
	.premium-slider .premium-ui {
		display: none;
	}

	.premium-slider .premium-title {
		font-size: 28px;
	}
}


.premium-project-info {
	background: transparent;
	/* same blue tone */
	color: #fff;
}

.premium-project-info .premium-tag {
	font-size: 14px;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 1.3px;
	color: #fff;
}

.premium-project-info .premium-title {
	font-size: 48px;
	font-weight: 400;
	letter-spacing: 1.3px;
	line-height: 1.2;
	color: #fff;
}

.premium-meta {
	margin: 25px 0;
}

.premium-meta h6 {
	font-size: 18px;

	color: #fff;
	font-family: 'bentonsans_regularregular';
}

.premium-project-info .premium-meta p {
	font-size: 15px;
	opacity: 0.8;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.3px;
}

.premium-project-info .icon-box {
	font-size: 28px;
}

.premium-meta .divider {
	width: 1px;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	margin: auto;
}

.premium-project-info .premium-btn {
	background: #000;
	color: #fff;
	padding: 12px 25px;
	border-radius: 0;
	transition: 0.3s;
}

.premium-project-info .premium-btn:hover {
	background: #222;
}

/* Responsive */
@media (max-width: 768px) {
	.premium-project-info .premium-title {
		font-size: 28px;
	}
}


.premium-content .icon-box i {
	font-size: 40px;
}

.premium-content h6 {
	color: #fff;
	font-size: 18px;
}


/* animation css */

/* UNIQUE CLASS */

.rs-shine {
	position: relative;
	overflow: hidden;
}

.rs-shine::after {
	content: "";
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg,
			transparent,
			rgba(255, 255, 255, 0.5),
			transparent);
	transform: skewX(-25deg);
}

.rs-shine:hover::after {
	animation: shineMove 0.8s ease;
}

@keyframes shineMove {
	100% {
		left: 125%;
	}
}