@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --primary-color: #128b7e;
  --secondeary-color: #0b101f;
  --white-color: #ffffff;
  --black-color: #000000;
  --text-color: #4a5565;
  --border-color: #ebe6e7;
  --light-white: #fbf9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
iframe,
svg,
video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  max-width: 1528px;
  margin: 0 auto;
  padding: 0 20px;
}

.sub-text,
.green-text {
  font-family: "Bitter", serif;
}

.btn {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 8px 24px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  display: inline-block;
  letter-spacing: 0.154px;
  transition: 0.3s;
  border: 0;
}

.main-nav .nav-buttons {
  display: flex;
  gap: 10px;
}

.btn.login-btn {
  background-color: var(--border-color);
  color: var(--secondeary-color);
}

.btn.login-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn:hover {
  background-color: var(--secondeary-color);
}

h1 {
  font-size: 72px;
  line-height: 1.25;
}

h2 {
  font-size: 36px;
  line-height: 1.112;
}

h3 {
  font-size: 24px;
  line-height: 1.3339;
}

h4 {
  font-size: 20px;
  line-height: 1.25;
}

h5 {
  font-size: 18px;
  line-height: 1.25;
}

h6 {
  font-size: 16px;
  line-height: 1.25;
}

P {
  font-size: 18px;
  line-height: 1.556;
  margin-bottom: 15px;
}

P:last-child {
  margin-bottom: 0;
}

/* header-css start */
.main-header {
  position: fixed;
  padding: 24px 0;
  background-color: transparent;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  transition: 0.3s;
}

.main-header.fixed {
  padding: 16px 0;
  background-color: var(--white-color);
}

.main-header .header-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.main-header .header-inner .logo {
  width: 100%;
  max-width: 221px;
}

.main-header .header-inner .logo>a {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}

.main-header .header-inner .logo .logo-icon {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.main-header .header-inner .logo .logo-icon svg {
  color: var(--white-color);
}

.main-header .header-inner .logo .logo-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--white-color);
  letter-spacing: -0.32px;
}

.main-header .header-inner .logo .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* hidden dark-img */
.main-header .header-inner .logo .logo-img.dark-img {
  display: none;  
} 
.main-header.fixed .header-inner .logo .logo-img.dark-img {
  display: block;  
} 

/* show light-img */
.main-header.fixed .header-inner .logo .logo-img.light-img {
  display: none;
}

.main-header.fixed .header-inner .logo .logo-text {
  color: var(--secondeary-color);
}

.menu-toggle {
  display: none;
}

.main-nav .menu-outer {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav .menu-outer li a {
  font-size: 14px;
  color: var(--white-color);
  line-height: 24px;
  transition: 0.3s;
}

.main-header.fixed .main-nav .menu-outer li a {
  color: var(--text-color);
}

.main-nav .menu-outer li a:hover {
  color: var(--primary-color);
}

.main-nav {
  width: calc(100% - 221px);
  padding-left: 40px;
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  align-items: center;
}

/* header-css end */
/* banner-css start */
.hero-banner {
  padding: 118px 0 30px;
  width: 100%;
  background-image: url(../images/prop-11.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 90vh;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(to right, rgb(11, 16, 31, 0.9), rgb(11, 16, 31, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 40px;
}

.sub-title {
  padding: 5px 16px;
  font-size: 14px;
  border-radius: 20px;
  background-color: var(--text-color);
  border: 1px solid var(--white-color);
  color: var(--white-color);
  font-weight: 500;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(9px);
  background-color: #ffffff1c;
  line-height: 18px;
  margin-bottom: 24px;
  display: inline-block;
}

.hero-text h1 {
  margin-bottom: 24px;
  color: var(--white-color);
}

.hero-text p {
  font-size: 20px;
  color: var(--white-color);
  margin: 0 48px;
  line-height: 32.5px;
  letter-spacing: 0.2px;
}

.hero-banner .green-text {
  color: var(--primary-color);
}

.search-wrapper {
  background-color: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  max-width: 896px;
  margin: 0 auto;
}

.search-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
}

.search-tabs .tab {
  flex: 1;
  padding: 22px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 20px;
  background-color: var(--light-white);
}

.search-tabs .tab.active {
  border-bottom: 2px solid var(--secondery-color);
  color: var(--white-color);
  background-color: var(--primary-color);
}

/* FORM */
.search-form {
  display: flex;
  gap: 16px;
  padding: 24px;
}

.search-form .field {
  flex: 1;
  width: 100%;
}

.search-form .field.btn-field {
  width: 100%;
  max-width: 145.02px;
}

.search-form .field.location-field {
  min-width: 230.98px;
}

.search-form .field label {
  font-size: 12px;
  margin-bottom: 6px;
  display: block;
  color: var(--text-color);
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.71px;
}

.search-form .field input,
.search-form .field select {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background-color: var(--light-white);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  line-height: 24px;
  letter-spacing: 0.1px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  outline: none;
}

.search-form .field input:focus,
.search-form .field select:focus {
  border-color: var(--primary-color);
}

select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url('../images/down-arrow.png') !important;
  background-repeat: no-repeat;
  background-position: right 14px center !important;
  padding-right: 36px;
  background-size: 16px !important;
  background-repeat: no-repeat !important;
}

.search-form .field-inner {
  position: relative;
  width: 100%;
}

.search-form .field-inner .field-icon {
  position: absolute;
  left: 10px;
  top: 15px;
  width: 20px;
  height: 20px;
  color: var(--secondeary-color);
  opacity: 0.2;
  font-size: 16px;
}

.search-form .btn-field {
  display: flex;
  align-items: flex-end;
}

.search-btn {
  padding: 13px 32px;
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  display: flex;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  transition: 0.3s;
}

.search-btn:hover {
  background-color: var(--secondeary-color);
}

.stats-outer {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  align-items: center;
  text-align: center;
}

.stats-outer .stat-item {
  display: flex;
  flex-direction: column;
  background-color: #ffffff1a;
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 14px;
}

.stats-outer .stat-item .counter-num {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--white-color);
}

.stats-outer .stat-item p {
  font-size: 14px;
  line-height: 20px;
  color: var(--white-color);
}

/* banner-css end */
/* consultation-sec css start */
.consultation-sec {
  width: 100%;
  position: relative;
  padding: 64px 0;
  background: linear-gradient(135deg, #0f766e, var(--primary-color), #0891b2);
}

.consultation-inner {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.consultation-inner>div {
  width: calc(100% / 2 - 48px/2);
}

.consultation-inner .left-content h2 {
  line-height: 1.25;
  color: var(--white-color);
  margin-bottom: 20px;
}

.consultation-inner .left-content p {
  margin-bottom: 32px;
  color: var(--white-color);
  letter-spacing: -0.2px;
}

.consultation-inner .left-content .consultation-features {
  width: 100%;
  margin-bottom: 40px;
}

.consultation-inner .left-content .consultation-features li {
  position: relative;
  padding-left: 30px;
}

.consultation-inner .left-content .consultation-features li .fe-icon {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--light-white);
}

.consultation-inner .left-content .consultation-features li p {
  font-size: 16px;
  color: var(--white-color);
  line-height: 24px;
  margin-bottom: 12px;
}

.consultation-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

.btn.btn-white,
.btn.btn-trans {
  background-color: var(--white-color);
  color: var(--primary-color);
  padding: 16px 32px;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid var(--border-color);
  border-radius: 40px;
  justify-content: center;
}

.btn.btn-trans {
  background-color: transparent;
  color: var(--white-color);
  border: 1px solid var(--border-color);
}

.btn.btn-white:hover,
.btn.btn-trans:hover {
  background-color: var(--secondeary-color);
  color: var(--white-color);
  border-color: var(--secondeary-color);
}

.right-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}

.right-cards .card-inner {
  width: calc(100% / 2 - 16px / 2);
  background-color: #ffffff1a;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  transition: 0.3s;
}

.right-cards .card-inner:hover {
  transform: translateY(-10px);
  background-color: #00000061;
}

.right-cards .card-inner .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding: 4px;
  background-color: #ffffff26;
  margin-bottom: 12px;
  color: var(--white-color);
}

