* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: lato, sans-serif;
}
html,body {
  overflow-x: hidden !important;
}
body[data-aos-easing] {
  overflow: hidden;
}
/* body.modal-open{
  overflow: hidden;
} */
.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.row > * {
  padding: 0 15px;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  display: inline-block;
  color: black;
}
a:hover {
  color: #543ad7;
}
/* ----------header section------------ */
header {
  padding: 16px 30px;
  background: url("../img/aboutus-images/hero-img.png") no-repeat center/cover;
  /* margin: 17px 30px; */
  border-radius: 30px;
  min-height: 462px;
}
.nav-container {
  max-width: 1359px;
  min-height: 67px;
  background-color: white;
  border-radius: 50px;
  margin: 0 auto;
}
header > div > div > div {
  justify-content: space-between;
  align-items: center;
}
/* .desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
} */

.nav {
  position: fixed;
  top: 0;
  right: -200%;
  width: 102vw;
  /* height: 100vh; */
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  /* border-radius: 20px; */
}

.nav.active {
  right: 0;
}

.nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
  /* margin-top: 2rem; */
}

.nav ul li {
  /* border-bottom: 1px solid #eee; */
  padding-bottom: 0.5rem;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
  /* font-size: 1.1rem; */
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  padding: 0.5rem 0;
}
.close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.active {
  display: flex !important;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-item > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-size: 16px;
  font-weight: 700;
}
.nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-block: 30px;
  font-size: 16px;
  font-weight: 700;
}
.nav-logo {
  max-width: 170px;
  min-height: 55px;
  margin-bottom: 20px;
}
.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.login {
  padding: 7px 22px;
  text-transform: uppercase;
  color: white;
  border-radius: 90px;
  background-color: #543ad7;
}
.logins {
  padding: 7px 22px !important;
  text-transform: uppercase;
  color: white !important;
  border-radius: 90px;
  background-color: #543ad7;
}
.login:hover {
  color: white !important;
  box-shadow: 2px 2px 2px 2px rgb(245, 244, 244);
}

/* -----------------modals---------------------- */

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  /* width: 400px; */
  max-width: 100vw;
  transform: scale(0.9);
  transition: transform 0.3s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-overlay.active .modal {
  /* transform: scale(1); */
}

