/* HEADER CSS HERE */
header {
    padding: 15px 0px;
    position: fixed;
    z-index: 999;
    background: #fff;
    width: 100%;
    top: 0;
    left: 0;
}
.nav-icon {
    display: none;
}
.menu {
    height: 100%;
}
.menu ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}
.menu ul li {
    margin: 0 0 0 25px;
}
.menu ul li a {
    color:  #000;
    font-size: 15px;
    text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	display: block;
	text-align: center;
	text-transform: uppercase;
}
.menu ul li a.OfferDiscount {
    background: linear-gradient(90deg, #f9c74f, #f9844a);
    border-radius: 6px;
    padding: 6px 14px;
    color: #000;
    box-shadow: 0 0 16px rgba(249, 199, 79, 0.8);
    animation: offerBlink 1s infinite;
    border: 1px solid rgba(0, 0, 0, 0.15);
}
@keyframes offerBlink {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.03); }
    100% { opacity: 1; transform: scale(1); }
}
.menu ul li.mobilenumber {
    margin: 0 0 0 40px;
}
.menu ul li.mobilenumber a {
    font-size: 20px;
    color: #135055;
    display: flex;
    align-items: center;
}
.menu ul li.mobilenumber a .fa {
    margin: 0 5px 0 0;
}
/* HEADER CSS HERE ENDS */
.banner .container-fluid {
    padding: 0;
}
.banner-left {
    padding-left: 10px;
    padding-right: 10px;
    height: 100%;
    width: 100%;
}
.banner-cnt {
    padding: 15px;
    background-color: #000;
    border: 1px solid  #135055;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.banner-cnt-logo {
    width: 100%;
}
.banner-cnt-bottom {
    width: 100%;
}
.project-configuration {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.project-location {
    color: #fff;
    font-size: 18px;
}
.starting-price {
    background-color:  #135055;
    color: #fff;
    padding: 5px 10px;
    width: auto;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0;
}
.other-info {
    color: #fff;
    font-size: 22px;
}
.project-status {
    color: #fff;
    font-size: 16px;
}
section {
    padding-bottom: 40px;
    padding-top: 40px;
}
.banner {
    background-color: #000;
    padding-top: 90px;
    padding-bottom: 0;
}
.common-title h2 {
    color:  #135055;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-size: 32px;
    text-transform: uppercase;
}
.common-title p {
    font-size: 16px;
    text-align: justify;
}
.btn {
    color: #fff;
    background-color:  #135055;
    font-size: 18px;
    padding: 7px 30px;
    font-weight: 600;
    border: 0;
}
.priceTable {
    background-color:  #135055;
    padding: 40px 0;
}
.priceTable .common-title {
    text-align: center;
}
.priceTable .common-title h2 {
    color: #fff;
}
.price-item {
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
}
.price-config {
    background-color: #000;
    padding: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-bottom: 5px;
}
.price-config h3 {
    margin: 0;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}
.price-item p {
    color: #000;
    margin-bottom: 10px;
    font-size: 16px;
}
.price-item h4 {
    color: #000;
    margin: 0;
    font-size: 22px;
}
.amenities-item-img img {
    max-width: 100%;
}
.amenities-item p {
    margin: 0;
    text-align: center;
    background-color:  #135055;
    color: #fff;
    font-size: 18px;
    padding: 10px;
}
.amenities-item {
    margin-bottom: 30px;
    cursor: pointer;
}
.gallery-item {
    border: 1px solid #e8e8e8;
    padding: 4px;
    margin-bottom: 30px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
}
.gallery-item img {
    max-width: 100%;
    display: block;
    width: 100%;
}
.gallery-item .gallery-item-link {
    display: block;
    position: relative;
}
.gallery-item .gallery-item-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.gallery-item .gallery-view-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #135055;
    color: #fff;
    padding: 8px 22px;
    border-radius: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-item-link::after {
    opacity: 1;
}
.gallery-item:hover .gallery-view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}
.floorPlan {
    background-color:  #135055;
    padding-bottom: 10px;
}
.gallery {
    padding-bottom: 10px;
}
.amenities {
    padding-bottom: 10px;
}
.floorPlan .common-title h2 {
    color: #fff;
}
.highlight {
    background-color:  #135055;
    background-repeat: repeat;
    background-attachment: scroll;
    background-size: auto;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
}
.hightlight-feature ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.hightlight-feature ul li {
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 34px;
}
.hightlight-feature ul li:last-child {
    margin: 0;
}
.hightlight-feature .common-title h2 {
    color: #fff;
}
.hightlight-feature ul li::before {
    content: "\f00c";
    font-family: fontawesome;
    position: absolute;
    left: 0;
    top: 2px;
    color: #135055;
    background: #fff;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.hightlight-left img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.hightlight-feature .common-title p {
    color: #e7f1f2;
    font-size: 16px;
    margin: 0 0 12px 0;
}
.locationadvantecnt ul {
    padding: 0;
    margin: 0;
}
.locationadvantecnt ul li {
    font-size: 18px;
    margin: 0 0 10px 0px;
    list-style: none;
    position: relative;
    padding-left: 34px;
}
.locationadvantecnt ul li::before {
    content: "\f00c";
    font-family: fontawesome;
    position: absolute;
    left: 0;
    top: 2px;
    color: #135055;
    background: #e7f1f2;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
}
.locationadvantecnt ul li:last-child {
    margin: 0;
}
.locationadvantecnt p {
    font-size: 16px;
    margin: 0 0 15px 0;
    color: #444;
}
.locationadvantebanner {
    background-color: #fff;
    box-shadow: 0px 0px 10px #0000006b;
    padding: 40px;
    margin-top: 40px;
}
.modal-content {
    border-radius: 14px;
    overflow: hidden;
    border: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.modal-header {
    background: #135055;
    color: #fff;
    border-bottom: 0;
}
.modal-header .close {
    color: #fff;
    opacity: 1;
    font-size: 26px;
    line-height: 1;
    text-shadow: none;
}
.modal-body {
    background: #f7f7f7;
}
.modal-body .form-control {
    border-radius: 8px;
    border: 1px solid #d6d6d6;
}
.modal-body .btn-warning {
    background: linear-gradient(90deg, #f9c74f, #f9844a);
    border: 0;
    color: #000;
    font-weight: 700;
}
.projectInfo {
    background-color:  #135055;
    padding: 50px 0;
    margin: 0;
}
.projectInfo .common-title h2 {
    color: #fff;
    margin-bottom: 40px;
}
.projectInfo .common-title p {
    color: #fff;
    font-size: 18px;
}
footer {
    background-color: #000;
    text-align: center;
    padding: 30px 0;
}
footer p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
}
.overview-video {
    position: relative;
}
.overview-video::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0,0,0,0.6);
}
.form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid  #135055;
    outline: none;
    color: #000;
    width: 100%;
    padding: 8px 0;
    height: auto;
    box-shadow: none;
}
.form-group {
    position: relative;
}
.form-control:focus {
    box-shadow: none;
}
#countryCode {
    position: absolute;
    width: 100px;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    height: 68%;
    border: 0;
}
#countryCode ~ .form-control {
    padding-left: 110px;
}
.calltoactionresponsive {
    display: none;
}
.chat {
    background-color:  #135055;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    position: fixed;
    left: 90px;
    bottom: 10px;
    padding: 15px;
    border: 0;
    cursor: pointer;
    z-index: 9;
}
.whatsapp_float {
    position: fixed;
    left: 20px;
    bottom: 10px;
    z-index: 9;
}
.form_inner1 .form-control {
    padding-left: 10px;
    padding-right: 10px;
}
.form_inner1 #countryCode {
    left: 0;
}
.banner-offer {
    position: absolute;
    left: 15px;
    top: 50%;
    background-color: #000;
    border: 8px solid #fff;
    transform: rotate(42deg) translateY(-50%);
    width: 180px;
    height: 180px;
    box-shadow: 0px 0px 5px #000;
}
.banner-offer-text {
    color: #fff;
    transform: rotate(-42deg);
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding: 0 0;
}
.banner-offer-text p {
    margin: 0;
    font-size: 12px;
}
.banner-offer-text h3 {
    text-align: center;
    line-height: 25px;
    margin-bottom: 10px;
    font-size: 30px;
}
.banner-offer::before {
    content: "";
    background-color:  #135055;
    width: 100px;
    height: 8px;
    position: absolute;
    bottom: -8px;
    right: -8px;
    z-index: 9;
}
.banner-offer::after {
    content: "";
    background-color:  #135055;
    width: 8px;
    height: 100px;
    position: absolute;
    bottom: -8px;
    right: -8px;
    z-index: 9;
}