.right-cards .card-inner .card-content {
  width: 100%;
}

.right-cards .card-inner .card-content h3 {
  margin-bottom: 4px;
  color: var(--white-color);
}

.right-cards .card-inner .card-content h4 {
  font-size: 16px;
  margin-bottom: 3px;
  color: var(--white-color);
}

.right-cards .card-inner .card-content p {
  font-size: 12px;
  color: var(--light-white);
}

/* consultation-sec css end */
/* featured-sec css end */
.featured-sec {
  padding: 96px 0;
  background-color: var(--white-color);
}

/* Header */
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  gap: 16px;
  flex-wrap: wrap;
}

.featured-header h2 {
  margin-bottom: 16px;
}

.featured-header p {
  color: var(--text-color);
}

.view-btn {
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  color: var(--text-color);
  transition: 0.3s;
}

.view-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Grid */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.property-card {
  background: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Image */
.property-card .img-box {
  position: relative;
  overflow: hidden;
  padding-top: 65%;
}

.property-card .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.property-card:hover img {
  transform: scale(1.05);
}

.img-box .tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--white-color);
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
}

.img-box .tag.featured {
  left: 90px;
  background: var(--primary-color);
  color: var(--white-color);
}

.img-box .price {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: var(--white-color);
  font-weight: bold;
  font-size: 18px;
}

.img-box .wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: var(--white-color);
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
}

/* Content */
.property-card .property-content {
  padding: 20px;
}

.property-card .property-content {
  margin-bottom: 8px;
}

.property-card .property-content .location {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 15px;
  margin-top: 8px;
}

.property-card .property-content .features {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 18px 10px;
  margin-bottom: 20px;
  font-size: 14px;
}

.property-card .property-content .features i,
.property-card .property-content .location i {
  opacity: 0.4;
}

.property-card .property-content .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-card .property-content .type {
  background: var(--light-white);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.property-card .property-content .bottom a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 14px;
}

/* featured-sec css end */
/* projects-sec css start */
.projects-sec {
  background-color: var(--light-white);
  padding: 96px 0 56px;
  width: 100%;
  position: relative;
}

.projects-top-row {
  width: 100%;
  margin-bottom: 48px;
  padding-right: 140px;
}

.projects-top-row .sub-title,
.inquiry-sec .sub-title,
.testimonial-sec .sub-title {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 8px;
  padding: 0;
  border-radius: 0;
  font-weight: 600;
  line-height: 20px;
  border: 0;
}

.projects-top-row p {
  margin-top: 12px;
  color: var(--text-color);
}

.project-slider {
  width: calc(100% + 24px);
  margin-left: -12px;
}

