@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
  margin: 0;
  padding: 0;
  font-weight: 400;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  /*font-family: "Lobster Two", sans-serif;*/
}
html {
  scroll-behavior: smooth;
}
body {
  color: #4D4D4D;
}
p {
    
}
a {
    text-decoration: none;
    color: #4D4D4D;
}
a:hover {
    color: #1056B8;
}
h1 {
    font-family: "DM Sans", sans-serif;
}
.mobile {
    display: none;
}
section {
    position: relative;
}
.img-responsive {
  max-width: 100%;
}
.img-100 {
    width: 100%;
}
.img-center {
    margin-left: auto;
    margin-right: auto;
}
.main-title {
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: normal;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.main-title span {
    font-weight: 900;
    color: #1056B8;
    position: relative;
    padding-left: 70px;
}
.main-title span:before {
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
    background: #014877;
    top: 50%;
    left: 0;
}
.small-title {
    font-weight: 800;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: #45956D;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  overflow: auto;
}
.popup-overlay.form-section {
    padding: 0;
    background: rgba(0, 0, 0, 0.6);
}
.popup-content {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 600px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  opacity: 0;
  animation: popIn 0.4s ease forwards;
}
.popup-content #closePopup {
    padding: 5px;
    background: #007bff;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    width: 40px;
    position: absolute;
    right: 30px;
    top: 30px;
}
.terms {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 15px;
}
/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Popup scale-in animation */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Mobile friendly */
@media (max-width: 480px) {
  .popup-content {
    padding: 20px;
    font-size: 0.9rem;
    margin: 20px;
  }
}
input.error, textarea.error, select.error {
  border: 2px solid red !important;
}

.error-msg {
  color: red;
  font-size: 12px;
  margin-top: 3px;
  display: block;
}

