@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
	overflow-x: hidden;
}

* {
	margin: 0;
	padding: 0;
	letter-spacing: .5px;
	/* font-family: "Montserrat", sans-serif; */
	font-family: "Roboto", sans-serif;
}

.info-box h1 {
	font-size: 35px;
}

.info-box h2 {
	font-size: 25px;
}

.gallery-img-box {
	position: relative;
}

.artistic-text {
	position: absolute;
	bottom: 8px;
	right: 10px;
	background: rgba(0,0,0,0.5);
	color: #fff;
	font-size: 7px;
	padding: 3px 8px;
	border-radius: 3px;
}

.take {
	position: absolute;
	bottom: 5px;
	left: 50px;
	font-size: 10px;
}

/* gallery */
.gallery-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.gallery-slider {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	gap: 20px;
	padding: 10px;
}

.rera-text p {
	margin-bottom: 2px;
	font-size: 14px;
}

.mid_des {
	margin-bottom: 20px;
}

.mid_des p {
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 400;
}

.col-md-9.rera-text {
	padding: 0;
}

.gallery-slider::-webkit-scrollbar {
	display: none;
}

.gallery-img-box {
	min-width: 250px;
	position: relative;
}

.gallery-img-box img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 10px;
	cursor: pointer;
}

.artistic-text {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0,0,0,0.6);
	color: #fff;
	font-size: 7px;
	padding: 3px 8px;
	border-radius: 4px;
}

.gallery-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #000;
	color: #fff;
	border: none;
	font-size: 28px;
	padding: 5px 15px;
	cursor: pointer;
	z-index: 2;
	border-radius: 5px;
}

.gallery-btn.left {
	left: -10px;
}

.gallery-btn.right {
	right: -10px;
}

.modal-img {
	width: 100%;
	border-radius: 10px;
}

/* gallery */

a {
	text-decoration: none;
}

:root {
	--primary-color: #72322a;
	--secondary-color: #1d3a4a;
	--text-color: #333;
}

a, a:hover {
	text-decoration: none;
	color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Montserrat", sans-serif;
}

body {
	font-family: "Roboto", sans-serif;
}

.container-fluid.container_pading {
	padding: 0 50px;
}

/* ================================
   ENQUIRY MODAL
================================ */

.enquiry-modal {
	border: 0;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
	position: relative;
}

/* Close Button */
.enquiry-close {
	position: absolute;
	right: 15px;
	top: 15px;
	z-index: 10;
	width: 35px;
	height: 35px;
	padding: 0;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.95);
	opacity: 1;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.enquiry-close:hover {
	opacity: 1;
	transform: rotate(90deg);
	transition: all 0.3s ease;
}


/* ================================
   LEFT IMAGE
================================ */

.enquiry-image {
	min-height: 460px;
	position: relative;
	overflow: hidden;
}

.enquiry-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* ================================
   FORM AREA
================================ */

.enquiry-form-wrapper {
	display: flex;
	align-items: center;
	background: #fff;
}

.enquiry-content {
	width: 100%;
	padding: 45px 42px;
}


/* Heading */

.enquiry-heading {
	margin-bottom: 28px;
}

.enquiry-small-title {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #e58b24;
	margin-bottom: 7px;
}

.enquiry-heading h3 {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700;
	color: #172033;
}

.enquiry-heading p {
	margin: 0;
	color: #777;
	font-size: 14px;
	line-height: 1.6;
}


/* ================================
   FORM GROUP
================================ */

.form-group {
	margin-bottom: 18px;
}

.form-group label {
	display: block;
	margin-bottom: 7px;
	font-size: 13px;
	font-weight: 600;
	color: #333;
}


/* Input Wrapper */

.input-wrapper {
	position: relative;
}

.input-wrapper i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 16px;
	z-index: 2;
}

.input-wrapper .form-control {
	height: 52px;
	border: 1px solid #e1e1e1;
	border-radius: 9px;
	padding: 0 15px 0 45px;
	font-size: 14px;
	color: #333;
	background: #fafafa;
	box-shadow: none;
	transition: all 0.3s ease;
}

.input-wrapper .form-control::placeholder {
	color: #aaa;
}