.modal h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal p {
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.form-rowss {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-groupss {
  flex: 1;
  margin-bottom: 1rem;
}

.form-groupss input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  background: #f8f9fa;
  transition: border-color 0.3s;
}

.form-groupss input:focus {
  outline: none;
  border-color: #543ad7;
  background: white;
}

.form-groupss input::placeholder {
  color: #999;
}

.forgot-password {
  text-align: right;
  margin-bottom: 1.5rem;
}

.forgot-password a {
  color: #543ad7;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.modal-btn {
  width: 100%;
  background: #543ad7;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 1rem;
}

.modal-btn:hover {
  background: #4a32c7;
}

.switch-modal {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

.switch-modal a {
  color: #543ad7;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.switch-modal a:hover {
  text-decoration: underline;
}

.terms-text {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-bottom: 1.5rem;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.close-modal:hover {
  background: #f0f0f0;
}

/* ------------------------------------ */
.hero-section {
  text-align: center;
}
.hero-section > h1 {
  color: white;
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 600;
  margin-top: 76px;
  font-family: Montserrat, sans-serif;
  line-height: 66px;
}
/* .hero-section span {
  max-width: 657px;
  min-height: 70px;
  background-color: #543ad7;
  border-radius: 10px;
  padding-inline: 10px;
}
.hero-section p {
  color: white;
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 185px;
} */
.fa-arrow-right {
  color: white;
  font-size: 1rem;
}
.hero-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
/* hamberger */
.hamberger {
  display: none;
  cursor: pointer;
}
.col12 {
  width: 100%;
  padding: 0 15px;
  flex-wrap: wrap;
}
.col8 {
  width: 66.66%;
  padding: 0 15px;
  flex-wrap: wrap;
}
.col6 {
  width: 50%;
  padding: 0 15px;
  flex-wrap: wrap;
}
.col4 {
  width: 33.33%;
  padding: 0 15px;
  flex-wrap: wrap;
}
.col3 {
  width: 25%;
  padding: 0 15px;
  flex-wrap: wrap;
}
.col2 {
  width: 16.66%;
  padding: 0 15px;
  flex-wrap: wrap !important;
}

/* ------------get-in-touch------------------------ */

.get-in-touch {
  padding-top: 89px;
}
.get-in-touch > div > div {
  justify-content: center;
  align-items: center;
}
.dash-about,
.faq-about {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-about p,
.faq-about p {
  font-size: 20px;
  font-weight: 500;
  font-family: Montserrat, sans-serif;
}
.dash-about > span,
.faq-about > span {
  height: 3px;
  width: 49px;
  background-color: #543ad7;
}
.get-line {
  height: 1px;
  width: 100%;
  background: #999999;
  margin-top: 30px;
}
.get-address,
.get-email,
.get-ph {
  display: flex;
  gap: 27px;
  margin-top: 35px;
}
.get-in-touch-left > h2 {
  font-size: 48px;
  font-family: Montserrat, sans-serif;
  margin-top: 8px;
}
.get-in-touch-left > p {
  margin-top: 16px;
  font-size: 18px;
}
.get-address-content > div,
.get-ph-content > div,
.get-email-content > div {
  font-size: 18px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  margin-bottom: 7px;
}
.get-in-touch-right {
  background: #f7f8fa;
  border-radius: 40px;
  padding: 33px 46px;
}
.form-container {
  /* background: #ffffff; */
  padding: 40px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
  width: 100%;
  /* max-width: 600px; */
  margin: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

.form-group > input[type="text"],
.form-group > input[type="email"],
.form-group > input[type="tel"],
.form-group > textarea {
  padding: 16px 20px;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  /* background-color: #f9fafb; */
  transition: all 0.2s ease;
  font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: #6366f1;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.submit-btn {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
  min-width: 140px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Success message styles */
.success-message {
  background-color: #10b981;
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  display: none;
}

.error-message {
  background-color: #ef4444;
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  display: none;
}

/* -----------------FAQ---------------------- */

.FAQ {
  padding-top: 75px;
}
.faq-about {
  justify-content: center;
}

.FAQ > div > div {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 40px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-label {
  font-size: 16px;
  color: #6366f1;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.faq-label::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #6366f1;
  border-radius: 2px;
}

.faq-title {
  font-size: 36px;
  color: #374151;
  font-weight: 700;
  margin-top: 16px;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #6366f1;
}

.faq-question-text {
  font-size: 18px;
  color: #374151;
  font-weight: 600;
  flex: 1;
  margin-right: 20px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-icon.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-answer.active {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-answer-text {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.faq-answer-text:last-child {
  margin-bottom: 10px;
}

/* --------------newsletter------------------------ */

.newsletter {
  padding-top: 84px;
  padding-bottom: 75px;
}
.newsletter > div > div {
  justify-content: space-between;
  align-items: center;
}
.news-left {
  font-size: 32px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  /* max-width: 455px; */
}
.subscribe {
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
}

/* form-email */

.form-container1 {
  width: 100%;
  max-width: 600px;
  /* background: white; */
  /* padding: 40px; */
  border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.email-input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.email-input {
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  border: 2px solid rgb(119, 118, 118);
  border-radius: 50px;
  background-color: #ffffff;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
  font-family: lato, sans-serif;
}

.email-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.email-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.email-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message1 {
  color: #ef4444;
  font-size: 14px;
  margin-top: 8px;
  margin-left: 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.error-message1.show {
  opacity: 1;
  transform: translateY(0);
}

/* .subscribe{
  width: 100%;
  padding: 20px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
} */

.subscribe:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  /* box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); */
}

.subscribe:active {
  transform: translateY(0);
}

.success-message1 {
  color: #10b981;
  font-size: 14px;
  margin-top: 8px;
  margin-left: 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.success-message1.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

.form-container1.shake {
  animation: shake 0.5s ease-in-out;
}

/* -------------------------footer------------------ */

.footer {
  padding-block: 33px;
}
.footer > div > div {
  justify-content: space-between;
  align-items: center;
}
.footer-content > p {
  max-width: 435px;
  color: #868686;
  margin-top: 26px;
  font-size: 20px;
}
.footer-social-link {
  margin-top: 27px;
  display: flex;
  gap: 23px;
}
.footer-link > h3,
.footer-property > h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
  color: #333333;
  margin-bottom: 21px;
}
.links a {
  color: #868686 !important;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}
.links a:hover {
  color: #543ad7 !important;
}

/* ----------------- */
.row1 > img,
.row2 > img {
  max-width: 95px;
  min-height: 64px;
  object-fit: contain;
}
.footer-property {
  display: flex;
  flex-direction: column;
  /* flex-wrap: wrap; */
}
.footer-content {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

/* -------------------------copyright------------ */

.copyright {
  padding-block: 23px;
}
.copyright > div > div {
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  color: #666666;
}
.copy-right {
  display: flex;
  gap: 27px;
}

/* ----------------------------------------------------mediaquery */

@media screen and (max-width: 1200px) {
  .aboutus > div > div {
    flex-direction: column;
  }
  .about-right {
    margin-top: 10px;
  }
  /* .footer > div > div {
    justify-content: center;
    gap: 30px;
  } */
  .profile-card {
    width: 250px;
    height: 320px;
  }

  .profile-image {
    height: 250px;
  }
  .professional-card {
    gap: 15px;
  }
  .footer > div > div {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .footer-link {
    text-align: center;
  }
  .footer-content {
    /* display: flex;
    flex-direction: column; */
    align-items: center;
  }
}

/* ------------------------------------------------------------ */
@media screen and (max-width: 992px) {
  .header-container {
    margin: 0;
    border-radius: 0;
  }
  header{
    border-radius: 0;
  }
  .floating-range-hero > div > div {
    flex-direction: column;
    align-items: stretch;
  }

  .form-group {
    width: 100%;
  }

  .floating-range-hero {
    max-width: 580px;
  }
  /* .nav-btn,
  .nav-item {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
  } */
  .hamberger {
    display: block;
  }
  .fa-solid {
    font-size: 19px;
    margin-top: 10px;
  }
  /* #hamberger:checked ~ .nav-item,
  #hamberger:checked ~ .nav-btn {
    display: flex !important;
  }
  .nav-item > ul,
  .nav-btn {
    flex-direction: column;
  } */

  header {
    position: relative;
    padding: 19px 11px;
  }

  .nav-btn,
  .nav-item {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 96px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    flex-basis: 100%;
  }
  .col2 {
    width: 25%;
  }
  .col6,
  .col8 {
    width: 100%;
  }
  .section-title {
    font-size: 32px;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
  .other-service > div > div {
    flex-direction: column-reverse;
  }
  .other-service-left > .dash-about {
    margin-top: 10px;
  }
  .news-left {
    text-align: center;
    margin-bottom: 10px;
  }
  .news-right {
    justify-content: center;
  }
  .commitement > div > div {
    flex-direction: column-reverse;
  }
  .dash-about {
    margin-top: 10px;
  }
  .get-in-touch-left {
    width: 100%;
  }
  .get-in-touch > div > div {
    gap: 20px;
  }
  .get-in-touch-right {
    border-radius: 0px;
    padding: 10px 5px;
  }
}

/* ---------------------------------------------- */
@media screen and (max-width: 768px) {
  .col2,
  .col3 {
    width: 33.33%;
  }
  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .property-image {
    height: 220px;
  }

  .property-content {
    padding: 20px;
  }

  .property-title {
    font-size: 18px;
  }
  .swiper-listed-properties {
    margin: 0;
    padding-top: 39px;
    margin-top: 20px;
    border-radius: 0;
  }
  .carousel-track {
    animation-duration: 15s;
  }
  .form-container {
    /* padding: 30px 20px; */
    margin: 10px;
    border-radius: 16px;
  }

  .email-input {
    padding: 18px 20px;
    font-size: 16px; /* Prevent zoom on iOS */
  }

  .swiper {
    display: block; /* Show swiper on mobile */
  }

  .profile-card {
    width: 280px;
    height: 350px;
  }

  .profile-image {
    height: 280px;
  }

  .professional-card {
    display: none;
  }

  .professional-xperts {
    margin-inline: 0;
    border-radius: 0;
  }

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
  }

  label {
    font-size: 16px;
    margin-bottom: 10px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    padding: 14px 16px;
    font-size: 16px;
  }

  .faq-container {
    padding: 30px 20px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-question-text {
    font-size: 16px;
    margin-right: 15px;
  }

  .faq-answer-text {
    font-size: 15px;
  }

  .modal-overlay {
    padding: 1rem;
    justify-content: center;
    align-items: center;
  }

  .modal {
    width: 100%;
  }
}

/* ------------------------------------------------- */

@media screen and (max-width: 645px) {
  .col2,
  .col3 {
    width: 50%;
  }
  .news-right {
    flex-direction: column;
    gap: 10px;
  }
  .footer {
    text-align: center;
  }
  .footer-social-link {
    justify-content: center;
    align-items: center;
  }
  .copyright > div > div {
    justify-content: center;
    font-size: 10px;
  }
  .vission-mission {
    flex-direction: column;
    gap: 17px;
  }
  .professional-xperts {
    margin-inline: 0;
    border-radius: 0;
  }
}

/* -------------------------------------------------- */
@media screen and (max-width: 576px) {
  .col2,
  .col3,
  .col4 {
    width: 100%;
  }
  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
    padding-left: 25px;
  }

  .section-subtitle::before {
    width: 15px;
  }

  .property-image {
    height: 200px;
  }

  .property-content {
    padding: 18px;
  }

  .property-title {
    font-size: 16px;
  }

  .all-listing-btn {
    padding: 10px 25px;
    font-size: 13px;
  }
  .carousel-track {
    animation-duration: 12s;
  }
  .form-container {
    margin: 5px;
    border-radius: 12px;
  }

  .email-input {
    padding: 16px 18px;
  }
  .error-message,
  .success-message {
    margin-left: 18px;
    font-size: 13px;
  }

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

  .form-row {
    gap: 20px;
    margin-bottom: 20px;
  }

  label {
    font-size: 15px;
    margin-bottom: 8px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    padding: 12px 14px;
    font-size: 15px;
  }

  textarea {
    min-height: 100px;
  }

  .submit-btn {
    padding: 14px 35px;
    font-size: 15px;
    margin-top: 25px;
  }
  .faq-container {
    padding: 25px 15px;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-question-text {
    font-size: 15px;
    margin-right: 12px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-answer-text {
    font-size: 14px;
  }

  /* -------------------------- */

  .nav-logo {
    margin-bottom: 0;
    width: 143px;
    margin-top: 4px;
  }

  .profile-card {
    width: 260px;
    height: 330px;
  }

  .profile-name {
    font-size: 16px;
  }

  .profile-title {
    font-size: 13px;
  }

  .professional-xperts > div > div > h2 {
    text-align: center;
    margin-bottom: 10px;
  }

  .hero-section > h1 {
    font-size: 26px;
  }
  .dash-about {
    margin: 10px auto;
  }
  .who-we-are-right > h2,
  .comm-left > h2 {
    font-size: 26px;
    text-align: center;
  }
  .who-we-are-right > p,
  .comm-left > p {
    font-size: 15px;
    text-align: center;
  }
  .stats-card {
    justify-content: start;
    padding: 10px 20px;
  }
  .vission > h3,
  .mission > h3 {
    text-align: center;
    font-size: 20px;
  }
  .vission > p,
  .mission > p {
    text-align: center;
  }

  .get-in-touch {
    padding-top: 40px;
  }
  .get-in-touch-left > h2 {
    font-size: 26px;
    text-align: center;
  }
  .get-in-touch-left > p {
    text-align: center;
    font-size: 15px;
  }
  .get-address-content > div,
  .get-ph-content > div,
  .get-email-content > div {
    font-size: 15px;
  }
  .get-address-content > p,
  .get-ph-content > p,
  .get-email-content > p {
    font-size: 12px;
  }
  .dash-about {
    justify-content: center;
  }

  /* ----------common---------------- */
  .newsletter {
    padding-block: 20px;
  }
  .news-left > h3 {
    font-size: 26px;
    margin-top: 16px;
    text-align: center;
  }
  .footer-content > p {
    font-size: 15px;
  }
  .footer-link > h3,
  .footer-property > h3 {
    font-size: 18px;
  }
  .links a {
    font-size: 15px;
  }
  .stats-card {
    justify-content: start;
    padding: 10px 20px;
  }
  /* footer */
  .row1,
  .row2 {
    width: 198px;
  }
  .get-address,
  .get-ph,
  .get-email {
    margin-left: 30px;
  }
  .form-group > input[type="text"],
  .form-group > input[type="email"],
  .form-group > input[type="tel"],
  .form-group > textarea {
    padding: 9px 22px;
    font-size: 13px;
  }
  .FAQ {
    padding-top: 21px;
  }
}

/* ------------------------------------------------ */
@media screen and (max-width: 320px) {
  .section-header {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 22px;
  }

  .property-content {
    padding: 15px;
  }

  .property-title {
    font-size: 15px;
  }

  .property-location {
    font-size: 13px;
  }

  .detail-btn {
    padding: 6px 15px;
    font-size: 11px;
  }

  .all-listing-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
  .carousel-track {
    animation-duration: 10s;
  }
  .form-container {
    /* padding: 20px 12px; */
    margin: 0;
    border-radius: 10px;
  }

  .email-input {
    padding: 14px 16px;
    font-size: 16px;
  }
  .error-message,
  .success-message {
    margin-left: 16px;
    font-size: 12px;
  }
  .profile-card {
    width: 240px;
    height: 310px;
  }

  .profile-image {
    height: 240px;
  }

  .profile-info {
    padding: 15px;
  }

  .contact-icon {
    width: 35px;
    height: 35px;
    bottom: 15px;
    right: 15px;
  }

  .contact-icon img {
    width: 18px;
    height: 18px;
  }

  .form-container {
    padding: 20px 15px;
  }

  .form-row {
    gap: 15px;
    margin-bottom: 18px;
  }

  label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  textarea {
    min-height: 90px;
  }

  .submit-btn {
    padding: 12px 30px;
    font-size: 14px;
    margin-top: 20px;
    min-width: 120px;
  }
  .faq-container {
    padding: 20px 12px;
  }

  .faq-title {
    font-size: 22px;
  }

  .faq-question {
    padding: 18px 0;
  }

  .faq-question-text {
    font-size: 14px;
    margin-right: 10px;
  }

  .faq-answer-text {
    font-size: 13px;
  }
}