.project-slider .slick-arrow {
  position: absolute;
  right: 12px;
  top: -96px;
  left: auto;
  width: 48px;
  height: 48px;
  border-radius: 50px;
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.project-slider .slick-arrow::before {
  display: none;
}

.project-slider .slick-arrow.slick-prev {
  right: 72px;
}

.project-slider .slick-arrow.slick-next,
.project-slider .slick-arrow:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.project-card {
  padding: 12px;
  transition: 0.3s;
}

.project-card .project-image {
  position: relative;
  width: 100%;
  padding-top: 56%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.project-card .project-image::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 140px;
  background: linear-gradient(-180deg, #00000000, var(--black-color));
  z-index: 1;
}

.project-card .project-image>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.project-card:hover .project-image>img {
  transform: scale(1.1);
}

.project-card .project-image .project-tag {
  position: absolute;
  top: 15px;
  z-index: 1;
  left: 15px;
  display: inline-block;
  width: auto;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 14px;
  line-height: 18px;
}

.project-card .project-image .project-overlay {
  position: absolute;
  bottom: 20px;
  left: 15px;
  width: 100%;
  z-index: 9;
  max-width: 85%;
}

.project-card .project-image .project-overlay small {
  color: var(--white-color);
  font-size: 14px;
  margin-bottom: 4px;
  display: inline-block;
}

.project-card .project-image .project-overlay h3 {
  color: var(--white-color);
}

.project-card .project-content {
  padding: 20px;
  background-color: var(--white-color);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card:hover .project-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-card .project-content .project-location {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-color);
  margin-left: -2px;
  margin-bottom: 12px;
}

.project-card .project-content .projects-details {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: center;
  margin: 20px 0;
}

.project-card .project-content .projects-details li {
  padding: 11px;
  background-color: var(--light-white);
  border-radius: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.project-card .project-content .projects-details li .details-icon {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 5px;
  display: inline-block;
}

.project-card .project-content .projects-details li p {
  text-align: center;
  font-size: 14px;
  color: var(--text-color);
}

.project-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

.project-bottom .type {
  background: var(--light-white);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.project-bottom a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s;
}

.project-bottom a:hover {
  color: var(--secondeary-color);
}

.slick-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  transition: 0.3s;
  position: revert;
  width: auto !important;
}

.slick-dots li {
  position: revert;
  width: auto;
  height: auto;
  margin: 0;
}

.slick-dots li button {
  font-size: 0;
  width: 8px;
  height: 8px;
  border: 0;
  background-color: var(--border-color);
  border-radius: 20px;
  cursor: pointer;
  line-height: 0;
  transition: 0.3s;
}

.slick-dots li.slick-active button {
  background-color: var(--primary-color);
  width: 24px;
}

/* projects-sec css end */
/* inquiry-sec css start */
.inquiry-sec {
  padding: 96px 0;
  position: relative;
  width: 100%;
}

.inquiry-sec .inquiry-inner-row {
  display: flex;
  gap: 64px;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.inquiry-sec .inquiry-inner-row>div {
  width: calc(100% / 2 - 64px / 2);
}

.inquiry-left h2 {
  margin-bottom: 15px;
}

.inquiry-left p {
  color: var(--text-color);
}

.info-box {
  width: 100%;
  margin-top: 40px;
}

.info-box .info-item {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 24px;
}

.info-box .info-item .info-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-color);
  background-color: var(--border-color);
  border-radius: 50px;
  min-width: 44px;
}

.info-box .info-item .info-contnet a,
.info-box .info-item .info-contnet p {
  font-size: 14px;
  margin-top: 4px;
  margin-bottom: 0;
  color: var(--text-color);
  transition: 0.3s;
}

.info-box .info-item .info-contnet a:hover {
  color: var(--primary-color);
}

.inquiry-right {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background-color: #e7e7e7;
}

.inquiry-right .form-title-col {
  margin-bottom: 20px;
}

.inquiry-right .form-title-col p {
  font-size: 16px;
  margin-top: 4px;
}

.form-inner-row {
  width: 100%;
}

.form-inner-row .input-row {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  width: 100%;
}

.form-inner-row .input-row .filed-col {
  width: 100%;
  margin-bottom: 18px;
}

.form-inner-row .input-row .filed-col input,
.form-inner-row .input-row .filed-col select,
.form-inner-row .input-row .filed-col textarea {
  width: 100%;
  padding: 12px 20px 12px 20px;
  border-radius: 30px;
  border: 1px solid #727272;
  background-color: var(--white-color);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  line-height: 24px;
  letter-spacing: 0.1px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  outline: none;
}

.form-inner-row .input-row .filed-col textarea {
  min-height: 110px;
}

.form-inner-row button[type="submit"] {
  padding: 14px 32px;
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  width: 100%;
  transition: 0.3s;
}

.form-inner-row button[type="submit"]:hover {
  background-color: var(--secondeary-color);
}

/* inquiry-sec css end */
/* choose-sec css start */
.choose-sec {
  padding: 96px 0;
  width: 100%;
  position: relative;
  background-color: var(--light-white);
}

.choose-inner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  justify-content: flex-start;
  align-items: flex-start;
}

.choose-inner-row>div {
  width: calc(100%/2 - 64px/2);
}

.choose-left h2 {
  margin-bottom: 15px;
}

.choose-left .info-box h6 {
  font-size: 20px;
  line-height: 1.4;
}

.choose-right {
  position: relative;
}

.choose-right .choose-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.choose-right .choose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.choose-right .choose-img:hover img {
  transform: scale(1.05);
}

.rating-card {
  width: 100%;
  position: absolute;
  left: -32px;
  bottom: -32px;
  max-width: 250px;
  background-color: var(--white-color);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.rating-stars {
  display: flex;
  gap: 5px;
}

.rating-stars i {
  color: #fdc700;
}

.rating-value {
  margin-left: 6px;
}

.rating-card p {
  font-size: 16px;
  margin-top: 8px;
}

/* choose-sec css end */
/* cities-sec css start */
.cities-sec {
  padding: 96px 0;
  position: relative;
  width: 100%;
}

.section-title {
  text-align: center;
  max-width: 671px;
  margin: auto;
  margin-bottom: 64px;
}

.section-title h2 {
  margin-bottom: 16px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cities-grid .city-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  overflow: hidden;
}

.cities-grid .city-card.big-card {
  grid-row: span 2 / span 2;
  grid-column: span 2 / span 2;
}

.cities-grid .city-card>a {
  width: 100%;
  height: 100%;
  display: block;
}

.cities-grid .city-card .city-card-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.cities-grid .city-card .city-card-img::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 220px;
  background: linear-gradient(-180deg, #00000000, var(--black-color));
  z-index: 1;
  opacity: 0.8;
}

.cities-grid .city-card .city-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: 0.3s;
}