.input-wrapper .form-control:focus {
	border-color: #e58b24;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(229, 139, 36, 0.10);
}

.input-wrapper:focus-within i {
	color: #e58b24;
}


/* ================================
   SUBMIT BUTTON
================================ */

.form-submit {
	margin-top: 25px;
}

.submit_enq {
	width: 100%;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 9px;
	background: #e58b24;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.submit_enq:hover {
	background: #c96f0d;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(229, 139, 36, 0.25);
}

.submit_enq i {
	font-size: 16px;
	transition: transform 0.3s ease;
}

.submit_enq:hover i {
	transform: translateX(4px);
}

button.btn.submit_enq {
	background: #ddd;
	color: #000;
	text-transform: uppercase;
	font-weight: 600;
}


/* ================================
   TABLET
================================ */

@media (max-width: 767.98px) {

	.modal-dialog {
		margin: 15px;
	}

	.enquiry-modal {
		border-radius: 15px;
	}

	.enquiry-form-wrapper {
		width: 100%;
	}

	.enquiry-content {
		padding: 35px 25px 30px;
	}

	.enquiry-heading {
		margin-bottom: 22px;
	}

	.enquiry-heading h3 {
		font-size: 26px;
	}

	.enquiry-close {
		right: 12px;
		top: 12px;
	}
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

	.modal-dialog {
		margin: 10px;
	}

	.enquiry-content {
		padding: 32px 20px 25px;
	}

	.enquiry-heading h3 {
		font-size: 24px;
	}

	.enquiry-heading p {
		font-size: 13px;
	}

	.input-wrapper .form-control {
		height: 50px;
	}

	.submit_enq {
		height: 50px;
	}
}


/* ========== HEADER ============ */
.project-logo {
	height: 45px;
}

.header {
	padding: 5px 0;
	border-bottom: 1px solid #ddd;
}

.navbar {
	background-color: #fff;
}

.navbar-brand {
	color: var(--text-color);
	font-weight: bold;
	font-size: 1.5rem;
}

.navbar-brand:hover {
	color: var(--primary-color);
}

.header .nav-link {
	color: var(--primary-color);
	margin-right: 10px;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 500;
	font-family: "Montserrat", sans-serif;
}

.header .nav-link:hover {
	color: var(--primary-color);
}

.call-button {
	background-color: var(--primary-color);
	color: #fff;
	border: none;
	padding: 10px 25px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	font-weight: 500;
	border-radius: 50px;
	border: 1px solid #fff;
}

.call-button a {
	color: #fff;
	font-family: 'MontserratBold';
	letter-spacing: 1px;
	text-decoration: none;
}

.call-button i {
	margin-right: 5px;
}

.call-button:hover {
	background-color: #5a6825;
	color: white;
}

/* Updated slider */
.slider-content {
	position: absolute;
	left: 30px;
	top: 43%;
    /* transform: translateX(20px); */
	padding: 20px;
	color: #000;
	width: 60%;
}

.b-logo {
	height: 100px;
}

.pr_imgs img {
	width: 100%;
	display: block;
}

.mid.logo {
	position: absolute;
	top: 40%;
	right: 50px;
}

.shine {
	position: absolute;
	right: 90px;
	bottom: 80px;
	background-color: #FF9800 !important;
	color: #000 !important;
	padding: 10px 15px;
	display: inline-block;
	transform-origin: left;
	border-radius: 50px;
	animation: zoomLeftToRight 1.5s ease forwards;
}

.highlight-zoom {
	animation: zoomLeftRight 2s ease-in-out infinite;
	box-shadow: 0 0 10px rgba(0, 255, 150, 0.6);
}

@keyframes zoomLeftRight {
	0% {
		transform: scaleX(1);
		box-shadow: 0 0 5px rgba(0, 255, 150, 0.4);
	}

	50% {
		transform: scaleX(1.2);
		box-shadow: 0 0 20px rgba(0, 255, 150, 0.9);
	}

	100% {
		transform: scaleX(1);
		box-shadow: 0 0 5px rgba(0, 255, 150, 0.4);
	}
}

