body {
  position: relative;
  font-family: Montserrat, sans-serif !important;
  font-size: 14px;
  color: #232323;
  padding: 0;
  overflow-x: hidden;
  margin: 0;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
}
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;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #111;
  padding: 0;
  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:focus,
a:hover {
  text-decoration: none;
  outline: 0;
}
p:last-child {
  margin: 0;
}
.nav-desktop {
  margin: 0 auto;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 9999;
  transition: 0.3s ease;
  background: 0 0;
}
.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 img {
  width: 185px;
}
.nav-desktop ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
}
.nav-desktop a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 0;
  font-size: 14px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
}
.scrolled .nav-desktop a {
  color: #fff;
}
.hamburger {
  width: 35px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  background: #fff;
  border-radius: 3px;
}
.menu-overlay {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: auto;
  background: #000;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.menu-overlay ul {
  list-style: none;
  text-align: center;
  padding: 0;
  width: 100%;
}
.menu-overlay ul li {
  line-height: 50px;
  width: 100%;
  border-bottom: 1px solid #dfdfdf;
}
.menu-overlay ul li:last-child {
  border-bottom: none;
}
.menu-overlay ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 500;
}
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  .hamburger {
    display: flex;
    order: 3;
  }
}
.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;
}
.cta-btn {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: #d9c281;
  color: #000 !important;
  height: 55px;
  max-width: max-content;
  padding: 13px 29px;
  border: none;
  box-shadow: none;
  min-width: max-content;
  border-radius: 15px;
  transition: 0.8s;
  font-weight: 600;
  text-transform: uppercase;
}
.cta-btn::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: #f2f2f2;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.cta-btn:hover::before {
  top: -40%;
}
.slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.fadeSwiper {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.fadeSwiper .swiper-slide,
.fadeSwiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.fadeSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 2s ease-in-out, transform 3s ease-in-out;
}
.fadeSwiper .swiper-slide-active img {
  opacity: 1;
  transform: scale(1);
}
.slider-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 49%);
  z-index: 2;
}
.content-slider {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.content-slider h1 {
  color: #d9c281;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
}
.content-slider p {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px;
}
@media (max-width: 991px) {
  .content-slider h1 {
    font-size: 36px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .content-slider {
    text-align: center;
  }
  .content-slider h1 {
    font-size: 20px;
  }
}
.cta-form {
  max-width: 420px;
  background: #ffffff70;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}
.cta-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cta-form select option { color: #000; }
.iti--separate-dial-code .iti__selected-flag { background-color: #fff !important; }
.cta-form input,
.cta-form select {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  color: #fff;
  border: 1px solid #ffffff3b;
  background: #ffffff3b;
  outline: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cta-form input::placeholder {
  color: #fff;
  font-size: 14px;
}
.cta-form input:focus,
.cta-form select:focus {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}
.cta-form select {
  appearance: none;
  background-color: #ffffff3b;
  cursor: pointer;
}
.cta-form button {
  margin-top: 10px;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #111;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
}
.cta-form button:hover {
  background: #000;
  transform: translateY(-1px);
}
.cta-form button:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .cta-form {
    padding: 22px;
    margin-top: 30px;
  }
}
.cta-form h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.cta-form p {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}
.box-slide {
  background: #fff;
  border-radius: 14px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}
.properties-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
  height: 100%;
  background: #fff;
}
.properties-img img {
  height: 200px;
  object-fit: cover;
}
.properties-details ul {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
}
.properties-details ul li {
  line-height: 20px;
  font-weight: 500;
  font-size: 12px;
  list-style: none;
  display: inline-flex;
  gap: 10px;
  margin: 5px 0;
}
.properties-details ul li p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}
.properties-details ul li img {
  width: 25px;
  height: 25px;
  filter: opacity(0.5);
}
.properties-details h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.properties-details {
  padding: 15px 10px;
}
.properties-but {
  text-align: center;
  margin-top: 15px;
}
.properties-but a {
  background: #000;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  padding: 8px;
  border-radius: 5px;
}
.properties-but a:hover {
  background: #000;
}
.properties-details ul li p strong {
  color: #785900;
}
.card-properties {
  position: relative;
  padding: 50px 0;
}
.heading p {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
}

.button-sec-info {
    display: inline-flex;
    justify-content: space-between;
    margin-bottom: 50px;
    align-items: center;
}

.button-sec-info .cta-btn {
    font-size: 14px;
    height: 40px;
    border-radius: 5px;
    text-transform: capitalize;
    padding: 10px;
}

.card-properties.bg-one {
  background: #f8fafc;
  z-index: 1;
}
.properties-img {
  position: relative;
}
.properties-img:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0, #785900ad 100%);
  z-index: 1;
}
.card-properties .gap-box {
  gap: 25px 0;
}
.card-properties.bg-one .properties-card {
  background: #fff;
}
footer {
  background: #000;
  padding: 30px 0;
}
.properties-card {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.properties-card.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.show-more-btn {
  background: #000;
  color: #fff;
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
.show-more-btn:hover {
  background: #333;
}
footer p {
  color: #fff;
  font-size: 11px;
  line-height: 20px;
  text-align: center;
}
footer ul {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
footer ul li {
  margin: 0 10px;
}
footer ul li a {
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
}
.sticky-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.phone-btn,
.whatsapp-btn {
  display: block;
  margin-bottom: 10px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 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;
}
.card-properties.bg-one:before {
  content: "";
  background-image: url(https://seotechexperts.in/testserver/dsq-page/img/footer-demo.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.sticky-link {
  position: fixed;
  bottom: 50%;
  right: -65px;
  z-index: 1000;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  transform: rotate(-90deg);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}
.form-control {
  margin: 15px 0;
  border-radius: 0;
}
.btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #000;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin: 0 auto;
  display: block;
}
.form-container {
  text-align: center;
}
.iti {
  width: 100%;
}
.mySwiper .swiper-slide {
  background-color: #f8fafc;
  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;
}
.why-con h6 {
  margin: 15px 0;
  font-size: 30px;
  font-weight: 600;
}
.why-dsq-real-estate h3 {
  font-size: 16px;
  font-weight: 600;
}
.why-dsq-real-estate ul {
  padding-left: 25px;
  margin-bottom: 20px;
}
.why-dsq-real-estate ul li {
  list-style: disc;
}
.bg-two {
  background: #f8fafc;
  z-index: 1;
}
.invest-dubai {
  padding: 50px 0;
  color: #222;
  line-height: 1.7;
}
.invest-dubai h2 {
  color: #0f172a;
  margin: 15px 0;
  font-size: 30px;
  font-weight: 600;
}
.invest-dubai .intro {
  font-size: 16px;
  margin-bottom: 40px;
  color: #000;
}
.invest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.invest-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.invest-card ul li {
  list-style: disc;
}
.invest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.invest-card h3 {
  color: #785900;
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0;
}
.invest-card p {
  font-size: 15px;
  color: #000;
}
.invest-card ul {
  padding-left: 18px;
  margin-top: 10px;
}
.invest-card ul li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .invest-dubai h2 {
    font-size: 28px;
  }
  .invest-dubai .intro {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .header {
    padding: 15px 10px;
  }
  .header .cta-btn {
    padding: 5px 12px;
    height: 35px;
    border-radius: 5px;
    font-size: 12px;
    order: 2;
  }
  .logo img {
    width: 150px;
  }
  
  .button-sec-info{display: block; align-items: center; text-align: center;}
  .button-sec-info .cta-btn{margin: 0 auto; margin-top: 20px;}
  
  .slider-section .cta-btn {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .slider-section {
    height: inherit;
    padding-top: 150px;
    padding-bottom: 50px;
  }
  .card-properties .gap-box {
    gap: inherit;
  }
  .properties-card {
    height: inherit;
    margin: 10px 0;
  }
  footer ul {
    display: block;
    text-align: center;
    margin: 20px 0;
  }
  footer {
    padding: 15px 0 65px;
  }
  .heading p {
    font-size: 25px;
  }
  .cta-form button {
    border-radius: 0;
  }
  .cta-form h2 {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
  }
  .cta-form p {
    font-size: 12px !important;
    font-weight: 500;
  }
  .content-slider p {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
  }
  .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;
  }
}