.cities-grid .city-card:hover .city-card-img img {
  transform: scale(1.05);
}

.cities-grid .city-card .city-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  text-align: left;
  z-index: 3;
  left: 0;
}

.cities-grid .city-card .city-content h3 {
  color: var(--white-color);
}

.cities-grid .city-card .city-content p {
  color: var(--light-white);
  font-size: 16px;
}

/* cities-sec css end */
/* testimonial-sec css start */
.testimonial-sec {
  padding: 96px 0 56px;
  background-color: var(--light-white);
  width: 100%;
  position: relative;
}

.testimonial-slide-ouetr {
  width: calc(100% + 24px);
}

/* .testimonial-slide-ouetr .testimonial-slide-card { padding: 12px; }  */
.testimonial-slide-ouetr .slick-track {
  display: flex;
  gap: 24px;
}

.testimonial-slide-ouetr .testimonial-slide-card {
  padding: 28px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.testimonial-slide-ouetr .testimonial-slide-card .slide-card-inner {
  width: 100%;
  height: 100%;
}

.testimonial-slide-ouetr .testimonial-slide-card .quote-icon {
  font-size: 34px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.testimonial-slide-ouetr .testimonial-slide-card .testimonial-desc {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-color);
}

.testimonial-slide-ouetr .testimonial-slide-card .rating-stars {
  font-size: 12px;
  margin: 30px 0 20px;
}

.testimonial-user {
  padding: 20px 0 0;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--light-white);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-user .user-details h4 {
  font-size: 18px;
}

.testimonial-user .user-details p {
  font-size: 14px;
  color: var(--text-color);
}

/* testimonial-sec css end */
/* own-property css start */
.own-property-sec {
  width: 100%;
  padding: 96px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/prop-12.jpg);
}

.own-property-sec::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: var(--primary-color);
  mix-blend-mode: multiply;
  opacity: 0.7;
}

.own-property-sec .container {
  position: relative;
  z-index: 9;
}

.own-inner-row .own-contant {
  padding: 48px;
  text-align: center;
  max-width: 768px;
  margin: auto;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.own-inner-row .own-contant h2 {
  color: var(--white-color);
  margin-bottom: 24px;
  font-size: 48px;
}

.own-inner-row .own-contant p {
  font-size: 20px;
  color: var(--white-color);
  line-height: 1.625;
  margin-bottom: 40px;
}

.own-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* own-property css end */
/* filter css start */
/* .filter-sidebar { width: 100%; background: var(--white-color); border-radius: 20px; padding: 24px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); border: 1px solid #e9ecef; } .filter-sidebar h5 { font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; } .filter-group { margin-bottom: 16px; } .group-label { display: block; font-size: 14px; font-weight: 600; color: #222; margin-bottom: 10px; } .filter-sidebar input, .filter-sidebar select { width: 100%; height: 40px; border: 1px solid #dcdcdc; border-radius: 12px; padding: 0 14px; font-size: 14px; background: var(--white-color); outline: none; transition: 0.3s ease; } .filter-sidebar input:focus, .filter-sidebar select:focus { border-color: var(--primary-color); box-shadow: 0 0 0 4px rgba(18, 139, 126, 0.12); } .price-row { display: flex; gap: 10px; } .price-row input { width: 50%; } .check-list { display: flex; flex-direction: column; gap: 10px; } .check-list label { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #333; cursor: pointer; } .check-list input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary-color); cursor: pointer; } .btn-apply-filter { width: 100%; height: 44px; border: none; border-radius: 14px; background: var(--primary-color); color: var(--white-color); font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.3s ease; margin-top: 10px; } .btn-apply-filter:hover { background: #0f7469; transform: translateY(-2px); } .btn-clear-filter { width: 100%; padding: 14px; border-radius: 14px; background: #f5f5f5; color: #222; font-size: 14px; font-weight: 600; margin-top: 12px; transition: 0.3s ease; } .btn-clear-filter:hover { background: #e9ecef; } */
/* filter css end */
/*  */
.page-hero,
.about-hero {
  background: linear-gradient(135deg, #0d3430 0%, var(--primary-color) 100%) !important;
  padding: 108px 0 64px !important;
  text-align: center;
  color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.dashboard-hero {
  padding: 108px 0 64px !important;
}

.text-center {
  text-align: center;
}

.page-hero__label {
  display: inline-block;
  background-color: var(--secondeary-color);
  color: var(--light-white);
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 1rem;
}

.page-hero__title,
.about-hero__title {
  color: var(--white-color);
  margin-bottom: 0.875rem;
}

.page-hero__desc,
.about-hero__subtitle {
  color: var(--light-white);
  max-width: 540px;
  margin: 0 auto;
}

.detail-page-banner h1.page-hero__title {
  font-size: 40px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15%;
  padding-right: 15%;
}

.detail-page-banner h1.page-hero__title:last-child {
  margin-bottom: 0;
}

/*  */
/* LISTINGS  PAGE  css start*/
.listings-page {
  background-color: var(--light-white);
}

.listings-main {
  padding: 60px 0;
  flex: 1;
}

.listings-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.listings-header__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}

.listings-header__count {
  color: var(--black-color);
  font-size: 0.9375rem;
}

.listings-header__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.listings-header__filter-btn {
  display: none;
}

.listings-header__sort {
  min-width: 270px;
  width: 100%;
  padding: 12px 20px 12px 20px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background-color: var(--white-color);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  line-height: 24px;
  letter-spacing: 0.1px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  outline: none;
}

.listings-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
}

.listings-sidebar {
  background: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.filter-group__title {
  color: var(--secondeary-color);
  margin-bottom: 7px;
  font-size: 16px;
}

.filter-group__head .filter-group__title {
  margin-bottom: 0;
}

.filter-group input.range-slider {
  width: 100%;
}

.filter-group__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.filter-group__range-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 14px;
  color: var(--secondeary-color);
}

.purpose-toggle {
  display: flex;
  background-color: var(--light-white);
  padding: 4px;
  border-radius: 30px;
  gap: 8px;
}

.purpose-toggle__btn {
  flex: 1;
  padding: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black-color);
  transition: all 0.15s;
  background: none;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.purpose-toggle__btn--active {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--black-color);
  cursor: pointer;
  user-select: none;
  padding: 0 !important;
}