/* RESPONSIVE CSS STARTS HERE */
@media (max-width: 1279px) {
    .menu ul li {
        margin: 0 0 0 12px;
    }
    .menu ul li.mobilenumber {
        margin: 0 0 0 20px;
    }
}
@media (max-width: 1199px) {
	.nav-icon {
		display: block;
		position: relative;
		z-index: 999;
		width: 30px;
		height: 45px;
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		-o-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;
		cursor: pointer;
		float: right;
		background-color: transparent;
		border: 0;
		color: #000;
		padding: 0;
		outline: 0;
	}
	.nav-icon span {
		display: block;
		position: absolute;
		height: 3px;
		width: 100%;
		background:  #135055;
		border-radius: 9px;
		opacity: 1;
		left: 0;
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
		-webkit-transition: 0.25s ease-in-out;
		-moz-transition: 0.25s ease-in-out;
		-o-transition: 0.25s ease-in-out;
		transition: 0.25s ease-in-out;
	}
	.nav-icon span:nth-child(1) {
		top: 10px;
	}
	.nav-icon span:nth-child(2) {
		top: 20px;
	}
	.nav-icon span:nth-child(3) {
		top: 30px;
	}
	.menu {
		width: 280px;
		position: fixed;
		left: 0;
		top: 0;
		background-color:  #135055;
		padding: 60px 0;
		margin: 0 0 0 -280px;
		-webkit-transition: margin 0.5s ease-in-out;
		transition: margin 0.5s ease-in-out;
		height: 100%;
		text-align: left;
		z-index: 999;
		overflow-y: auto;
	}
	.menu ul {
		justify-content: center;
		flex-flow: column;
		align-items: flex-start;
	}
	.menu ul li {
		margin: 5px 20px;
	}
	.menu ul li a {
		color: #000;
	}
	.menu.show-hide {
		margin: 0;
	}
    .project-location {
        font-size: 16px;
    }
    .project-configuration {
        font-size: 18px;
    }
    .starting-price {
        font-size: 18px;
    }
    .other-info {
        font-size: 18px;
    }
    .project-status {
        font-size: 15px;
    }
    .banner-cnt {
        padding: 5px;
    }
    .common-title h2 {
        font-size: 28px;
    }
    .btn {
        font-size: 16px;
    }
    .price-config h3 {
        font-size: 22px;
    }
    .price-item p {
        font-size: 15px;
    }
    .price-item h4 {
        font-size: 19px;
    }
    .amenities-item p {
        font-size: 16px;
        padding: 8px;
    }
    .hightlight-feature ul li {
        font-size: 16px;
    }
    .locationadvantecnt ul li {
        font-size: 16px;
        margin: 0 0 10px 0px;
    }
    .projectInfo .common-title p {
        font-size: 16px;
    }
    footer p {
        font-size: 15px;
    }
    section {
        padding-bottom: 30px;
        padding-top: 30px;
    }
    .projectInfo {
        padding: 30px 0;
    }
    .priceTable {
        padding: 30px 0;
    }
    .banner {
        padding-top: 81px;
        padding-bottom: 0;
    }
}