.baner_dess h4 {
	margin-bottom: 5px;
	font-size: 18px;
	text-transform: uppercase;
	margin-top: 5px;
	color: #000;
}

.modal-img {
	max-width: 100%;
	border-radius: 10px;
}

.btn-close {
	z-index: 10;
	opacity: 1;
}

.lists img {
	width: 15px;
}



/* ==========================================
   HERO SLIDER
========================================== */

.hero-slider {
	width: 100%;
	overflow: hidden;
}

.hero-slider .carousel-item {
	height: 650px;
	position: relative;
	overflow: hidden;
}


/* Image */

.hero-slider .carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/* ==========================================
   DARK OVERLAY
========================================== */

.slider-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
            90deg,
            rgba(0, 0, 0, .78) 0%,
            rgba(0, 0, 0, .52) 45%,
            rgba(0, 0, 0, .15) 100%
        );
	z-index: 1;
}


/* ==========================================
   CONTENT
========================================== */

.slider-container {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	z-index: 2;
}

.slider-content {
	max-width: 740px;
	color: #fff;
	animation: sliderContent 1s ease;
}

@keyframes sliderContent {

	from {
		opacity: 0;
		transform: translateY(35px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* ==========================================
   TAG
========================================== */

.slider-tag {
	display: inline-block;
	padding: 8px 16px;
	margin-bottom: 18px;
	border-left: 3px solid #f7afa4;
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(5px);
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1.5px;
	color: #fff;
}


/* ==========================================
   HEADING
========================================== */

.slider-content h1 {
	margin: 0 0 20px;
	font-size: 50px;
	line-height: 1.12;
	font-weight: 800;
	color: #fff;
}

.slider-content h1 span {
	color: #ffb3a9;
	text-shadow: 1px 1px 1px #000;
	text-transform: uppercase;
}


/* ==========================================
   DESCRIPTION
========================================== */

.slider-content p {
	max-width: 620px;
	margin: 0 0 30px;
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255,255,255,.9);
}


/* ==========================================
   BUTTONS
========================================== */

.slider-buttons {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.slider-btn,
.slider-btn-outline {
	min-width: 155px;
	height: 52px;
	padding: 0 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	transition: all .3s ease;
}

.slider-btn {
	background: #ffb3a9;
	color: #fff;
	border: 2px solid #ffb3a9;
}

.slider-btn:hover {
	background: #fff;
	border-color: #fff;
	color: #222;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.slider-btn i {
	transition: transform .3s ease;
}

.slider-btn:hover i {
	transform: translateX(4px);
}

.slider-btn-outline {
	color: #fff;
	border: 2px solid rgba(255,255,255,.8);
	background: transparent;
}

.slider-btn-outline:hover {
	background: #fff;
	color: #222;
	border-color: #fff;
	transform: translateY(-3px);
}


/* ==========================================
   ARROWS
========================================== */

.slider-control {
	width: 70px;
	opacity: 1;
	z-index: 5;
}

.slider-arrow {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #fff;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.35);
	backdrop-filter: blur(5px);
	transition: all .3s ease;
}

.slider-control:hover .slider-arrow {
	background: #ffb3a9;
	border-color: #ffb3a9;
	transform: scale(1.08);
}


/* ==========================================
   INDICATORS
========================================== */

.hero-slider .carousel-indicators {
	z-index: 5;
	bottom: 25px;
	margin-bottom: 0;
}

.hero-slider .carousel-indicators button {
	width: 28px;
	height: 4px;
	margin: 0 4px;
	border: 0;
	border-radius: 10px;
	background: rgba(255,255,255,.5);
	transition: all .3s ease;
}

.hero-slider .carousel-indicators button.active {
	width: 50px;
	background: #ffb3a9;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

	.hero-slider .carousel-item {
		height: 570px;
	}

	.slider-content {
		max-width: 620px;
	}

	.slider-content h1 {
		font-size: 46px;
	}

	.slider-content p {
		font-size: 16px;
	}

	.slider-control {
		width: 55px;
	}
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

	.hero-slider .carousel-item {
		height: 620px;
	}

	.slider-overlay {
		background: linear-gradient(
                90deg,
                rgba(0,0,0,.78),
                rgba(0,0,0,.48)
            );
	}

	.slider-container {
		padding: 0 25px;
	}

	.slider-content {
		max-width: 100%;
	}

	.slider-tag {
		font-size: 10px;
		padding: 7px 12px;
		margin-bottom: 15px;
	}

	.slider-content h1 {
		font-size: 36px;
		line-height: 1.18;
		margin-bottom: 16px;
	}

	.slider-content p {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 24px;
	}

	.slider-buttons {
		gap: 10px;
	}

	.slider-btn,
    .slider-btn-outline {
		min-width: 135px;
		height: 48px;
		padding: 0 18px;
		font-size: 13px;
	}

	.slider-control {
		display: none;
	}

	.hero-slider .carousel-indicators {
		bottom: 20px;
	}
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

	.hero-slider .carousel-item {
		height: 580px;
	}

	.slider-container {
		padding: 0 20px;
	}

	.slider-content h1 {
		font-size: 30px;
	}

	.slider-content p {
		font-size: 13px;
	}

	.slider-buttons {
		width: 100%;
	}

	.slider-btn,
    .slider-btn-outline {
		flex: 1;
		min-width: 0;
	}
}





/* ========== ABOUT ========= */
.about-section {
	padding: 40px 0;
	border-bottom: 1px solid #ddd;
}

.about-img {
	border-radius: 12px;
	overflow: hidden;
}

.about-text p {
	color: #333;
	line-height: 1.6;
	text-align: justify;
}

.btn-custom {
	background-color: #000;
	color: #fff;
	border-radius: 6px;
	padding: 10px 20px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-custom:hover {
	background-color: #444;
	color: #fff;
}

a.btn.btn-custom.brochure {
	margin-top: 20px;
	border-radius: 80px;
	color: #fff;
	padding: 10px 20px;
	background: var(--primary-color);
	border: 2px solid #ddd;
}

.heading {
	margin-bottom: 15px;
	color: var(--primary-color);
	display: block;
	text-transform: uppercase;
	font-weight: 500;
	font-family: "Montserrat", sans-serif;
}

/* ============== AMENITIES =========== */
/* ========================================= AMENITIES SECTION ========================================= */.amenities-section {
	position: relative;
	padding: 75px 0 80px;
	background: #92553f;
	overflow: hidden;
} /* ========================================= HEADING ========================================= */.amenities-heading {
	margin-bottom: 50px;
	color: #fff;
}

.amenities-heading span {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	color: #e8c8bb;
}

.amenities-heading h2 {
	margin: 0 0 12px;
	font-size: 38px;
	line-height: 1.2;
	font-weight: 600;
	color: #fff;
}

.amenities-heading p {
	max-width: 600px;
	margin: 0 auto;
	font-size: 15px;
	line-height: 1.7;
	color: #ead2c9;
} /* ========================================= GRID ========================================= */.amenities-grid {
	border-top: 1px solid rgba(255,255,255,.15);
	border-left: 1px solid rgba(255,255,255,.15);
} /* ========================================= ITEM ========================================= */.amenity-item {
	min-height: 180px;
	padding: 25px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-right: 1px solid rgba(255,255,255,.15);
	border-bottom: 1px solid rgba(255,255,255,.15);
	transition: all .35s ease;
	position: relative;
} /* Hover */.amenity-item:hover {
	background: rgba(255,255,255,.08);
	transform: translateY(-4px);
} /* ========================================= ICON ========================================= */.amenity-icon {
	width: 72px;
	height: 72px;
	margin-bottom: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 50%;
	color: #efd5ca;
	font-size: 34px;
	transition: all .35s ease;
}

.amenity-item:hover .amenity-icon {
	background: rgba(255,255,255,.1);
	border-color: #fff;
	color: #fff;
	transform: translateY(-5px) scale(1.05);
} /* ========================================= TEXT ========================================= */.amenity-item h4 {
	margin: 0;
	color: #fff;
	font-size: 14px;
	line-height: 1.55;
	font-weight: 400;
} /* ========================================= LARGE DESKTOP ========================================= */@media (min-width: 1200px) {
	.amenity-item {
		min-height: 190px;
	}
} /* ========================================= TABLET ========================================= */@media (max-width: 991.98px) {
	.amenities-section {
		padding: 60px 0;
	}

	.amenities-heading {
		margin-bottom: 35px;
	}

	.amenities-heading h2 {
		font-size: 32px;
	}

	.amenity-item {
		min-height: 165px;
	}
} /* ========================================= MOBILE ========================================= */@media (max-width: 575.98px) {
	.amenities-section {
		padding: 50px 15px 55px;
	}

	.amenities-heading {
		margin-bottom: 30px;
	}

	.amenities-heading span {
		font-size: 10px;
		letter-spacing: 2px;
	}

	.amenities-heading h2 {
		font-size: 27px;
	}

	.amenities-heading p {
		font-size: 13px;
	}

	.amenity-item {
		min-height: 155px;
		padding: 20px 5px;
	}

	.amenity-icon {
		width: 58px;
		height: 58px;
		margin-bottom: 10px;
		font-size: 27px;
	}

	.amenity-item h4 {
		font-size: 12px;
		line-height: 1.45;
	}
} /* ========================================= VERY SMALL MOBILE ========================================= */@media (max-width: 380px) {
	.amenities-section {
		padding-left: 10px;
		padding-right: 10px;
	}

	.amenity-item {
		min-height: 145px;
	}

	.amenity-icon {
		width: 52px;
		height: 52px;
		font-size: 24px;
	}

	.amenity-item h4 {
		font-size: 11px;
	}
}

.amenity-icon img {
	height: 50px;
}

.view_more {
	margin: auto;
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

a.view_more_btn {
	border-radius: 80px;
	color: var(--primary-color);
	display: inline-block;
	padding: 10px 30px;
	text-decoration: none;
	font-weight: 400;
	text-transform: uppercase;
	background: #fff;
	cursor: pointer;
	border: 2px solid #ddd;
}

/* ============= MASTER PLAN =========== */
.master_plans {
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
}

.modal-img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.thumb-img {
	cursor: pointer;
	transition: 0.3s;
}

/* ============= LOCATION ========= */
:root {
	--cream: #fdf5e9;
	--brown: #965039;
	--dark-brown: #582b29;
	--border: #e7cbb6;
	--text: #914b38;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--cream);
	font-family: 'Montserrat', sans-serif;
	color: var(--text);
}

.location-section {
	padding: 55px 0;
	background: var(--cream);
}

.location-wrapper {
	/* max-width: 900px;
	margin: auto; */
}

        /* Accordion */

.location-accordion {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.location-item {
	border: 1px solid var(--border);
	border-radius: 25px;
	overflow: hidden;
	background: transparent;
}

.location-item.active {
            /* background: var(--brown);
            border-color: var(--brown); */
}

.location-button {
	width: 100%;
	min-height: 55px;
	padding: 8px 17px 8px 20px;
	border: 0;
	background: transparent;
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	font-weight: 400;
	text-align: left;
	transition: all 0.3s ease;
}

.location-item.active .location-button {
	color: #fff;
	background: var(--primary-color);
}

.location-button:hover {
	color: var(--brown);
}

.location-item.active .location-button:hover {
	color: #fff;
}

.location-icon {
	width: 30px;
	height: 30px;
	min-width: 30px;
	border: 1px solid var(--brown);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
	transition: 0.3s ease;
}

.location-item.active .location-icon {
	border-color: #fff;
	color: #fff;
	transform: rotate(180deg);
}

.location-content {
	padding: 0 20px 16px;
}

        /* Roads List */

.roads-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.roads-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 3px 0;
	font-size: 14px;
	color: var(--dark-brown);
}

.roads-list .place {
	display: flex;
	gap: 8px;
}

.roads-list .number {
	min-width: 20px;
}

.roads-list .time {
	white-space: nowrap;
}

        /* Map */

.map-wrapper {
	position: relative;
	width: 100%;
	height: 495px;
	border-radius: 24px;
	overflow: hidden;
}

.map-image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

        /* Optional overlay for smoother appearance */
.map-wrapper::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: 24px;
}

        /* Responsive */

@media (max-width: 991px) {

	.location-section {
		padding: 40px 20px;
	}

	.location-wrapper {
		max-width: 700px;
	}

	.map-wrapper {
		height: 450px;
	}
}

@media (max-width: 767px) {

	.location-section {
		padding: 30px 15px;
	}

	.location-accordion {
		gap: 8px;
	}

	.location-button {
		min-height: 52px;
		font-size: 16px;
		padding-left: 17px;
	}

	.location-icon {
		width: 28px;
		height: 28px;
		min-width: 28px;
		font-size: 16px;
	}

	.roads-list li {
		font-size: 12px;
	}

	.map-wrapper {
		margin-top: 25px;
		height: 380px;
		border-radius: 20px;
	}
}

@media (max-width: 480px) {

	.map-wrapper {
		height: 330px;
	}

	.location-button {
		font-size: 15px;
	}

	.roads-list li {
		font-size: 11px;
	}
}

/*======== Design Meets ========= */
.section-wrapper {
	padding: 60px 20px;
	text-align: center;
	background: #fff;
}

.title {
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: 600;
}

.title span {
	color: #a07c3b;
}

.subtitle {
	font-size: 20px;
	margin-top: 10px;
	color: #333;
}

.feature-box {
	padding: 25px 15px;
	height: 100%;
}

.feature-icon {
	font-size: 40px;
	color: #a07c3b;
	margin-bottom: 10px;
}

.feature-text {
	font-size: 16px;
	margin: 30px 0;
}

.divider {
	border-left: 1px solid #ddd;
}

.bottom-text {
	margin-top: 40px;
	font-style: italic;
	color: #a07c3b;
	font-size: 18px;
}

.feature-box img {
	height: 70px;
	border: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
	.title {
		font-size: 32px;
	}

	.subtitle {
		font-size: 16px;
	}
}

/* ========== GALLERY ========== */

/* .gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
} */

.modal-img {
	max-height: 80vh;
	object-fit: contain;
}

.gallery-section {
	padding: 50px 0;
}

.gallery-img {
	cursor: pointer;
	border-radius: 8px;
	transition: 0.3s;
	height: 350px;
	object-fit: cover;
	margin-top: 20px;
	position: relative;
	z-index: -2;
}

.img-title {
	text-align: center;
	display: block;
	margin-top: -35px;
	color: #fff;
}

.modal-img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

/* ====== INNER PAGE ====== */
.inner-banner {
	background: url('../image/slider/slider-1.jpg') no-repeat center center/cover;
	position: relative;
	padding: 100px 0;
	color: #fff;
}

.inner-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
 /* overlay */
	;
}

.inner-banner .content {
	position: relative;
	z-index: 2;
}

.breadcrumb-item a {
	color: #fff;
	text-decoration: none;
}

.breadcrumb-item.active {
	color: #ddd;
}

@media (max-width: 768px) {
	.inner-banner {
		padding: 60px 0;
		text-align: center;
	}

	.slider-content {
		position: static;
		right: 60px;
		top: 10px;
		background: #ffffff8f;
		padding: 10px;
		color: #000;
		width: 100%;
		border: 3px solid #ddd;
		border-bottom: 1px solid #000;
	}

	.banner-section {
		min-height: auto;
	}
}

/* ========= FLOOR PLAN ========= */
.floor-plan-section {
	padding: 60px 0;
	overflow: hidden;
}

.floor-slider {
	position: relative;
}

.floor-track {
	display: flex;
	gap: 58px;
	transition: transform 0.5s ease;
}

.floor-item {
	flex: 0 0 calc(33.333% - 39px);
	min-width: 0;
	text-align: center;
}

.floor-image-box {
	position: relative;
	width: 100%;
	height: 273px;
	overflow: hidden;
	border-radius: 5px;
	background: #ddd;
}

.floor-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

        /* Slight blur/overlay similar to screenshot */
.floor-image-box::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(90, 55, 45, 0.18);
	pointer-events: none;
}

.view-floor-btn {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #7b201b;
	color: #fff;
	border: 0;
	border-radius: 30px;
	padding: 14px 22px;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.view-floor-btn:hover {
	background: #54130f;
	color: #fff;
	transform: translate(-50%, -50%) scale(1.05);
}

.floor-title {
	margin-top: 16px;
	font-size: 12px;
	color: #24364b;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.2px;
}

        /* Navigation */
.floor-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
	height: 54px;
	border: none;
	border-radius: 50%;
	background: #383838;
	color: #fff;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s ease;
}

.floor-nav:hover {
	background: #7b201b;
}

.floor-nav.prev {
	left: -28px;
}

.floor-nav.next {
	right: -28px;
}

.floor-nav span {
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	display: block;
}

.floor-nav.prev span {
	transform: rotate(-135deg);
	margin-left: 5px;
}

.floor-nav.next span {
	transform: rotate(45deg);
	margin-right: 5px;
}

        /* Tablet */
@media (max-width: 991.98px) {

	.floor-track {
		gap: 25px;
	}

	.floor-item {
		flex: 0 0 calc(50% - 12.5px);
	}

	.floor-image-box {
		height: 260px;
	}

	.floor-nav.prev {
		left: -12px;
	}

	.floor-nav.next {
		right: -12px;
	}
}

        /* Mobile */
@media (max-width: 575.98px) {

	.floor-plan-section {
		padding: 15px 10px 25px;
	}

	.floor-track {
		gap: 15px;
	}

	.floor-item {
		flex: 0 0 100%;
	}

	.floor-image-box {
		height: 260px;
	}

	.view-floor-btn {
		padding: 12px 20px;
		font-size: 11px;
	}

	.floor-title {
		margin-top: 13px;
		font-size: 11px;
	}

	.floor-nav {
		width: 44px;
		height: 44px;
	}

	.floor-nav.prev {
		left: -8px;
	}

	.floor-nav.next {
		right: -8px;
	}
}

/* ========= FOOTER ========== */
.disclaimer-section {
	background: url('../image/footer-bg.jpg') no-repeat center center/cover;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 40px 20px;
	color: #fff;
}

.disclaimer-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 85%);
	z-index: 1;
}