.bhk-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bhk-pill {
  cursor: pointer;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--black-color);
  transition: all 0.15s;
  background: none;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background-color: var(--light-white);
}

.bhk-pill--active {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.empty-state {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 64px 32px;
  text-align: center;
}

.empty-state__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: var(--light-white);
  color: var(--black-color);
  border-radius: 50%;
  margin-bottom: 12px;
}

.empty-state__title {
  font-size: 18px;
  margin-bottom: 6px;
}

.empty-state__desc {
  color: var(--black-color);
  margin-bottom: 10px;
  font-size: 14px;
}

.listings-layout .btn {
  text-align: center;
}

/* ============================================ 19. FILTER DRAWER (MOBILE) ============================================ */
.filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.filter-drawer.is-open {
  display: block;
}

.filter-drawer__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
}

.filter-drawer__content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 88%;
  max-width: 360px;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
}

.filter-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.filter-drawer__title {
  font-size: 1.125rem;
  font-weight: 700;
}

.filter-drawer__close {
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.filter-drawer__body {
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

/* blog-page css start */
.blog-main-outer {
  position: relative;
  padding: 64px 0 64px;
  z-index: 1;
  background-color: var(--light-white);
}

.blog-inner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}

.blog-inner-row>article {
  width: calc(100% / 3 - 60px / 3);
  padding: 0 30px 30px;
  background: var(--white-color);
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, .03);
  border-radius: 14px;
}

.blog-inner-row .entry-header {
  display: flex;
  flex-direction: column;
  width: calc(100% + 60px);
  margin-left: -30px;
}

.blog-inner-row>article .entry-title {
  padding: 0 30px;
  margin-bottom: 15px;
}

.blog-inner-row>article .entry-title,
.blog-inner-row>article .entry-title a {
  font-size: 22px !important;
  line-height: 1.4 !important;
  transition: 0.3s;
  color: var(--secondeary-color);
}

.blog-inner-row>article .entry-title:hover,
.blog-inner-row>article .entry-title a:hover {
  color: var(--primary-color);
}

.blog-inner-row .entry-header .post-thumbnail {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.blog-inner-row .entry-content {
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-inner-row .entry-content p {
  color: var(--text-color);
}

.blog-inner-row .entry-header .blog-meta {
  padding: 0 30px;
  margin-bottom: 12px;
}

.archive .blog-main-outer,
.single-outer-wrapper {
  padding: 160px 0 60px;
}

.archive .page-header {
  width: 100%;
}

.single-outer-wrapper h1.entry-title,
.single-outer-wrapper h1.page-title,
.blog-main-outer h1.entry-title,
.blog-main-outer h1.page-title {
  width: 100%;
  font-size: 40px;
  font-weight: 800;
  line-height: 43px;
}

.single-page-banner {
  text-align: center;
  padding: 46px 0 71px;
}

.single-page-banner .posted-by {
  display: inline-flex;
  gap: 7px;
}

.single-page-banner .entry-footer {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.single-page-banner .posted-by a,
.single-page-banner .post-taxonomies a {
  color: var(--primary-color);
}

.single-inner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
}

.single-inner-row .single-left {
  width: calc(100% - 360px);
}

.blog-sidebar {
  width: 330px;
}

.single-inner-row .single-left .post-thumbnail,
.single-inner-row .single-left .post-thumbnail img {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 14px;
  margin-bottom: 10px;
}

.blog-sidebar #sidebar>ul,
.not-found .search-form {
  margin-bottom: 30px;
  padding: 18px;
  background-color: var(--white-color);
  box-shadow: 0 0 19px 0px #00000014;
  border-radius: 12px;
}

.blog-sidebar .search-form,
.not-found .search-form {
  width: 100%;
}

.blog-sidebar .search-form label,
.not-found .search-form label,
.blog-sidebar #sidebar>ul li.categories h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

.blog-sidebar .search-form input[type="search"],
.not-found .search-form input[type="search"] {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid;
  border-radius: 5px;
  outline: none;
  background: rgba(0, 0, 0, 0);
}

.search-form .search-submit,
.not-found .search-submit {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 13px 27px;
  line-height: normal;
  display: inline-block;
  border-radius: 5px;
  color: var(--primary-color);
  transition: all .4s ease-in-out;
  background-color: transparent;
  background-image: linear-gradient(90deg, var(--primary-color) -20%, var(--secondeary-color) 115%);
  cursor: pointer;
  border: 0;
  outline: none;
  margin-top: 15px;
}

.not-found .search-form {
  margin: 0;
  max-width: 320px;
  margin: auto;
  text-align: center;
}

.blog-sidebar li.pagenav,
.blog-sidebar #sidebar>ul:last-child,
.blog-sidebar #sidebar>ul[role="navigation"]>li {
  display: none;
}

.blog-sidebar #sidebar>ul li.categories {
  display: block;
}

.blog-sidebar #sidebar>ul li.categories ul .cat-item {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 5px;
  color: var(--secondeary-color);
}

