@charset "UTF-8";

/* CSS Document */
:root {
	--dark-blue: #1D417F;
	--light-blue: #0C8CC8;
	--normal: 400;
	--medium: 500;
	--semi-bold: 600;
	--bold: 700;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
}

h2 {
	font-size: 24px;
	color: var(--dark-blue);
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 120%;
}

.main-wrapper {
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}

.content-holder {
	width: 94%;
	max-width: 1200px;
	margin: 0 auto;
}

.header-wrapper {
	width: 100%;
	background: #fff;
	position: fixed;
	z-index: 10;
	top: 0;
}

.header-holder {
	background: #ffffff;
	padding: 15px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.nav-holder {
	width: 100%;
}

.logo-holder {
	width: 15%;
	min-width: 150px;
}

.logo-holder img {
	width: 100%;
}

.nav-holder ul {
	display: flex;
	justify-content: flex-end;
	column-gap: 20px;
	align-items: center;
}

.nav-holder ul li {
	border-right: 1px solid #000;
	padding-right: 20px;
}

.nav-holder ul li a {
	display: block;
	color: #000;
	text-decoration: none;
}

.no-border {
	border: none !important;
}

.cta-button {
	padding-right: 0 !important;
}

.cta-button a {
	background: var(--dark-blue);
	color: #fff !important;
	display: block;
	padding: 10px 20px;
	border-radius: 100px;
	text-align: center;
	text-decoration: none;
}

.cta-button a img {
	padding-left: 10px;
}

.hamburger {
	display: none;
	width: 30px;
	height: 22px;
	position: relative;
	cursor: pointer;
	transition: 0.3s ease;
}

.hamburger span {
	position: absolute;
	width: 100%;
	height: 3px;
	background: #333;
	transition: 0.4s ease;
	left: 0;
}

.hamburger span:nth-child(1) {
	top: 0;
}

.hamburger span:nth-child(2) {
	top: 9px;
}

.hamburger span:nth-child(3) {
	top: 18px;
}

/* HAMBURGER ANIMATION (turns into X) */
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 9px;
}

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

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 9px;
}

.banner-wrapper {
	background: url("images/banner-img.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	background-position-y: -170px;
	margin-top: 75px;
	padding: 40% 0 100px 0;
}

.banner-holder {
	text-align: center;
	color: #fff;
	position: relative;
}



.banner-logo-holder img {width: 25%; margin-bottom: 10px;}
.banner-line {padding-top: 10px;}
.banner-location {
  background: url("images/icon-location.svg") no-repeat;
  background-position-y: 2px;
  padding-left: 22px;
	font-weight: 600;
}

.banner-holder h1 {
	font-size: 38px;
	font-weight: 700;
}

.banner-holder h2 {
	color: #fff;
	font-size: 56px;
	font-weight: 700;
	line-height: 50px;
}


.contact-fields .txt-field {
	padding: 10px;
	font-size: 16px;
	border-radius: 5px;
	border: 1px solid #000;
}

.contact-fields button {
	background: var(--dark-blue);
	font-size: 16px;
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 10px 20px;
}

.contact-fields .form-otp {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	align-items: stretch;
}

.contact-fields .form-otp .mob-txt-field {
	width: 50% !important;
	flex: 1;
}

.banner-form-wrapper {
	position: relative;
	padding: 80px 0;
	background: var(--dark-blue);
}

.banner-form-holder {
	position: absolute;
	top: -50%;
	background: #fff;
	left: 50%;
	transform: translateX(-50%);
	padding: 30px;
	border-radius: 20px;
}

.banner-form .contact-form .contact-copy h2 {
	font-size: 28px;
	font-weight: 600;
	line-height: 32px;
	margin-bottom: 10px;
}

.banner-form .contact-form .contact-fields {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0;
}

.field-holder {
	display: flex;
	flex-direction: column;
	flex: 1 1 calc(33.33% - 20px);
}

.banner-form .contact-form .contact-fields .txt-field,
.banner-form .contact-form .contact-fields .form-otp {
	width: 100%;
}

.features-wrapper {
	background: var(--dark-blue);
	padding: 80px 0;
	padding-bottom: 30px;
}

.features-holder {
	color: #fff;
}

.features-holder h2 {
	color: #fff;
}

.feature-card {
	width: 100%;
}

.feature-title {
	font-weight: 700;
	margin-top: 10px;
}


.video-wrapper {
	position: relative;
	width: 100%;
	/* adjust */
	max-width: 100%;
	cursor: pointer;
	overflow: hidden;
}

/* Thumbnail image */
.thumbnail {
	width: 100%;
	height: 600px;
	object-fit: cover;
	display: block;
}

/* Black tint overlay */
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	pointer-events: none;
	transition: 0.3s ease;
}