@media (max-width: 991px) {
    .banner-left {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    section {
        padding-bottom: 25px;
        padding-top: 25px;
    }
    .overview-cnt {
        margin-bottom: 25px;
    }
    .price-item {
        margin-bottom: 30px;
    }
    .hightlight-feature {
        margin-bottom: 25px;
    }
    .locationadvantecnt {
        margin-bottom: 25px;
    }
    .calltoactionresponsive {
        display: block;
        position: fixed;
        width: 100%;
        bottom: 0;
        left: 0;
        z-index: 9;
    }
    .calltoactionresponsive ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .calltoactionresponsive ul li {
        width: 50%;
        text-align: center;
    }
    .calltoactionresponsive ul li a, .calltoactionresponsive ul li span {
        padding: 10px;
        display: block;
        text-decoration: none;
        color: #fff;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 600;
        background-color:  #135055;
    }
    footer {
        padding: 30px 0 50px 0;
    }
    .callright-box {
        display: none;
    }
    .chat {
        display: none;
    }
    .whatsapp_float {
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 44px;
    }
    .banner-slider {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .banner-offer {
        display: none;
    }
    .common-title h2 {
        font-size: 24px;
    }
    .common-title p {
        font-size: 15px;
    }
    .btn {
        font-size: 14px;
    }
    .price-config h3 {
        font-size: 18px;
    }
    .price-item p {
        font-size: 14px;
    }
    .price-item h4 {
        font-size: 16px;
    }
    .amenities-item p {
        font-size: 14px;
    }
    .locationadvantecnt ul li {
        font-size: 15px;
    }
    .hightlight-feature ul li {
        font-size: 15px;
    }
    .projectInfo .common-title h2 {
        margin-bottom: 20px;
    }
    .projectInfo .common-title p {
        font-size: 15px;
    }
    footer p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .logo {
        max-width: 110px;
    }
    .common-title h2 {
        font-size: 20px;
    }
    .common-title p {
        font-size: 14px;
    }
    .btn {
        font-size: 13px;
    }
    .price-config h3 {
        font-size: 15px;
    }
    .price-item p {
        font-size: 14px;
    }
    .price-item h4 {
        font-size: 15px;
    }
    .amenities-item p {
        font-size: 14px;
    }
    .locationadvantecnt ul li {
        font-size: 14px;
    }
    .hightlight-feature ul li {
        font-size: 14px;
    }
    .projectInfo .common-title p {
        font-size: 14px;
    }
    footer p {
        font-size: 14px;
    }
    .amenities-item {
        max-width: 400px;
        margin: 0 auto 20px;
    }
    footer {
        padding: 20px 0;
    }

}.pol_con ul li svg {
    display: block;
    font-size: 2rem;
    margin: 0 auto;
    margin-bottom: 0.5rem;
    text-align: center;
}.pol_con ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    display: block;
    width: calc(25% - 0px);
    text-align: center;
    border-left: 1px solid #ccc;
}.pol_con ul {
    margin: 0;
    padding: 0;
    list-style: none;
}.pol_con ul li:first-child {
    border: none;
}.pol_con ul {
    margin: 0;
    padding: 0;
    list-style: none;}.our_pro span {
    position: absolute;
    left: calc(50% - 65px);
    top: -15px;
    background-color: #fff;
    padding: 0.1rem 1rem;
    color: #325e9bcc;
}.our_pro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px dotted #dcdcdc;
    position: relative;
}.pol_con ul li span {
    font-size: .7rem;
    line-height: 100%;
    display: block;
}.pol_con ul li svg {
    display: block;
    font-size: 2rem;
    margin: 0 auto;
    margin-bottom: 0.5rem;
    text-align: center;
}.pol_con ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    display: block;
    width: calc(25% - 0px);
    text-align: center;
    border-left: 1px solid #ccc;
}.pol_con ul {
    margin: 0;
    padding: 0;
    list-style: none;
}svg:not(:host).svg-inline--fa, svg:not(:root).svg-inline--fa {
    overflow: visible;
    box-sizing: content-box;
}
.pol_con ul li svg {
    display: block;
    font-size: 2rem;
    margin: 0 auto;
    margin-bottom: 0.5rem;
    text-align: center;
}
.svg-inline--fa {
    display: var(--fa-display,inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}.svg-inline--fa {
    display: var(--fa-display,inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}.svg-inline--fa {
    display: var(--fa-display,inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}.modal-header .close {
    box-shadow: 0 8px 60px 0 rgb(25 61 112 / 22%), 0 12px 90px 0 rgb(76 181 81 / 22%);
    background-color: #fff;
    margin: -1.2rem -1.2rem -1rem auto;
    outline: none;
    opacity: 1;
    border-radius: 100%;
    padding: 0.5rem 0.8rem 0.7rem;
    border: 1px solid rgba(25,61,112,.11);
}.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}.accordion {  background-color: #F5F5F5;  color: #444;  cursor: pointer;  padding: 18px;  width: 100%;  border: none;  text-align: left;  outline: none;  font-size: 15px;  transition: 0.4s; font-family: 'Montserrat', sans-serif;}
.active, .accordion:hover {  background-color: #ccc;}
.accordion:after {  content: '\002B';  color: #777;  font-weight: bold;  float: right;  margin-left: 5px;}
.active:after {  content: "\2212";}.about_faq_section{ padding:80px 0px 80px 0; text-align:center; background: #fff;}
.about_faq_heading h2{ color:#006053; font-family: 'Marcellus SC', serif; font-weight:700; font-size:34px; margin:0px 0 40px 0; position:relative; display:block; padding:0 0 0px 0; text-align:center;}
.about_faq_heading h2 span{color:#006053;}
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-bottom: 0px;
}* {
    margin: 0px;
    padding: 0px;
}.about_faq_section {
    padding: 80px 0px 80px 0;
    text-align: center;
    background: #fff;
}#goTop {
    display: none;
    position: fixed;
    right: 1rem;
    bottom: 5rem;
    background-color: rgba(1,60,122,.9);
    text-align: center;
    width: 2.5rem;
    padding: 0.1rem 0.5rem;
    border-radius: 0.3rem;
    z-index: 10000;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.4;
}svg:not(:host).svg-inline--fa, svg:not(:root).svg-inline--fa {
    overflow: visible;
    box-sizing: content-box;
}
.svg-inline--fa {
    display: var(--fa-display,inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}
@media (max-width: 991px) {
    .desk_btn {
        display: none !important;
    }
}
.desk_btn {
    position: fixed;
    right: -2.7rem;
    top: calc(50% - 2rem);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    display: none;
    z-index: 50;
}
.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 50px;
    right: 5px;
    display: none;
}
.fa-arrow-up:before {
    content: "\f062";
}


/* RESPONSIVE CSS ENDS HERE */

/* thankyou page */
.clsfix {
  height: 100vh;
  width: 100% !important;
  overflow: hidden;
  position: relative;
}
.dswitch {
  display: block;
}
.mswitch {
  display: none !important;
}
.cta2_thankyou {
  position: absolute;
  width: auto;
  padding: 3em;
  bottom: 0px;
  left: 0;
  top: 0;
  right: 0;
  padding: 150px 150px 150px;
  background: rgba(0,0,0,.80);
  background: rgb(0,0,0);
  background: linear-gradient(89deg, rgb(0 0 0 / 54%) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 100%);
}
.row {
  padding: 0 !important;
  margin: 0 !important;
}
.cta2_thankyou .proquery {
  background-color: #ffffffcc !important;
  margin: 8% 0 0 0;
  padding: 30px;
}
.cta2_thankyou .proquery span.icon {
  position: absolute;
  left: 46%;
  background: #e0c570;
  padding: 15px;
  border-radius: 67%;
  width: 50px;
  height: 50px;
}


.cta2_thankyou .proquery h3 {
  color: #000;
  padding-top: 70px;
  font-size: 29px;
  font-family: 'inter',sans-serif !important;
}
.cta2_thankyou .proquery p {
  color: #323232;
  cursor: pointer;
}

/* Ensure modal close button is visible */
.modal-header {
  position: relative;
}
.modal-header .close {
  position: absolute;
  right: 12px;
  top: 10px;
  margin: 0;
  padding: 2px 10px;
  background: transparent;
  border: 0;
  color: #fff;
  opacity: 1;
  text-shadow: none;
  font-size: 28px;
  line-height: 1;
  z-index: 2;
}


:root {
  --space-2xl: 48px;
  --space-md: 24px;
  --space-xl: 40px;
  --radius-lg: 16px;
  --white: #fff;
  --gradient-primary: linear-gradient(120deg, #0f3f44, #135055, #1e6a70);
}

.cta-section {
  text-align: left;
  padding: var(--space-2xl) var(--space-md);
  background: var(--gradient-primary);
  color: var(--white);
  margin: var(--space-xl) auto;
  max-width: 1200px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: 0;
  margin-right: auto;
  opacity: 0.9;
  text-align: left;
}
.cta-description {
  text-align: left;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s infinite linear;
  z-index: 1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.05); opacity: 0.5; }
  100% { transform: scale(1); opacity: 0.2; }
}

.cta-points {
  list-style: none;
  padding: 0;
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: flex-start;
}

.cta-points li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
}

.cta-points li::before {
  content: "\f00c";
  font-family: fontawesome;
  position: absolute;
  left: 0;
  top: 0;
  color: #f9c74f;
}

.cta-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #f9c74f, #f9844a);
  color: #000;
  border: 0;
  padding: 10px 22px;
  border-radius: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.cta-button.call {
  background: #fff;
  color: #135055;
  border: 2px solid #fff;
}

.cta-button i {
  margin-right: 8px;
}

.cta-button:hover {
  transform: translateY(-1px);
}

/* Floating contact buttons */
.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.btn-call-pulse,
.btn-whatsapp-pulse {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.btn-call-pulse {
  background: #e53935;
}
.btn-whatsapp-pulse {
  background: #25d366;
}
.btn-call-pulse::before,
.btn-whatsapp-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: pulseRing 2.2s infinite;
}
.btn-whatsapp-pulse::before {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (max-width: 576px) {
  .cta-buttons {
    flex-wrap: wrap;
  }
  .cta-button {
    width: calc(50% - 6px);
    justify-content: center;
  }
  .cta-button.call {
    width: 100%;
  }
}

/* ===== Global Attractive Refresh ===== */
:root {
  --brand: #135055;
  --brand-dark: #0f3f44;
  --brand-accent: #f9c74f;
  --text: #1d2329;
  --muted: #6b7280;
  --bg: #f6f7f9;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

section {
  padding: 70px 0;
}

.common-title h2 {
  letter-spacing: 0.5px;
}

.btn {
  border-radius: 26px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.menu ul li a {
  color: #222;
}
.menu ul li a.OfferDiscount {
  font-weight: 700;
  text-transform: uppercase;
}

/* Banner */
.banner {
  background: #0c0c0c;
}
.banner-cnt {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Overview */
.overview-cnt,
.price-item,
.amenities-item,
.gallery-item,
.locationadvantebanner {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.overview .img-box img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Price table */
.priceTable {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
}
.price-item {
  transition: transform 0.2s ease;
}
.price-item:hover {
  transform: translateY(-6px);
}

/* Amenities */
.amenities-item p {
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

/* Gallery + Floor plan */
.gallery-item {
  border: 0;
}

/* Location */
.locationadvantebanner {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* CTA */
.cta-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

/* Footer */
footer {
  background: var(--brand);
}

/* Form */
.form-control {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

/* Responsive */
@media (max-width: 992px) {
  section {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .common-title h2 {
    font-size: 26px;
  }
  .banner-cnt {
    margin-top: 12px;
  }
}

/* Ensure "We Deliver" icons/text are visible and aligned */
.pol_con ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 0;
}
.pol_con ul li {
  float: none;
  width: 25%;
  text-align: center;
  border-left: 1px solid #dcdcdc;
  padding: 8px 4px;
  color: #fff;
}
.pol_con ul li:first-child {
  border-left: 0;
}
.pol_con ul li span {
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
.pol_con ul li svg {
  width: 28px;
  height: 28px;
  color: #fff;
  fill: currentColor;
}
/* Modal-only color override for "We Deliver" */
.modal .pol_con ul li,
.modal .pol_con ul li span,
.modal .pol_con ul li svg {
  color: #000;
}
@media (max-width: 768px) {
  .pol_con ul li {
    width: 50%;
    border-left: 0;
  }
}