.blog-sidebar #sidebar>ul li.categories ul .cat-item a {
  color: inherit;
}

.blog-sidebar #sidebar>ul li.categories ul .cat-item a:hover {
  color: var(--primary-color);
}

.search .single-page-banner {
  padding: 0;
}

.single-outer-wrapper .post .entry-content h3 {
  margin-bottom: 15px;
}

.single-outer-wrapper .post .entry-content ul,
.single-outer-wrapper .post .entry-content ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

.single-outer-wrapper .post .entry-content ul li {
  list-style: disc;
}

.single-outer-wrapper .post .entry-content ol li {
  list-style: decimal;
}

.single-outer-wrapper .post .entry-content p img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 15px;
}

.single-outer-wrapper .post .entry-content a {
  color: var(--primary-color);
}

blockquote {
  margin-bottom: 30px;
  background-color: var(--light-white);
  box-shadow: 0 0 19px 0px #00000014;
  border-radius: 12px;
  position: relative;
  padding: 32px 0 28px;
  text-align: center;
}

blockquote:before {
  content: "";
  width: 37px;
  height: 37px;
  z-index: 2;
  position: relative;
  display: block;
  background-image: url(https://2xdigital.in/wp-content/uploads/2026/04/quote.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 17px;
}

.post-navigation {
  margin-top: 20px;
}

.not-found .page-content p {
  text-align: center;
}

.error404 .single-page-banner {
  padding: 0;
  margin-bottom: 20px !important;
}

.no-results.not-found {
  padding: 160px 0 60px;
  text-align: center;
}

.no-results.not-found h1.page-title {
  font-size: 40px;
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-color);
}

/* blog-page css end */
/* listing-details css start */
/* ============================================ 20. PROPERTY DETAIL PAGE ============================================ */
.detail-page {
  background-color: var(--light-white);
}

.detail-main {
  padding-top: 60px;
  padding-bottom: 60px;
  flex: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 24px;
  color: var(--black-color);
}

.breadcrumb__link {
  color: var(--black-color);
  transition: color 0.15s;
}

.breadcrumb__link:hover {
  color: var(--primary-color);
}

.breadcrumb__current {
  color: var(--text-color);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 240px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.gallery__main {
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--white-color);
}

.gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.gallery__thumb {
  height: 90px;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid transparent;
  transition: border-color 0.15s, transform 0.15s;
  padding: 0;
  background: none;
  cursor: pointer;
}

.gallery__thumb:hover {
  transform: scale(1.02);
}

.gallery__thumb--active {
  border-color: var(--primary-color);
}

.gallery__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}

.property-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.property-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.featured-badge {
  background-color: var(--white-color);
  color: var(--primary-color);
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.property-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.625rem;
  color: var(--secondeary-color);
}

.property-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black-color);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.property-location svg {
  color: var(--primary-color);
}

.property-price {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background-color: var(--white-color);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.fact-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--light-white);
  color: var(--primary-color);
  border-radius: 14px;
  flex-shrink: 0;
}

.fact-item__label {
  font-size: 0.75rem;
  color: var(--black-color);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.125rem;
}

.fact-item__value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--secondeary-color);
}

.tabs-container {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

.tabs-list {
  display: flex;
  border-bottom: 1px solid var(--border-color);
}

.tabs-list::-webkit-scrollbar {
  display: none;
}

.tabs-trigger {
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--black-color);
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}

.tabs-trigger:hover {
  color: var(--secondeary-color);
}

.tabs-trigger--active {
  color: var(--primary-color) !important;
  border-bottom-color: var(--primary-color) !important;
}

.tabs-content {
  padding: 1.75rem;
}

.tab-pane {
  display: none;
}

.tab-pane.is-active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tab-pane p {
  color: var(--text-color);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background-color: var(--white-color);
  border-radius: 18px;
  font-size: 0.9375rem;
}

.amenity-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--light-white);
  color: var(--primary-color);
  border-radius: 18px;
  flex-shrink: 0;
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.details-list__row {
  display: flex;
  justify-content: space-between;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9375rem;
}

.details-list__row:last-child {
  border-bottom: none;
}

.details-list__row dt {
  color: var(--black-color);
}

.details-list__row dd {
  color: var(--secondeary-color);
  font-weight: 600;
}

.location-map {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
}

.location-map__bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(37, 99, 235, 0.08) 0px, rgba(37, 99, 235, 0.08) 1px, transparent 1px, transparent 40px), repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.08) 0px, rgba(37, 99, 235, 0.08) 1px, transparent 1px, transparent 40px), linear-gradient(135deg, #DBEAFE 0%, #E0F2FE 50%, #ECFEFF 100%);
}

