@font-face {
  font-family: "IvyMode-Regular";
  src: url("../font/IvyMode-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  position: relative;
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px;
  color: #232323;
  padding: 0;
  overflow-x: hidden;
  margin: 0;
}

* {
  margin: 0px;
  padding: 0px;
  border: 0px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

p {
  font-size: 16px;
  color: #000;
  margin-bottom: 25px;
  font-family: "Montserrat", sans-serif;
  line-height: 25px;
  font-weight: 400;
}

.scrolled .logo img {
    filter: invert(1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  color: #111111;
  padding: 0px;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-family: "Montserrat", sans-serif;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

p:last-child {
  margin: 0;
}

.bg-color-one {
  background: #fcf7f2;
  position: relative;
  overflow: hidden;
}

.cta-btn {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  padding: 8px 27px 8px 27px;
  border: 1px solid #000;
  color: #fff;
  background: #000;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 400;
  text-decoration: none;
}

.cta-btn:hover {
  background: transparent;
  cursor: pointer;
  color: #000;
}

/* HEADER MAIN */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 9999;
  background: transparent;
  transition: 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  width: 150px;
}

/* DESKTOP NAV */
.nav-desktop ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
}

.nav-desktop a {
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 12px;
  transition: 0.3s;
  text-transform: uppercase;
}

/* HAMBURGER */
.hamburger {
  width: 35px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* FULL-SCREEN OVERLAY MENU */
.menu-overlay {
  position: fixed;
  top: 95px;
  left: 0;
  width: 100%;
  height: auto;
  background: white;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.menu-overlay ul {
  list-style: none;
  text-align: center;
}

.menu-overlay ul li {
  padding: 18px 0;
}

.menu-overlay ul li a {
  text-decoration: none;
  color: #222;
  font-size: 16px;
  letter-spacing: 3px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Hamburger Animation to Cross */
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

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

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

.hamburger span {
  transition: 0.4s ease;
}

.title {
  font-family: "IvyMode-Regular", sans-serif;
  color: #fff;
  margin-bottom: 25px;
  font-size: 40px;
  letter-spacing: 0px;
}

.scroll-animate {
  font-size: 50px;
  color: #000;
  letter-spacing: 5px;
  margin: 0;
}

.scroll-animate {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.7s ease-out;
  text-align: center;
  overflow: hidden;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate.hide-up {
  opacity: 0;
  transform: translateX(-150px);
}

/* Hero Img*/
.hero-banner {
  position: relative;
  width: 100%;
}

.hero-banner picture,
.hero-banner img {
  width: 100%;
  display: block;
  height: auto;
}

/* Black Overlay */
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 5%);
  /* adjust opacity here */
  pointer-events: none;
}

/* Hero Img*/
.bio-about {
  padding: 115px;
  text-align: justify;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

.bio-img img {
  height: 700px;
  object-fit: cover;
  object-position: center center;
}

.bio-about::before {
  content: "";
  background: url(https://eltiera-heights.ellingtonproperties.ae/img/project/homepage/section2.jpg);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 700px;
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
}

.box-text {
  margin-top: 25px;
}

.box-text img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.box-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 30px;
  background: #000000;
  padding: 10px 10px;
  border: 1px solid #000000;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0;
}

.section-title {
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 70px;
}

.fw-bold {
  font-size: 12px;
  color: #062828;
  font-weight: 500;
}

.amenity-icon img {
  width: 65px;
  height: 65px;
  border-radius: 10px;
}

.building-img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.icon-text {
  font-size: 15px;
  color: #062828;
  font-weight: 500;
  margin-top: 15px;
}

.info-box p {
  margin-bottom: 3px;
}

.bg-color-two {
  padding: 50px 0;
  position: relative;
  background: linear-gradient(180deg, #fcf7f2, #fff);
}

.Gallery-div {
  margin: 15px 0;
  border-radius: 10px;
  overflow: hidden;
}

.half-bg {
  background: url(../img/bg-sec.jpg);
  padding: 50px 0;
  background-size: contain;
  background-repeat: repeat;
}

.gallery {
  width: 100%;
  margin: 40px auto;
}

.gallery-slider {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}

.gallery-slider .swiper-slide {
  width: auto;
  height: auto;
}

.gallery-slider .swiper-slide img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.gallery-thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.gallery-thumbs .swiper-slide {
  width: 100px;
  height: 100px;
  text-align: center;
  overflow: hidden;
  opacity: 0.1;
}

.gallery-thumbs .swiper-slide-active {
  opacity: 1;
}

.gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  border: 2px solid #000000;
}

.gallery .swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.price-plan {
  width: 70%;
  margin: 0 auto;
}

.payment-mob-padding {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.payment-table-width {
  width: 100%;
}

.payment-table-width td {
  padding: 10px 8px 10px 10px;
  font-weight: 500;
}

.font-s-3 {
  font-size: 20px;
}

.mob-font-p {
  padding: 5px 5px 5px 15px;
  font-size: 12px;
}

.font-s-3 {
  font-size: 35px;
  color: #111;
  line-height: 50px;
  font-family: "IvyMode-Regular";
}

.payment-table-width tr:nth-child(1) {
  border-bottom: 1px solid #000;
}

.form-container {
  margin: 0 auto;
  padding: 0 50px;
}

.form-container input,
.form-container select {
  width: 100%;
  padding: 0 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-container select {
  cursor: pointer;
}

.form-container .iti {
  width: 100%;
  margin-bottom: 10px;
}

.form-container button {
  padding: 10px 20px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-container button:hover {
  background-color: #666666;
}

.map-div {
  margin: 0;
  padding: 0;
  display: flex;
}

.location-contact .row {
  background: #fcf7f2;
  border-radius: 15px;
  overflow: hidden;
}

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

footer {
  text-align: center;
  padding: 15px 0;
  width: 100%;
  display: inline-block;
  background: #000000;
}

footer p {
  color: #fff;
  font-size: 10px;
  margin: 0 0 10px 0;
  line-height: 18px;
}

footer ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
}

footer ul li {
  margin: 0 10px;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

.section-v6 {
  background-image: url(../img/bannerFeature/background.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 500px;
  position: relative;
  z-index: 1;
}



.header-form {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000b3;
  padding: 25px 0;
}

.form-div {
  margin: 0 auto;
  text-align: left;
}

.form-div button,
input,
optgroup,
select,
textarea {
  padding: 5px;
  height: 35px;
  width: inherit;
}

::placeholder {
  font-size: 14px;
  color: #666666;
}

select {
  font-size: 14px;
  color: #666666;
}

.form-div button {
  background: #e1e1dc;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  color: #000000 !important;
  padding: 10px 30px 10px 30px;
  border: 0px;
  letter-spacing: 2px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  display: inline-block;
  line-height: 0;
}

.form-div form {
  font-size: 10px;
  margin: 0 auto;
  text-align: center;
  line-height: 0;
  display: inline-flex;
  gap: 12px;
  width: 100%;
  max-width: 1000px;
}

.form-div {
  font-size: 10px;
  margin: 0 auto;
  text-align: center;
  line-height: 0;
  gap: 12px;
  width: 100%;
  max-width: 1000px;
  text-align: left;
}

.form-div p {
  font-size: 10px;
  color: #fff;
  line-height: 18px;
  margin-top: 10px;
}

.form-div h3 {
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
}

.sticky-btn {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 1000;
}

.phone-btn,
.whatsapp-btn {
  display: block;
  margin-bottom: 10px;
  background-color: #25d366;
  /* WhatsApp green */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #b5b5b5;
}

.phone-btn svg,
.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.phone-btn {
    background-color: #254c73;
}

.phone-btn:hover,
.whatsapp-btn:hover {
  opacity: 0.8;
}

/* Position the link on the right side and make it sticky */
.sticky-link {
  position: fixed;
  /* Keeps the link fixed while scrolling */
  bottom: 50%;
  /* Distance from the bottom of the page */
  right: -65px;
  /* Distance from the right of the page */
  z-index: 1000;
  /* Ensure it's above other content */
  padding: 10px 20px;
  /* Adjust padding for link */
  background-color: #000000;
  /* Link background color */
  color: white;
  /* Text color */
  text-decoration: none;
  /* Remove underline */
  border-radius: 0;
  /* Rounded corners */
  font-size: 16px;
  /* Font size */
  display: inline-block;
  /* Make it behave like a block-level element */
  text-align: center;
  /* Center the text */
  transform: rotate(-90deg);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

/* Optional: Hover effect */
.sticky-link:hover {
  background-color: #a98e72;
  /* Darker shade on hover */
  color: #000;
}

.btn-close {
  position: absolute;
  right: 20px;
}

.modal .form-container .iti {
  margin: 0;
}

.modal .form-container button {
  margin: 0 auto;
  margin-top: 15px;
  text-align: center;
  display: block;
}

.bg-gray {
  background: #f5f5f5;
  padding-top: 60px;
}

.swiper-container {
  position: relative;
}

.properties-lists {
  background: #f5f5f5;
  padding-top: 60px;
}

.main-properties-wrap {
  display: inline-flex;
  gap: 30px;
  background: #ffffff;
  position: relative;
  margin-bottom: 100px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border-radius: 15px;
}

.properties-img {
  width: 40%;
  overflow: hidden;
  position: relative;
}

.properties-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  height: 270px;
  max-height: 270px;
  border-radius: 15px 0 0 15px;
}

.properties-text {
  width: 60%;
  padding: 15px 0;
}

.properties-text ul {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
  margin: 20px 0;
}

.properties-text ul li {
  line-height: 20px;
  font-weight: 500;
  font-size: 12px;
  list-style: none;
  display: inline-flex;
  gap: 10px;
  margin: 5px 0;
}

.properties-text ul li img {
  width: 25px;
  height: 25px;
  filter: contrast(0.5);
}

.properties-text h3 {
  font-size: 20px;
  font-weight: 700;
}

.properties-but {
  display: inline-flex;
  gap: 5px;
}

.properties-but button {
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  padding: 5px 6px 5px 6px;
  border: 1px solid #000;
  color: #fff;
  background: #000;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 400;
  text-decoration: none;
  margin: 0;
}

.properties-but button:hover {
  background: gray;
  border-color: gray;
}

.properties-but button:hover {
  background: gray;
  border-color: gray;
}

.price-tabel {
  position: absolute;
  top: -46px;
  background: #a98e72;
  right: 0;
  width: 62%;
  text-align: center;
  padding: 13px 0;
}

.price-tabel h2 {
  color: #fff;
  font-size: 16px;
  margin: 0;
}

.price-tab {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
  color: #fff;
}

.sep {
  border-top: 1px solid #393939;
  margin: 25px 0;
}
.row.properties-row {
  margin-top: 100px;
}

.logo-pro {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    overflow: hidden;
}
.mySwiper .swiper-slide {
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.87);
    background-image: var(--Paper-overlay);
    overflow: hidden;
    height: 100px;
    width: 100%;
    padding: 8px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 8px;
    transition: filter 0.3s;
    box-shadow: none;
}

.mySwiper .swiper-slide img{
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    max-height: 80px;
    object-fit: contain;
}



@media (max-width: 991px) {
  .header {
    padding: 20px 10px;
  }
    .bio-about::before{display:none;}
  
  	.sticky-btn{display: inline-flex; width: 100%; left: 0; right: 0; bottom: 0; }
	.phone-btn, .whatsapp-btn { border: 0; width: 50%; border-radius: 0; height: 45px; margin: 0; }
	.sticky-btn a svg { width: 20px; }

    .main-properties-wrap { gap: 5px; display: inline-block; }	
	.properties-img { width: 100%;}
	.properties-img img{    border-radius: 0; }
	.price-tabel{ width: 100%;}
	.properties-text { width: 100%; padding: 15px 20px; }
	 footer ul { display: inline-block; margin: 10px 0; }
	 
    .section-v6 { background-attachment: scroll !important; background-size: cover; background-position: center; }
    
    

  .logo img {
    width: 115px;
  }

  .bio-img img {
    height: 450px;
  }

  .box-text p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
  }

  .header-form {
    padding: 25px 15px;
  }

  .form-div form {
    display: block;
    width: 100%;
  }

  .iti {
    width: 100%;
    margin-bottom: 10px;
  }

  .form-div button,
  input,
  optgroup,
  select,
  textarea {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 10px !important;
  }

  .location-contact {
    padding: 50px 30px;
  }

  .form-container {
    padding: 25px 25px;
  }

  .title {
    font-size: 35px;
    letter-spacing: 0px;
    text-align: center;
    font-weight: bolder;
  }

  .bio-about {
    padding: 30px;
  }

  .hero-banner {
    height: 750px;
  }
}