/* Play button IMAGE */
.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	/* adjust size */
	height: 80px;
	z-index: 2;
}

.play-btn img {
	width: 100%;
	height: 100%;
}

.video-wrapper video {
	display: none;
	width: 100%;
}

.amenities-wrapper,
.gallery-wrapper {
	padding: 50px 0;
}

.amenities-holder h3,
.gallery-wrapper h3,
.masterplan-wrapper h3,
.location-wrapper h3,
.faqs-wrapper h3 {
	font-size: 16px;
	padding: 5px;
	border: 1px solid var(--dark-blue);
	border-radius: 8px;
	font-weight: 400;
	width: fit-content;
	margin-bottom: 10px;
	color: var(--dark-blue);
}

.amenities-holder h2,
.gallery-wrapper h2,
.masterplan-wrapper h2,
.location-wrapper h2,
.faqs-wrapper h2 {
	color: #000;
}

.amenities-card {
	position: relative;
}

.amenities-image {
	display: block;
	width: 100%;
}

.amenities-image img {
	width: 100%;
	height: 470px;
	object-fit: cover;
}

.amenities-copy {
	position: absolute;
	z-index: 1;
	bottom: 0;
	padding: 60px 60% 60px 30px;
	padding-top: 60px;
	color: #fff;
	background: #000000;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	width: 100%;
	padding-right: 60%;
}

.amenities-title1 {
	font-size: 20px;
	font-weight: var(--medium);
}

.amenities-title2 {
	font-size: 24px;
	font-weight: var(--medium);
	margin: 10px 0;
	line-height: 100%;
}

.amenities-arrows {
	position: absolute;
	bottom: 40px;
	left: 30px;
	z-index: 2;
	display: flex;
	gap: 10px;
}

.amenities-arrows img {
	width: 25px;
	height: 25px;
}

.gallery-card img {
	width: 100%;
}


/* Swiper Code */
.mySwiper2 .swiper-arrows {
	position: relative;
	top: 30px;
	display: flex;
	justify-content: center;
}

.mySwiper3 .swiper-arrows {
	position: relative;
	top: 30px;
	display: flex;
	justify-content: right;
}


.gallery-images .swiper-slide img {
	width: 100%;
	border-radius: 8px;
}

.amenities-holder .swiper,
.gallery-holder .swiper {
	padding-top: 10px;
}

.gallery-arrows {
	display: flex;
	justify-content: center;
	gap: 30px;
	padding: 20px 0;
}

.masterplan-wrapper {
	background: #FFF7E0;
	padding-bottom: 50px;
}

.masterplan-holder {
	display: flex;
	align-items: center;
	gap: 30px;
}

.masterplan-img img {
	width: 100%;
}

.masterplan-content p {
	padding-top: 20px;
}

.cta-holder {
	margin: 20px 0;
	display: flex;
	gap: 20px;
}

.masterplan-content .cta-holder .cta-but {
	background: var(--dark-blue);
	color: #fff;
	padding: 10px 20px;
	display: flex;
	gap: 10px;
	border-radius: 30px;
	cursor: pointer;
}