.location-map__marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--secondeary-color);
  background-color: var(--white-color);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.location-map__marker svg {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.location-map__marker strong {
  font-size: 1rem;
}

.location-map__marker span {
  font-size: 0.8125rem;
  color: var(--black-color);
}

.location-map__note {
  margin-top: 1rem;
  color: var(--black-color);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.agent-sidebar-wrapper {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.agent-card {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.agent-card__heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black-color);
}

.agent-card__info {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.agent-card__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.agent-card__name {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
}

.agent-card__role {
  font-size: 0.875rem;
  color: var(--black-color);
  margin-bottom: 0.375rem;
}

.agent-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.agent-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.agent-card__footer {
  font-size: 0.75rem;
  color: var(--black-color);
  text-align: center;
  line-height: 1.5;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.similar-properties {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.similar-properties__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.agent-card__actions .btn {
  text-align: center;
}

/* listing-details css ned */
/* about page css start */
/* Story Section */
.story-section {
  padding: 80px 0;
  background: var(--white-color);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b101f;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.story-content .subtitle {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.story-content p {
  color: #4a5565;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}

.story-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.story-image:hover img {
  transform: scale(1.05);
}

/* Mission Vision Section */
.mission-vision {
  background: #f7fafc;
  padding: 80px 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background: var(--white-color);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mv-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #128b7e 0%, #0e6b60 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.mv-icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b101f;
  margin-bottom: 15px;
}

.mv-card p {
  color: #4a5565;
  line-height: 1.7;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: var(--white-color);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .subtitle {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b101f;
  margin-bottom: 15px;
}

.section-header p {
  color: #4a5565;
  max-width: 600px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 30px;
  border-radius: 16px;
  background: var(--white-color);
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(18, 139, 126, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: #e6f7f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.value-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b101f;
  margin-bottom: 10px;
}

.value-card p {
  color: #4a5565;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  background: #f7fafc;
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--white-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b101f;
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f0faf9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s;
}

.team-social a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* CTA Section */
.about-cta {
  background-color: var(--light-white);
  padding: 100px 0;
  text-align: center;
}

.about-cta h2 {
  color: var(--secondeary-color);
  margin-bottom: 15px;
}

.about-cta p {
  color: var(--text-color);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-cta-primary {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
  background: transparent;
  border: 2px solid var(--secondeary-color);
  color: var(--secondeary-color);
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-cta-secondary:hover {
  background: var(--secondeary-color);
  color: var(--white-color);
}

/* about page css end */

.section-header {
  margin-bottom: 10px !important;
}

/* footer-css start */
.footer {
  z-index: 9;
  width: 100%;
  padding: 64px 0 32px 0;
  position: relative;
  background-color: var(--secondeary-color);
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 40px;
}

.footer .footer-grid .footer-about {
  grid-column: span 2 / span 2;
}

.footer .footer-grid .logo {
  width: 100%;
  margin-bottom: 24px;
}

.footer .footer-grid .logo a {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
.footer .footer-grid .logo .logo-img {
  max-width: 241px;
}

.footer .footer-grid .logo .logo-icon {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.footer .footer-grid .logo .logo-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--white-color);
  letter-spacing: -0.32px;
}

.footer p {
  color: #99a1af;
}

.footer .footer-grid .footer-about p {
  font-size: 16px;
  max-width: 384px;
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

.social-icons li a {
  padding: 8px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  color: var(--white-color);
  background-color: #ffffff0d;
}

.footer .footer-grid .footer-col h4 {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--white-color);
}

.footer-menu li a {
  font-size: 16px;
  margin-bottom: 16px;
  display: inline-block;
  color: #99a1af;
  transition: 0.3s;
}

.footer-menu li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  padding: 32px 0 0;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #99a1af;
  margin-top: 64px;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 14px;
}

.footer-bottom .bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom .bottom-links a {
  color: #99a1af;
}

.footer-bottom .bottom-links a:hover {
  color: var(--primary-color);
}

/* footer-css end */
.user-dd-menu {
  top: calc(100% + 0px) !important;
}

.user-av-btn i {
  color: var(--white-color) !important;
}

.main-header.fixed .user-av-btn i {
  color: var(--black-color) !important;
}

.hero-banner .hero-content .sub-title {
  display: none;
}

.map-sec iframe {
  width: 100%;
  height: 530px;
}

/* responsive css start */
@media (max-width:1199px) {
  h1 {
    font-size: 62px;
  }

  .btn.btn-white,
  .btn.btn-trans {
    padding: 14px 26px;
    font-size: 14px;
    line-height: 22px;
  }

  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:1024px) {
  .main-nav {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--secondeary-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 30px 0;
    gap: 20px;
    display: none;
  }

  .main-nav .menu-outer {
    gap: 0;
    flex-direction: column;
    width: 100%;
  }

  .main-nav .menu-outer li a {
    padding: 10px 20px;
    display: block;
    font-size: 17px;
    color: var(--white-color) !important;
    border-bottom: 1px solid var(--border-color);
  }

  .main-nav .menu-outer li a:hover {
    background-color: var(--primary-color);
  }

  .main-nav .nav-buttons {
    padding: 0 20px;
    margin-top: 20px;
  }

  .menu-toggle {
    cursor: pointer;
    display: block;
    background-color: var(--primary-color);
    padding: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    gap: 6px;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: var(--white-color);
    transition: 0.4s;
  }

  /* X animation */
  .menu-toggle.active-menu span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active-menu span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .search-form .field.location-field {
    min-width: 190.98px;
  }

  .consultation-inner>div {
    width: 100%;
  }

  .projects-sec,
  .testimonial-sec {
    padding: 64px 0 34px;
  }

  .featured-sec,
  .inquiry-sec,
  .choose-sec,
  .cities-sec,
  .own-property-sec {
    padding: 64px 0;
  }

  .inquiry-sec .inquiry-inner-row>div {
    width: 100%;
  }

  .inquiry-sec .inquiry-inner-row {
    gap: 30px;
  }

  .choose-inner-row>div {
    width: 100%;
  }

  .choose-inner-row {
    gap: 40px;
  }

  .rating-card {
    left: 30px;
    bottom: -22px;
  }

  .section-title {
    margin-bottom: 34px;
  }

  .cities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .own-inner-row .own-contant h2 {
    margin-bottom: 20px;
    font-size: 38px;
  }

  .own-inner-row .own-contant p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .own-btns {
    flex-wrap: wrap;
  }

  .filter-sidebar {
    max-width: 100%;
    position: relative;
    top: 0;
    padding: 20px;
  }

  .blog-inner-row>article {
    width: calc(100%/2 - 30px/2);
  }

  .single-inner-row .single-left {
    width: 100%;
  }

  .blog-sidebar {
    width: 100%;
  }

  .archive .blog-main-outer,
  .single-outer-wrapper {
    padding: 110px 0 50px;
  }

  .single-page-banner {
    text-align: center;
    padding: 26px 0 41px;
  }

  .no-results.not-found {
    padding: 110px 0 50px;
  }

  .no-results.not-found h1.page-title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .listings-layout {
    grid-template-columns: 1fr;
  }

  .listings-sidebar {
    display: none;
  }

  .listings-header__filter-btn {
    display: inline-flex;
  }

  .property-layout {
    grid-template-columns: 1fr;
  }

  .agent-sidebar-wrapper {
    position: static;
  }


  .story-grid,
  .mv-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-content h2,
  .section-header h2 {
    font-size: 1.8rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta {
    background-color: var(--light-white);
    padding: 70px 0;
    text-align: center;
  }

  .breadcrumb-nav {
    text-align: center !important;
  }

  .section-header {
    margin-bottom: 20px !important;
  }
}

@media (max-width:767px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

  P {
    font-size: 16px;
  }

  .search-form {
    display: flex;
    gap: 16px;
    padding: 20px;
    flex-direction: column;
  }

  .search-form .field input,
  .search-form .field select {
    padding: 9px 12px 9px 34px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 22px;
  }

  .search-form .field-inner .field-icon {
    left: 9px;
    top: 12px;
    font-size: 14px;
  }

  .hero-text p {
    font-size: 18px;
    margin: 0 0px;
    line-height: 28px;
  }

  .hero-text {
    margin-bottom: 30px;
  }

  .sub-title {
    padding: 5px 13px;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 8px;
  }

  .stats-outer .stat-item {
    border-radius: 12px;
    padding: 10px;
  }

  .stats-outer .stat-item .counter-num {
    font-size: 20px;
  }

  .stats-outer {
    gap: 8px;
    margin-top: 28px;
  }

  .stats-outer .stat-item p {
    font-size: 13px;
  }

  .consultation-inner .left-content h2 {
    margin-bottom: 10px;
  }

  .consultation-inner .left-content p {
    margin-bottom: 20px;
  }

  .property-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .featured-header {
    margin-bottom: 30px;
  }

  .projects-top-row {
    margin-bottom: 30px;
  }

  .testimonial-slide-ouetr {
    width: 100%;
  }

  .testimonial-slide-ouetr .slick-track {
    display: flex;
    gap: 0;
  }

  .own-inner-row .own-contant {
    padding: 34px;
  }

  .own-inner-row .own-contant h2 {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .own-inner-row .own-contant p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .own-btns {
    gap: 10px;
  }

  .btn.btn-white,
  .btn.btn-trans {
    width: 100%;
  }

  .footer .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .footer .footer-grid .footer-about p {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .footer-bottom {
    padding: 22px 0 0;
    gap: 10px;
    margin-top: 14px;
    flex-direction: column;
  }

  .price-row {
    flex-direction: column;
  }

  .price-row input {
    width: 100%;
  }

  .filter-sidebar {
    border-radius: 16px;
    padding: 14px;
  }

  .filter-sidebar input,
  .filter-sidebar select {
    height: 40px;
  }

  .btn-apply-filter {
    height: 40px;
  }

  .single-outer-wrapper h1.entry-title,
  .single-outer-wrapper h1.page-title,
  .blog-main-outer h1.entry-title,
  .blog-main-outer h1.page-title {
    font-size: 30px;
    line-height: 33px;
  }

  .single-page-banner .entry-footer {
    margin-top: 10px;
    font-size: 14px;
    gap: 8px;
  }

  .no-results.not-found h1.page-title {
    font-size: 30px;
  }

  .blog-inner-row>article {
    width: 100%;
  }

  .archive .blog-main-outer,
  .single-outer-wrapper {
    padding: 80px 0 30px;
  }

  .single-page-banner .entry-footer {
    gap: 2px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: anchor-center;
  }

  .no-results.not-found {
    padding: 80px 0 30px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__main {
    height: 280px;
  }

  .gallery__thumb {
    height: 60px;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-page-banner h1.page-hero__title {
    font-size: 24px;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }

  .story-section,
  .mission-vision,
  .values-section,
  .team-section {
    padding: 50px 0;
  }

  .cta-buttons {
    align-items: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .map-sec iframe {
    width: 100%;
    height: 420px;
  }

}

@media (max-width:640px) {
  .tabs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .facts-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .tabs-trigger {
    border-right: 0.5px solid var(--border-color);
    border-bottom: 0.5px solid var(--border-color);
  }
}

@media (max-width:480px) {
  .right-cards .card-inner {
    width: 100%;
    padding: 18px;
  }

  .consultation-btns {
    gap: 12px;
    flex-direction: column;
  }

  .project-slider .slick-arrow {
    display: none !important;
  }

  .projects-top-row {
    padding-right: 0px;
  }

  .project-card .project-content .projects-details {
    gap: 10px;
  }

  .project-card .project-content .projects-details li .details-icon {
    font-size: 12px;
  }

  .project-card .project-content .projects-details li p {
    font-size: 11px;
  }

  .project-card .project-content .projects-details li {
    padding: 9px;
  }

  .inquiry-right {
    padding: 30px;
    border-radius: 16px;
  }

  .form-inner-row .input-row {
    gap: 0;
    width: 100%;
    flex-direction: column;
  }

  .form-inner-row .input-row .filed-col input,
  .form-inner-row .input-row .filed-col select,
  .form-inner-row .input-row .filed-col textarea {
    padding: 10px 20px 10px 20px;
    font-size: 14px;
    line-height: 22px;
  }

  .inquiry-right .form-title-col p {
    font-size: 14px;
  }

  .cities-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .cities-grid .city-card.big-card {
    grid-row: span 1 / span 1;
    grid-column: span 1 / span 1;
  }

  .listings-header__sort {
    min-width: auto;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* responsive css end */
.slick-dots li button:before {
  display: none !important;
}