a.footers_call {
	color: #fff;
	padding: 5px 10px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	margin-bottom: 5px;
	display: inline-block;
	text-decoration: none;
}

.project_barcode {
	margin-bottom: 20px;
	width: 100px;
}

.disclaimer-content {
	position: relative;
	z-index: 2;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	border-radius: 12px;
	padding: 30px;
	text-align: center;
}

.disclaimer-content h2 {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 15px;
}

.disclaimer-content p {
	font-size: 14px;
	line-height: 1.6;
}

.footer_call {
	position: fixed;
	width: 48px;
	height: 48px;
	bottom: 100px;
	right: 15px;
	background-color: var(--primary-color);
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	z-index: 1055;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* Floating Button */
.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 25px;
	right: 25px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
	animation: pulse 2s infinite;
}

/* WhatsApp Icon */
.whatsapp-icon {
	width: 35px;
	height: 35px;
}

/* Pulse Animation */
@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

/* Hover Effect */
.whatsapp-float:hover {
	transform: scale(1.05);
}

@media (max-width: 767px) {
 

	.container-fluid.container_pading {
		padding: 0 20px;
	}

	a.btn.btn-custom.brochure {
		width: 100%;
		font-weight: 500;
	}

	.form-section input {
		margin-bottom: 10px;
	}

	.project_map {
		height: auto;
		margin-top: 20px;
	}

	.form-section {
		margin: 0;
		width: 100%;
		border-radius: 0;
	}

	.info-box h4 {
		font-size: 15px;
	}

	.about-text h2 {
		font-size: 20px;
	}

	.about-section {
		padding: 30px 0;
	}

	.floorplan-text {
		width: 80%;
	}

	.footer_call {
		bottom: 30px;
		left: 15px;
	}

	.banner {
		padding: 20px 0;
		text-align: center;
		height: 50vh;
	}

	.un_lists li {
		justify-content: center;
		align-items: center;
		width: auto;
	}

	.disclaimer-section {
		padding: 20px 10px;
	}

	.disclaimer-content {
		padding: 10px;
	}
}