.balcony-wrapper {
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("images/balcony-img.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 150px 0;
}



.balcony-holder {}

.balcony-content {
	width: 50%;
	color: #fff;
}

.balcony-content h2 {
	color: #fff;
	line-height: 30px;
}

.balcony-content p {
	padding: 10px 0;
}

.location-wrapper {
	padding: 50px 0;
}

.location-holder {
	display: flex;
	align-items: center;
	gap: 30px;
}

.location-holder p {
	margin: 20px 0;
}

.location-holder ul p {
	margin: 0;
}

.location-holder ul li {
	background: url("images/location-bullet.svg") no-repeat;
	background-position: 0px 6px;
	padding-left: 30px;
	margin-bottom: 20px;
}

.location-holder .location-title {
	font-weight: var(--semi-bold);
}

.pan-container {
	width: 100%;
	/* responsive */
	aspect-ratio: 1/1;
	overflow: hidden;
	touch-action: none;
	/* allow touch-drag */
	cursor: grab;
	position: relative;
}

/* The image to pan */
.pan-image {
	position: absolute;
	top: 0;
	left: 0;
	user-select: none;
	-webkit-user-drag: none;
	min-height: 30%;
	height: auto;
	cursor: inherit;
}

/* Overlay text */
.overlay-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	background: rgba(0, 0, 0, 0.45);
	padding: 10px 20px;
	border-radius: 8px;
	pointer-events: none;
	/* let drag events pass through */
	transition: opacity 0.4s ease;
}

.overlay-text.hidden {
	opacity: 0;
}

.about-wrapper {
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("images/about-bg.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding-top: 300px;
	padding-bottom: 50px;
}

.about-holder,
.about-holder h2 {
	color: #fff;
}

.about-holder p {
	margin: 20px 0;
}

.pageform-wrapper {
	background: var(--dark-blue);
	padding: 50px 0;
}

.pageform-holder {
	background: #fff;
	padding: 40px;
	border-radius: 30px;
}

.pageform-holder .contact-form {
	display: flex;
	gap: 30px;
	align-items: center;
}

.pageform-holder .contact-form .formbox {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.pageform-holder .contact-form .formtag {
	flex: 1;
	display: none;
}

.pageform-holder .cta-button {
	display: inline-block;
	margin-top: 10px;
}

.pageform-holder h2 {
	font-size: 44px;
	font-weight: var(--semi-bold);
	color: #000;
}

.pageform-holder .contact-fields {
	border-left: 1px solid #000;
	height: 100%;
	padding-left: 20px;
}

.faqs-wrapper {
	padding: 50px 0;
}

.faqs-holder p {
	margin: 20px 0;
}

.faq-item {
	background: #fff;
	margin-bottom: 10px;
	border-radius: 6px;
	border: 1px solid #ddd;
	overflow: hidden;
}

.faq-question {
	padding: 15px 20px;
	padding-right: 40px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	position: relative;
}

.faq-question:after {
	content: "+";
	font-size: 22px;
	font-weight: 400;
	position: absolute;
	right: 20px;
	top: 10px;
	transition: 0.3s;
}

.faq-item.active .faq-question:after {
	content: "-";
}

.faq-answer {
	background: #fafafa;
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	transition: max-height 0.35s ease;
}

.faq-answer p {
	padding: 15px 0;
	margin: 0;
}

.footer-wrapper {
	background: #252525;
	padding: 20px 0;
}

.footer-holder {
	color: #fff;
	font-size: 11px !important;
	text-align: center;
}


.lightbox-overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	padding: 20px;
}

/* Popup box */
.lightbox-box {
	background: #fff;
	width: 90%;
	max-width: 500px;
	padding: 25px;
	border-radius: 10px;
	position: relative;
	animation: fadeIn 0.3s ease;
}

/* Close button */
.close-lightbox {
	position: absolute;
	right: 15px;
	top: 10px;
	font-size: 22px;
	color: #000;
	cursor: pointer;
}


.lightbox-box .contact-fields {
	height: 100%;
}


.lightbox-box .contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.lightbox-box .contact-form .formbox {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.lightbox-box .contact-form .contact-copy {
	gap: 0;
}





@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}


/* Modal Content */
.modal-content {
	background-color: #fefefe;
	margin: auto;

}

.modal-content h1 {
	font-size: 32px;
	color: #1D417F;
	text-transform: math-auto;
	font-weight: 600;
	margin: 0
}

.modal-content p {
	font-size: 16px;
	color: #1D417F;
	/* text-transform: uppercase; */
	font-weight: 400;
	margin: 0
}

.modal-content input {
	font-size: 16px;
	color: #000;
	font-weight: 400;
	border: 1px solid #000;
	border-radius: 10px;
	padding: 10px;
	margin: 10px 0;
	width: 100%;
	box-sizing: border-box
}

.modal-content .form-btn {
	display: flex;
	gap: 10px
}

.modal-content .submit {
	font-size: 16px;
	background: #1D417F;
	color: #fff;
	text-align: center;
	/* text-transform: uppercase ; */
	font-weight: 400;
	border-radius: 100px;
	padding: 10px 20px;
	margin: 10px 0;
	width: 100%;
	cursor: pointer
}

.modal-content .close-lightbox {
	font-size: 16px;
	background: #fff;
	text-decoration: none;
	color: #1D417F;
	text-align: center;
	/* text-transform: uppercase ; */
	font-weight: 400;
	border: 1px solid #000;
	border-radius: 100px;
	padding: 10px 20px;
	margin: 10px 0;
	width: 100%;
	cursor: pointer;
	display: block;
}


.error {
    color: red;
    font-size: 13px;
    margin-top: 4px;
}




.video-sec .video-container {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 aspect ratio (9 / 16 * 100) */
      height: 0;
      overflow: hidden; /* Hides any overflow from the iframe */
	border: 1px solid #DEDEDE;
    }

  .video-sec .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }





/* ----- Mobile Responsive ----- */
@media (max-width: 768px) {

	.hamburger {
		display: block;
	}

	.nav-holder.active {
		display: flex;
		height: auto;
	}

	.nav-holder {
		position: absolute;
		top: 65px;
		left: 0;
		width: 100%;
		background: #fff;
		flex-direction: column;
		padding: 15px 20px;
		gap: 15px;
		display: none;
		border-bottom: 1px solid #ddd;
		height: 0;
		overflow: hidden;
		transition: height 0.4s ease;
	}

	.nav-holder ul {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	.nav-holder ul li {
		width: 100%;
		border: none;
		border-bottom: 1px solid #000;
		padding: 10px 0;

	}

	.masterplan-holder {
		flex-direction: column;
	}

	.location-holder {
		flex-direction: column;
	}

	.pageform-holder .contact-form {
		flex-direction: column;
	}

	.cta-holder {
		flex-direction: column;
	}

	.banner-wrapper {
		background-position: bottom;
		margin-top: 75px;
		padding: 145% 0 100px 0;
	}
	
	
	.banner-logo-holder img {width: 60%;}
	.banner-location {font-size: 11px; padding-top: 5px}

	.banner-holder h1 {
		font-size: 30px;
	}

	.banner-holder h2 {
		font-size: 40px;
	}

	.banner-form-holder {
		padding: 20px;
	}
	
	.banner-form .contact-form .contact-fields {
		flex-direction: column;
	}

	.banner-form .contact-form .contact-fields .txt-field,
	.banner-form .contact-form .contact-fields .form-otp {
		width: 100%;
	}

	.features-wrapper {
		padding-top: 320px;
	}

	.thumbnail {
		aspect-ratio: 1/1;
		height: auto;
	}

	.play-btn {
		width: 50px;
		height: 50px;
	}

	.amenities-copy {
		padding-right: 30px;
	}

	.gallery-wrapper {
		padding-top: 0;
	}

	.masterplan-content .cta-holder .cta-but {
		justify-content: center;
		font-size: 16px;

	}

	.balcony-content {
		width: 70%
	}

	.about-wrapper {
		padding: 200px 0;
	}

	.pageform-holder {
		padding: 20px;
	}

	.pageform-holder h2 {
		font-size: 36px;
	}

	.pageform-holder .contact-fields {
		border: none;
		padding-left: 0;
		width: 100%;
	}

	.cta-button a {
		font-size: 18px;
	}
	.balcony-wrapper, .about-wrapper {
		background-attachment: inherit;
	}
}

.banner-right-txt {
	position: absolute;
	top: 100px;
	width: 96%;
	text-align: center;
	right: 0;
	color: #fff;
	left: 50%;
	transform: translateX(-50%);
}
.banner-right-txt p {
	border: 1px solid #aaa;
	border-radius: 10px;
	padding: 10px 20px;
	display: inline-block;
}
@media (max-width: 768px) { 
	.banner-right-txt {
		width: 96%;
		left: 50%;
		transform: translateX(-50%);
		top: 100px;
		text-align: center;
		z-index: 2;
		color: #fff;
	}
}