/* Header */
.header {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-sticky-bar {
    height: 80px;
    width: 100%;
    left: 0;
    position: absolute;
    top: -80px;
    z-index: -1;
}
.header-sticky-bar#home {
    top: -80px;
}
.header .logo {
    max-width: 138px;
}
.header .logo .mobile-btn.btn-primary {
    display:none;
    float: right;
}
.header .nav {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .nav ul {
    list-style: none;
    display: flex;
    gap: 16px;
    align-items: center;
}
.header .nav a {
    text-decoration: none;
    color: #181818;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 !important;
}
.header .nav .btn-primary a {
    color: #fff;
}
.header .nav .btn-primary:hover a {
    color: #1056B8;
}
.header .nav .btn-secondary:hover a {
    color: #fff;
}
.header .nav .btn-primary, .header .nav .btn-secondary {
    color: #fff;
    position: relative;
    padding: 10px 20px;
    margin: 0;
    cursor: pointer;
}
.header .nav .btn-primary:after {
    display: none;
}
.header .nav a:hover {
  color: #1056B8;
}
.header .nav ul.sub-menu {
    display: none;
}
.btn-primary {
    border-radius: 5px;
    font-size: 15px;
    color: #fff;
    padding: 12px 30px;
    background: #1056B8;
    border: 1px solid #1056B8;
    position: relative;
    transition: all 0.5s;
    text-transform: uppercase;
    margin-top: 30px;
}
.btn-primary:hover {
    color: #1056B8;
    background: #fff;
}
/*.btn-primary:after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../../assets/images/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px;
    vertical-align: middle;
    transition: all 0.5s;
}
.btn-primary:hover:after {
    transform: translate(10px, 0px);
}*/

.btn-secondary {
    color: #111;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    background: #F2D85D;
    text-transform: uppercase;
    border: 0;
    transition: all 0.5s;
}
.btn-secondary:hover {
  background: #469470;
  color: #fff;
}
.slider-container {

}
.slider-container .Banner-caption {
    position: absolute;
    bottom: 250px;
    left: 50px;
    right: 50px;
    color: #fff;
    text-align: center;
}
.slider-container .Banner-caption .main-title {
    font-size: 68px;
    line-height: normal;
    color: #E6E2D3;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.slider-container .Banner-caption .small-title {
    color: #E6E2D3;
    font-weight: 400;
    font-size: 19px;
    margin-bottom: 30px;
}
.slider-container .Banner-caption p {
    color: #E6E2D3;
    font-size: 17px;
    margin: 0;
}
.slider-container .Banner-caption .btn-primary {
    font-size: 15px;
    color: #ffffff;
    padding: 15px 30px;
    gap: 10px;
    background: lch(0 0 0 / 0.4);
    border: 2px solid #469470;
    position: relative;
    transition: all 0.5s;
    text-transform: uppercase;
    margin-top: 20px;
}
.slider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    background: #469470;
}
.slider-bottom-grid {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 70px;
}
.slider-bottom-left {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
}
.slider-bottom-left p {
    margin: 0;
}
.slider-bottom-right {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.img-text {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 10px;
    align-items: center;
    position: relative;
}
/*.img-text:before {
    position: absolute;
    content: "";
    top: 10px;
    bottom: 10px;
    left: -20px;
    width: 1px;
    background: #ffffff30;
}*/

/*Intro section*/
.intro-section {
    padding: 80px 0;
    background: #fff url(../../assets/images/intro-img.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 45vw;
}
.intro-box {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
    align-items: center;
}
.main-title.img-text {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 210px 1fr;
    gap: 50px;
    margin-bottom: 30px;
}
.main-title.img-text .intro-logo {
    max-width: 100%;
    padding-right: 50px;
    border-right: 2px solid #C3C3C3;
}
.intro-section .btn-primary {
    margin-top: 10px;
}

/*Counter section*/
.counter-section {
    padding: 50px 0;
    background: #F2D85D url(../../assets/images/counter-bg.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
}
.counter-box {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 50px;
    align-items: center;
}
.counter-right {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    gap: 50px;
}
.counter-value {
    font-weight: 600;
}
.counter-value span {
    font-size: 48px;
    font-weight: 600;
    color: #005ECD;
    line-height: normal;
}

/*About Project Section*/
.about-project {
    padding: 80px 0;
}
.split-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}
.split-image img {
    border-radius: 5px;
}
.split-image .split-image {
    margin-top: 11px;
}
.split-image .property-image {
    position: relative;
}
.split-image  .property-image span {
    position: absolute;
    bottom: 5px;
    left: 8px;
    color: #fff;
    font-size: 12px;
}
.split-title {
    display: grid;
    grid-template-columns: 1fr max-content;
    align-items: flex-end;
    margin-bottom: 30px;
}
.about-project .split-title {
    margin-top: 50px;
}
.about-project .split-title .main-title {
    margin-bottom: 0;
}
.key-highlights {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    justify-content: space-between;
}
.key-points {
    padding: 15px 0;
    border-bottom: 2px solid #00000010;
    display: flex;
    align-items: center;
}
.key-points:last-child {
    border-bottom: 0;
}
.key-points img {
    margin-right: 15px;
}

/*Project Section*/
.property-section {
    padding: 80px 0;
    background: #f5f5f5 url(../../assets/images/property-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.property-section .split-title {
    margin-bottom: 70px;
}
.property-section .split-title p {
    margin-bottom: 0;
}
.small-title.blue {
    color: #1056b8;
}
.property-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    justify-content: space-between;
    position: relative;
}
.property-list:before {
    position: absolute;
    content: "";
    left: 50%;
    width: 1px;
    top:0;
    bottom: 0;
    background: #959595;
}
.property-list ul {
    margin: 15px 0 30px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.property-list ul li {
    letter-spacing: 0.01em;
    align-items: center;
    display: flex;
    gap: 10px;
    min-height: 70px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #00000020;
    font-weight: 400;
}
.property-list ul li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}
.property-list ul li:before {
    content: "";
    background: url(../../assets/images/black-tick.svg);
    height: 30px;
    width: 30px;
    display: inline-block;
}

.investment-section {
    padding: 80px 0;
    background: #f5f5f5 url(../../assets/images/investment-bg-new.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}
.investment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.investment-right {
    background: #fff;
    padding: 50px;
    border-radius: 5px;
}
.investment-right .main-title {
    margin-bottom: 5px;
}
.investment-points {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 2px solid #00000010;
    gap: 15px;
}
.investment-points:last-child {
    border-bottom: 0;
}

.amenities-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}
.amenities-section .main-title {
    margin-bottom: 0;
}
.facilities-bottom {
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
}
.amenities-section .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100vw;
    margin-left: -15px;
}
.amenities-bottom {
    overflow: hidden;
}
.amenities-section .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 50px 0 !important;
    width: 120vw;
    margin-left: -10vw;
}
.amenities-slider .slide {
  text-align: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.amenities-slider .slide img {
  width: 100%;
  border-radius: 10px;
  transition: all 0.5s ease;
}
.amenities-slider p {
  margin-top: 10px;
  font-size: 16px;
  color: #111;
}
.amenities-slider .slick-slide {
  transform: scale(0.6);
  opacity: 0.5;
  transition: all 0.5s ease;
}
/* Medium slides (2nd and 4th) */
.amenities-slider .slick-slide.prevSlide {
    opacity: 0.8;
    transform: scale(0.9) translate(-55px, 0px);
}
.amenities-slider .slick-slide.nextSlide {
    opacity: 0.8;
    transform: scale(0.9) translate(55px, 0px);
}
/* Center (3rd) */
.amenities-slider .slick-center {
  transform: scale(1.2);
  opacity: 1;
  z-index: 10;
}
.amenities-slider .slick-center img {
  border: 14px solid #ffda4b;
  border-radius: 5px;
  /*box-shadow: 0 0 15px rgba(0,0,0,0.25);*/
}
.amenities-slider .slick-next {
    top: 200px;
    bottom: auto;
    right: 9vw;
    left: auto;
    width: 50px;
    height: 50px;
    background: url(../../assets/images/arrow-rightb.svg);
    border-radius: 5px;
}
.amenities-slider .slick-prev {
    top: 200px;
    bottom: auto;
    right: auto;
    left: 9vw;
    width: 50px;
    height: 50px;
    z-index: 1;
    background: url(../../assets/images/arrow-leftb.svg);
    border-radius: 5px;
}

.amenities-slider .slick-prev:hover, 
.amenities-slider .slick-prev:focus {
    color: unset;
    background: url(../../assets/images/arrow-leftb.svg) !important;
    opacity:0.5;
}
.amenities-slider .slick-next:hover, 
.amenities-slider .slick-next:focus {
    color: unset;
    background: url(../../assets/images/arrow-rightb.svg) !important;
    opacity:0.5;
}
.amenities-slider .slick-prev:before, .amenities-slider .slick-next:before {
    display: none;
}
.specification-section {
    padding: 80px 0;
    background: #1056B8;
    color: #fff;
}
.specification-section .main-title {
    color: #ffffff;
    margin-bottom: 0px;
}
.specifications-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin: 40px 0 70px;
}
.spec-block {
    padding: 40px 0;
    position: relative;
    text-align: center;
}
.spec-block:after {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    background: #1056b8;
    border-radius: 50px;
    left: -15px;
    top: -15px;
}
.spec-block p {
    max-width: 215px;
    margin: 15px auto 0;
}
.spec-block:nth-child(2), .spec-block:nth-child(3), .spec-block:nth-child(4) {
    border-left: 1px solid #ffffff30;
    border-bottom: 1px solid #ffffff30;
}
.spec-block:nth-child(5), .spec-block:nth-child(6), .spec-block:nth-child(7) {
    border-right: 1px solid #ffffff30;
}
.spec-block:nth-child(5) {
    border-top: 1px solid #ffffff30;
}
.specifications-items.row2 .spec-block:nth-child(6), 
.specifications-items.row2 .spec-block:nth-child(7), 
.specifications-items.row2 .spec-block:nth-child(8) {
    border-right: 0;
    padding: 0;
}
.specification-section .slick-next {
    top: -70px;
    bottom: auto;
    right: 10px;
    left: auto;
    width: 50px;
    height: 50px;
    background: url(../../assets/images/arrow-right.svg);
}
.specification-section .slick-prev {
    top: -70px;
    bottom: auto;
    right: 80px;
    left: auto;
    width: 50px;
    height: 50px;
    background: url(../../assets/images/arrow-left.svg);
}
.specification-section .slick-prev:hover, 
.specification-section .slick-prev:focus {
    color: unset;
    background: url(../../assets/images/arrow-left.svg) !important;
    opacity:0.5;
}
.specification-section .slick-next:hover, 
.specification-section .slick-next:focus {
    color: unset;
    background: url(../../assets/images/arrow-right.svg) !important;
    opacity:0.5;
}
.specification-section .slick-prev:before, 
.specification-section .slick-next:before {
    display: none;
}
.location-section {
    background: #fff;
    padding: 70px 0;
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.location-left {
    position: sticky;
    top: 20px;
    align-self: start;
    height: fit-content;
}
.location-right {
    display: grid;
    gap: 30px;
}
.location-right .accordion-item {
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #E3EDFA;
}
.location-right .accordion-button {
    color: #010101;
    font-weight: 800;
    font-size: 18px;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    box-shadow: none;
}
.location-right .accordion-body .location-p {
    margin: 0;
    line-height: 30px;
}
.location-right .sub-heading {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 800;
}
.location-block {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #E3EDFA;
}
.location-block .small-title {
    color: #111;
    margin-bottom: 10px;
}
.location-block .location-p {
    margin: 0;
    line-height: 30px;
}

.floorplan-section {
    background: #469470;
    padding: 80px 0;
    color: #fff;
}
.floorplan-section .main-title {
    color: #ffffff;
    margin-bottom: 0px;
}
.floorplan-slider {
    margin: 50px 0 0;
}
.floorplan-section .slick-next {
    top: -80px;
    bottom: auto;
    right: 10px;
    left: auto;
    width: 50px;
    height: 50px;
    background: url(../../assets/images/arrow-right.svg);
}
.floorplan-section .slick-prev {
    top: -80px;
    bottom: auto;
    right: 80px;
    left: auto;
    width: 50px;
    height: 50px;
    background: url(../../assets/images/arrow-left.svg);
}
.floorplan-section .slick-prev:hover, 
.floorplan-section .slick-prev:focus {
    color: unset;
    background: url(../../assets/images/arrow-left.svg) !important;
    opacity:0.5;
}
.floorplan-section .slick-next:hover, 
.floorplan-section .slick-next:focus {
    color: unset;
    background: url(../../assets/images/arrow-right.svg) !important;
    opacity:0.5;
}
.floorplan-section .slick-prev:before, 
.floorplan-section .slick-next:before {
    display: none;
}
.floorplan-item {
    position: relative;
    padding: 15px;
}
.floorplan-caption {
    background: #fff;
    padding: 15px;
}
.floorplan-caption .small-title {
    font-size: 16px;
    line-height: normal;
    color: #111;
    margin-bottom: 10px;
}
.floorplan-caption p {
    margin-bottom: 0;
    color: #4D4D4D;
    font-size: 14px;
}
.floorplan-link {
    float: right;
    text-decoration: none;
    color: #1056B8;
    text-transform: uppercase;
    font-weight: 600;
}
.floorplan-form.form-section {
    padding: 30px;
    border-radius: 10px;
}
.floorplan-form.form-section .carousel__button.is-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ffffff;
    background: #1056b8;
    border-radius: 4px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.address-text {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
}
.form-section {
    padding: 80px 0;
    background: #fff;
}
.form-section input, 
.form-section select, 
.form-section textarea {
    padding: 5px 15px;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #D4D4D4;
    margin-bottom: 20px;
}
.form-section input[type="checkbox"] {
    width: auto;
    margin: 0;
}
.form-section .red {
    color: #FF1111;
}
.form-section .split-col {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
}
.form-section .btn-primary {
    margin-top: 0;
}
.footer {
    position: relative;
    z-index: 4;
    padding: 50px 0 50px;
    background-color: rgb(70 148 112 / 5%);
}
.footer-grid {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}
.rera-icon {
    max-width: 30px;
}
.logo-text {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: center;
    font-size: 14px;
}
.logo-text p {
    margin-bottom: 0;
}
.footer-grid .small-title {
    font-size: 16px;
    letter-spacing: 0;
    color: #1056b8;
}
.footer-nav {
    padding: 0;
    list-style-type: none;
    text-transform: uppercase;
    font-size: 14px;
}
.footer-nav li {
    margin-bottom:10px;
}
.footer-nav li a {
    font-weight: 500;
    color: #111;
    text-decoration: none;
    letter-spacing: 0.2px;
}
.footer-grid a {
    font-weight: 500;
    color: #111;
    text-decoration: none;
}
.footer-grid a:hover {
    color: #1056b8;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.disclaimer {
    padding: 30px 0;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
    margin: 30px 0;
    font-size: 8px;
    text-align: center;
}
.copyright-section {
    text-align: center;
}


.mobile-sticky-bottom-section {
    display: none;
}
.footer-social {
    margin: 20px 0 0 10px;
}
.footer-social img {
    max-width: 30px;
    margin-right: 10px;
    opacity: 0.5;
}
.footer-social img:hover {
    opacity: 1;
}
.whatsapp {
    max-width: 40px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    border-radius: 5px;
}
.copyright-section a {
    color: #4D4D4D;
    text-decoration: none;
}
.copyright-section a:hover {
    color: #1056B8;
}
/*CSS for Mobile*/
@media screen and (max-width: 600px) {
    .mobile {
        display: block;
    }
    .web {
        display: none;
    }
    .navbar-collapse {
        position: fixed;
        width: 100%;
        left: 0;
        top: 84px;
        background: #ffffff;
        padding: 30px 0;
        border-top: 1px solid #cbcbcb;
    }
    .slider-bottom-left {
        grid-template-columns: 60px 1fr;
    }
    .img-text {
        margin: 15px 0;
    }
    .mobile {
        display: block;
    }
    .web {
        display: none;
    }
    .header {
        padding: 15px;
        position: sticky;
    }
    .navbar-toggler, .navbar-toggler:focus {
        border: 0;
        box-shadow: none;
    }
    .main-title {
        font-size: 1.5rem;
        line-height: normal;
    }
    .small-title {
        margin-bottom: 10px;
    }
    .btn-primary {
        margin-top: 10px;
    }
    .logo {
        max-width: 100%;
        width: 100%;
    }
    .logo img {
        max-width: 80px;
    }
    .logo .mobile-btn.btn-primary {
        display:block;
        float: right;
    }
    .slider-container .Banner-caption {
        bottom: 0;
        left: 10px;
    }
    .slider-container .Banner-caption .main-title {
        font-size: 2.5rem;
        line-height: normal;
        margin-bottom: 20px;
    }
    .slider-container .Banner-caption .main-title br {
        /*display: none;*/
    }
    .slider-container .Banner-caption .small-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .slider-container .Banner-caption p {
        font-size: 14px;
        padding: 10px 0;
        border-top: 1px solid rgb(230 226 211 / 50%);
        border-bottom: 1px solid rgb(230 226 211 / 50%);
    }
    .slider-bottom {
        padding: 25px 10px 10px;
        position: relative;
    }
    .slider-bottom-left {
        margin-bottom: 10px;
    }
    .main-title span {
        font-size: 2rem;
        padding-left: 40px;
    }
    .main-title span:before {
        width: 30px;
    }
    .slider-bottom-grid, .slider-bottom-right, .intro-box, .counter-box, .counter-right, .split-title, .key-highlights, .investment-grid, .location-grid, .contact-grid, .footer-grid, .logo-text, .form-section .split-col {
        display: block;
    }
    .location-left {
        position: relative;
    }
    .specifications-items {
        grid-template-columns: repeat(1, 1fr);
        margin: 0px 0 10px;
        padding: 0;
    }
    .spec-block {
        border: 1px solid #ffffff30;
        padding: 20px 0;
        margin: 10px 0;
    }
    .spec-block p {
        max-width: max-content;
        font-size: 14px;
        margin-top: 10px;
    }
    .specifications-items.row2 .spec-block:nth-child(6), 
    .specifications-items.row2 .spec-block:nth-child(7), 
    .specifications-items.row2 .spec-block:nth-child(8) {
        display: none;
    }
    .intro-section {
        padding: 20px 0;
        background: #fff;
        text-align: center;
    }
    .counter-section {
        padding-bottom: 160px;
    }
    .counter-box {
        text-align: center;
    }
    .counter-right {
        margin-top: 20px;
    }
    .counter-value {
        background: #ffffff4a;
        margin-bottom: 10px;
        padding: 20px;
    }
    .about-project {
        padding: 20px 0;
    }
    .about-project .btn-primary {
        display: none;
    }
    .about-project .split-title {
        margin-top: 10px;
    }
    .key-points {
        display: flex    ;
        align-items: start;
    }
    .property-section {
        padding: 20px 15px;
    }
    .property-section .split-title {
        margin-bottom: 50px;
    }
    .property-list ul li {
        display: grid    ;
        grid-template-columns: 30px 1fr;
    }
    .property-list:before {display: none;}
    .property-list ul li {
        letter-spacing: 0;
        align-items: flex-start;
    }
    .investment-section {
        padding: 20px 0;
    }
    .investment-right {
        padding: 20px;
    }
    .amenities-section {
        padding: 20px 20px;
    }
    .amenities-section .slick-list {
        padding: 0 !important;
        width: 100%;
        margin-left: 0;
    }
    .amenities-slider .slick-center, 
    .amenities-slider .slick-slide,
    .amenities-slider .slick-slide.prevSlide,
    .amenities-slider .slick-slide.nextSlide {
        transform: scale(1);
        opacity: 1;
    }
    .amenities-section .slick-prev:hover, 
    .amenities-section .slick-prev:focus,
    .amenities-section .slick-next:hover, 
    .amenities-section .slick-next:focus{
        background-size: cover !important;
    }
    .amenities-bottom .slick-slide img {
        width: 100%
    }
    .amenities-slider .slick-prev {
        top: auto;
        bottom: calc(50% - 40px);
        left: 0px;
        right: auto;
        width: 40px;
        height: 40px;
        background-size: cover;
    }
    .amenities-slider .slick-next {
        top: auto;
        bottom: calc(50% - 40px);
        right: 0px;
        left: auto;
        width: 40px;
        height: 40px;
        background-size: cover;
    }
    .amenities-slider .slick-center {
      transform: scale(1);
    }
    .specification-section, .location-section {
        padding: 40px 0;
    }
    .specification-section .slick-prev {
        top: -45px;
        right: 50px;
        width: 40px;
        height: 40px;
        background-size: cover !important;
    }
    .specification-section .slick-next {
        top: -45px;
        right: 0px;
        width: 40px;
        height: 40px;
        background-size: cover !important;
    }    
    .specification-section .slick-prev:hover, 
    .specification-section .slick-prev:focus,
    .specification-section .slick-next:hover, 
    .specification-section .slick-next:focus{
        background-size: cover !important;
    }
    .spec-block:after {
       display: none;
    }
    .location-right {
        margin-top: 50px;
    }
    .floorplan-section {
        padding: 20px 0;
        z-index: 3;
    }    
    .floorplan-section .slick-prev {
        top: -10px;
        right: auto;
        left: 15px;
        width: 40px;
        height: 40px;
        background-size: cover;
    }
    .floorplan-section .slick-next {
        top: -10px;
        right: 15px;
        width: 40px;
        height: 40px;
        background-size: cover;
    }
    .floorplan-section .slick-prev:hover, 
    .floorplan-section .slick-prev:focus,
    .floorplan-section .slick-next:hover, 
    .floorplan-section .slick-next:focus{
        background-size: cover !important;
    }
    .floorplan-slider {
        margin: 30px 0 0;
    }
    .form-section {
        padding: 20px 0;
        background: #fff;
    }
    .contact-right {
        margin-top: 30px;
    }
    .footer {
        padding: 20px 0 50px;
        text-align: center;
    }
    .logo-text img {
        max-width: 100px;
        margin-bottom: 10px;
    }
    .footer-block2 {
        margin: 30px 0;
    }
    .footer-block3 {
        margin-bottom: 30px;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-logo {
        margin-bottom: 15px;
    }
    .mobile-sticky-bottom-section {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        left: 0;
    }
    .mobile-sticky-bottom-section .btn-primary {
        display: inline-flex;
        gap: 10px;
        align-items: center;
        text-decoration: none;
    }
    .whatsapp {
        right: 15px;
        bottom: 80px;
    }

}