@import url(helper.css);
@font-face {
  font-family: "lama-bold";
  src: url(../fonts/lama/LamaSans-Bold.woff2);
}
@font-face {
  font-family: "lama";
  src: url(../fonts/lama/LamaSans-Regular.woff2);
}
@font-face {
  font-family: "lama-thin";
  src: url(../fonts/lama/LamaSans-Thin.woff2);
}
.font-b {
  font-family: "lama-bold";
}

.font-r {
  font-family: "lama";
}

.font-t {
  font-family: "lama-thin";
}

*,
* button:focus {
  outline: 0;
}

:root {
  --brown: #A16247;
  --darkgreen: #003D3B;
  --textColor: #243227;
  --light1: #FAF8F5;
}

.cr-brown {
  color: var(--brown) !important;
}

.bg-brown {
  background-color: var(--brown) !important;
  border-color: var(--brown) !important;
  color: #fff !important;
}

.border-brown {
  border-color: var(--brown) !important;
}

.hover-brown:hover {
  color: var(--brown);
}

.hover-bg-brown:hover {
  background-color: var(--brown);
  border-color: var(--brown);
  color: #fff !important;
}

.cr-darkgreen {
  color: var(--darkgreen) !important;
}

.bg-darkgreen {
  background-color: var(--darkgreen) !important;
  border-color: var(--darkgreen) !important;
  color: #fff !important;
}

.border-darkgreen {
  border-color: var(--darkgreen) !important;
}

.hover-darkgreen:hover {
  color: var(--darkgreen);
}

.hover-bg-darkgreen:hover {
  background-color: var(--darkgreen) !important;
  border-color: var(--darkgreen) !important;
  color: #fff !important;
}

.shadow-1 {
  box-shadow: 0px 7px 15px rgba(161, 98, 71, 0.4);
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

html::-webkit-scrollbar {
  height: 5px;
  width: 5px;
  background: rgba(255, 255, 255, 0);
  border-radius: 0;
}

html::-webkit-scrollbar-thumb {
  background: var(--brown);
  border-radius: 5px;
}

html::-webkit-scrollbar-corner {
  background: var(--brown);
  border-radius: 5px;
}

body {
  font-family: "lama";
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  background-color: var(--light1);
  color: var(--textColor);
  direction: rtl;
}

section {
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "lama-bold";
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
  font-kerning: none;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

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

[type=email],
[type=number],
[type=tel],
[type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.object-top {
  -o-object-position: top;
     object-position: top;
}

.object-bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

.dnf-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.df-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

.section-padding {
  padding: 100px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* --------------- swiper-pagination --------------- */
.swiper-pagination {
  bottom: 0;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}
.swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--brown);
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- butn --------------- */
.butn {
  position: relative;
  padding: 10px 20px;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: capitalize;
  border: 0;
  overflow: hidden;
  font-size: 12px;
  z-index: 2;
}
.butn:hover {
  box-shadow: 7px 10px 15px rgba(24, 25, 27, 0.1333333333);
  transform: translateY(-2px);
}
.butn.butn-grad1 {
  color: #fff;
}
.butn.butn-grad1::before {
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  width: 200%;
  height: 100%;
  background: var(--grad1);
  transition: all 0.4s ease;
  z-index: -1;
}
.butn.butn-grad1:hover::before {
  left: 0;
}
.butn.butn-white {
  background: #fff;
  color: var(--cr-main);
}
.butn.butn-white:hover {
  background-color: var(--cr-main);
  color: #fff;
}
.butn.butn-border {
  background-color: #fff;
  border: 1px solid var(--cr-main);
  color: var(--cr-main);
}
.butn.butn-border:hover {
  background-color: var(--cr-main);
  border-color: var(--cr-main);
  color: #fff;
}
.butn.butn-border-light {
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--cr-main);
}
.butn.butn-border-light:hover {
  background-color: var(--cr-main);
  border-color: var(--cr-main);
  color: #fff;
}
.butn.md-butn {
  padding: 12px 25px;
  font-size: 13px;
}
.butn.blur-wh-butn {
  background-color: rgba(255, 255, 255, 0.0666666667);
  backdrop-filter: blur(10px);
}
.butn.hvr-scale:hover {
  transform: scale(1.1);
}
.butn.hvr-txt-trans {
  position: relative;
  overflow: hidden;
}
.butn.hvr-txt-trans .txt {
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}
.butn.hvr-txt-trans .txt::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 100%);
  transition: opacity 0.3s, transform 0.3s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  white-space: nowrap;
}
.butn.hvr-txt-trans .txt span {
  transition: all 0.4s ease;
}
.butn.hvr-txt-trans:hover .txt span {
  transform: translateY(-150%);
  opacity: 0;
}
.butn.hvr-txt-trans:hover .txt::after {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* --------------- navbar --------------- */
.navbar {
  position: relative;
  padding: 15px 0;
}
.navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
    margin: 0 10px;
}
.navbar .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--brown);
}
.navbar.inner-navbar {
  position: relative;
  padding: 20px 0;
}
.navbar.inner-navbar .container {
  position: relative;
  background-color: rgba(161, 98, 71, 0.0666666667);
  border-radius: 15px;
  padding: 15px;
}

.navbar .nav-side .butn {
    padding: 0.7rem 1rem;
    font-size: 12px;
}


/* Fixed Navbar on Scroll */
.navbar.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    backdrop-filter: blur(10px);
    background-color: #ffffffab;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: navbarSlideDown 0.35s ease forwards;
    z-index: 999;
}

.navbar.is-fixed .container {
    background-color: transparent;
}

@keyframes navbarSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* --------------- header --------------- */
.hero {
  position: relative;
  border-radius: 40px;
  background-image: url(../images/hero.jpg);
  color: #fff;
  z-index: 10;
}
.hero::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, rgba(0, 61, 59, 0), #003D3B 60%);
  z-index: -1;
  border-radius: 40px;
}
.hero .info {
  position: relative;
  padding-top: 70px;
}
.hero .form-box {
  position: relative;
  bottom: -50px;
}
.hero .checks {
  position: relative;
  background-color: #fff;
  border-radius: 50px;
  padding: 5px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
}
.hero .checks .form-check {
  position: relative;
  display: flex;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  padding: 0;
}
.hero .checks .form-check .form-check-label {
  position: relative;
  padding: 7px 30px;
  border-radius: 50px;
  color: var(--textColor);
  cursor: pointer;
}
.hero .checks .form-check .form-check-input {
  display: none;
}
.hero .checks .form-check:has(:checked) .form-check-label {
  background-color: var(--brown);
  box-shadow: 0px 7px 15px rgba(161, 98, 71, 0.4);
  color: #fff;
}
.hero .checks.checks-st2 {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0;
  gap: 10px;
  padding-top: 15px;
  max-width: 100%;
}
.hero .checks.checks-st2 .form-check-label {
  border-radius: 10px;
  border: 1px solid rgba(161, 98, 71, 0.0666666667);
  background-color: rgba(161, 98, 71, 0.0196078431);
  padding: 10px 15px;
  font-size: 12px;
}
.hero .top-checks {
  position: relative;
  background-color: var(--darkgreen);
  border-radius: 14px;
  padding: 0 5px 8px;
  display: block;
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: -30px;
  z-index: 10;
}
.hero .top-checks::before {
  position: absolute;
  content: "";
  right: -20px;
  bottom: 10px;
  width: 20px;
  height: 20px;
  /* background-color: #003D3B; */
  border-top-left-radius: 20px;
  box-shadow: -5px -5px 0 5px var(--darkgreen);
  z-index: -1;
}
.hero .top-checks::after {
  position: absolute;
  content: "";
  left: -20px;
  bottom: 10px;
  width: 20px;
  height: 20px;
  /* background-color: #003D3B; */
  border-top-right-radius: 20px;
  box-shadow: 5px -5px 0 5px var(--darkgreen);
  z-index: -1;
}
.hero .form {
  position: relative;
  background-color: #fff;
  color: var(--textColor);
  border-radius: 30px;
  padding: 80px 40px 40px;
}
.hero .form-row {
  position: relative;
  gap: 20px;
}
.hero .icon-group {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(0, 61, 59, 0.0274509804);
  border: 1px solid rgba(0, 61, 59, 0.0666666667);
  border-radius: 10px;
  padding: 10px;
}
.hero .icon-group .icon {
  position: relative;
  width: 50px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-inline-end: 1px solid #dee2e6;
  margin-inline-end: 15px;
  font-size: 16px;
}
.hero .icon-group input,
.hero .icon-group select {
  position: relative;
  border: 0;
  background-color: transparent;
  width: 100%;
  font-size: 16px;
  padding: 0;
  box-shadow: none;
}
.hero .icon-group input::-moz-placeholder, .hero .icon-group select::-moz-placeholder {
  opacity: 0.3;
}
.hero .icon-group input::placeholder,
.hero .icon-group select::placeholder {
  opacity: 0.3;
}

.flip-scroll-st1 {
  transform: translateY(150px) rotateX(-35deg) scale(0.8);
  opacity: 0;
}

/* --------------- section-title --------------- */
.section-title {
  position: relative;
  text-align: center;
}
.section-title .sub-title {
  position: relative;
  padding: 8px 25px;
  display: inline-flex;
  align-items: center;
  color: var(--brown);
  background-color: rgba(161, 98, 71, 0.0666666667);
  border-radius: 50px;
}

/* --------------- numbers --------------- */
.numbers {
  position: relative;
}
.numbers .cards {
  position: relative;
}
.numbers .cards .col-lg-3:nth-of-type(even) .number-card {
  flex-direction: column-reverse;
  background-image: linear-gradient(to top, #fff, transparent);
  border-top: 0;
  border-bottom: 1px solid var(--darkgreen);
}
.numbers .numbers-slider .swiper-slide:nth-of-type(even) .number-card {
  flex-direction: column-reverse;
  background-image: linear-gradient(to top, #fff, transparent);
  border-top: 0;
  border-bottom: 1px solid var(--darkgreen);
}
.numbers .number-card {
  position: relative;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px 0;
  background-image: linear-gradient(to bottom, #fff, transparent);
  border-top: 1px solid var(--brown);
  text-align: center;
  margin-top: 30px;
}
.numbers .number-card .num {
  position: relative;
  font-size: 40px;
  font-weight: bolder;
}

/* --------------- properties --------------- */
.properties {
  position: relative;
}

.property-card {
  position: relative;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.02);
  border-radius: 30px;
  overflow: hidden;
  margin-top: 20px;
  transition: all 0.3s ease;
}
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.05);
}
.property-card .img {
  position: relative;
  height: 220px;
  display: block;
}
.property-card .img .disc {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: var(--brown);
  color: #fff;
  padding: 7px 15px;
  border-radius: 12px;
  font-size: 12px;
}
.property-card .img .fav-icon {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #000;
}
.property-card .img .fav-icon.active {
  background-color: var(--darkgreen);
  color: #fff;
}
.property-card .img .share-icon {
  position: absolute;
  left: 15px;
  top: 55px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #000;
  cursor: pointer;
  z-index: 10;
}
.property-card .img .share-icon:hover {
  background-color: var(--brown);
  color: #fff;
}
.share-tooltip {
  display: none;
  position: absolute;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 10px;
  z-index: 100;
  white-space: nowrap;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5px;
}
.share-icon.active .share-tooltip {
  display: flex;
  gap: 10px;
}
.share-tooltip a {
  color: #555;
  font-size: 16px;
  transition: color 0.3s;
}
.share-tooltip a:hover {
  color: var(--brown);
}

.share-icon {
  position: relative;
}
.project-det .share-tooltip {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 10px;
}
.property-card .info-content {
  padding: 25px 25px 20px;
}
.property-card .title {
  color: var(--textColor);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 58px  !important;
    overflow: hidden;
}
.property-card .location {
  color: #777;
  font-size: 14px;
}
.property-card .location .icon {
  color: var(--brown);
}
.property-card .current-price {
  color: var(--darkgreen);
  font-size: 24px;
  font-weight: bold;
}
.property-card .old-price {
  color: #777;
  font-size: 14px;
  text-decoration: line-through;
}
.property-card .saving-badge {
  background-color: rgba(161, 98, 71, 0.05);
  color: var(--brown);
  border: 1px solid rgba(161, 98, 71, 0.15);
  border-radius: 50px;
  font-size: 13px;
  padding: 6px 16px;
  font-weight: 600;
  display: inline-block;
}
.property-card .specs-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 25px;
}
.property-card .spec-item {
  color: #555;
  font-size: 13px;
  font-weight: 500;
}
.property-card .spec-item .icon {
  color: var(--textColor);
  opacity: 0.7;
}
.property-card .activity {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  background: linear-gradient(180deg, #A16247 0%, #BE490A 100%);
  box-shadow: 0px 7px 15px rgba(161, 98, 71, 0.4);
  color: #fff;
}

/* --------------- area --------------- */
.area {
  position: relative;
}
.area .main-card {
  position: relative;
  height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 30px;
  overflow: hidden;
  color: #fff;
  z-index: 5;
}
.area .main-card::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #243227;
  opacity: 0.5;
  z-index: -1;
}
.area .main-card .tag {
  position: relative;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.1333333333);
  font-size: 12px;
}
.area .main-card .activity {
  position: relative;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: var(--darkgreen);
  font-size: 12px;
}
.area .main-card .activity.hight {
  background: linear-gradient(180deg, #A16247 0%, #BE490A 100%);
  box-shadow: 0px 7px 15px rgba(161, 98, 71, 0.4);
}
.area .main-card .numbers {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(7.5px);
  border-radius: 10px;
  padding: 10px 0;
}
.area .main-card .numbers .item {
  position: relative;
  text-align: center;
  padding: 5px 30px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.2);
}
.area .main-card .numbers .item:last-of-type {
  border: 0;
}
.area .area-card {
  position: relative;
  padding: 25px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid rgba(107, 115, 111, 0.15);
  border-radius: 20px;
}
.area .area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: rgba(153, 153, 153, 0.3333333333);
}
.area .area-card .card-head .title {
  font-size: 22px;
  font-weight: 700;
}
.area .area-card .card-head .title .icon {
  font-size: 20px;
}
.area .area-card .activity {
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  white-space: nowrap;
}
.area .area-card .numbers {
  display: flex;
  background: #FBF8F5;
  border: 1px solid #F0EBE6;
  border-radius: 12px;
  padding: 15px 0;
}
.area .area-card .numbers .item {
  flex: 1;
  text-align: center;
  padding: 5px 12px;
  border-inline-end: 1px solid #E8E3DE;
}
.area .area-card .numbers .item:last-of-type {
  border: 0;
}
.area .area-card .numbers .item .val {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
}
.area .area-card.activity-mid::before {
  background-color: #ECD59C;
}
.area .area-card.activity-mid .activity {
  background-color: #ECD59C;
}
.area .area-card.activity-high::before {
  background-color: var(--brown);
}
.area .area-card.activity-high .activity {
  background-image: linear-gradient(180deg, #A16247 0%, #BE490A 100%);
  box-shadow: 0px 7px 15px rgba(161, 98, 71, 0.4);
  color: #fff;
}
.area .area-card.activity-low::before {
  background-color: var(--darkgreen);
}
.area .area-card.activity-low .activity {
  background-color: rgba(0, 61, 59, 0.1333333333);
  color: var(--darkgreen);
}

/* --------------- area card style 2 --------------- */
.area-st2 {
  position: relative;
  background-image: linear-gradient(to top, #fff, transparent);
}

.area-st2 .swiper-slide {
    /*max-height: 370px;*/
    height: auto;
}
.area-st2 .swiper-wrapper{
    height: fit-content;
}

.area-card-st2 {
  position: relative;
  display: flex;
  align-items: stretch;
  margin-top: 20px;
  overflow: hidden;
  color: var(--textColor);
  background: var(--light1);
  border: 1px solid rgba(190, 73, 10, 0.0666666667);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  height: 100% ;
}
.area-card-st2 .img {
  position: relative;
  flex: 0 0 48%;
    height: 345px;
    border-radius: 0 22px 22px 0;
    overflow: hidden;
}
.area-card-st2 .img .disc {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 20px;
  font-size: 12px;
  color: #fff;
  background-color: var(--brown);
  box-shadow: 0px 7px 15px rgba(161, 98, 71, 0.4);
  border-radius: 15px;
}
.area-card-st2 .img .disc.new {
  background-color: var(--darkgreen);
}
.area-card-st2 .img .fav-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}
.area-card-st2 .img .fav-icon.active {
  color: #fff;
  background-color: var(--darkgreen);
  border-color: var(--darkgreen);
}
.area-card-st2 .info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.area-card-st2 .card-head .tag {
  padding: 6px 14px;
  font-size: 12px;
  color: #555;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 30px;
}
.area-card-st2 .card-head .type {
  font-size: 13px;
  font-weight: 600;
}
.area-card-st2 .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
      display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 54px;
}
.area-card-st2 .title a {
  color: var(--textColor);
}
.area-card-st2 .location {
  font-size: 13px;
  color: #777;
}
.area-card-st2 .location .icon {
  color: var(--brown);
}
.area-card-st2 .specs-row {
  display: flex;
  padding: 12px 0;
  border: 1px solid rgba(190, 73, 10, 0.1333333333);
  border-radius: 12px;
}
.area-card-st2 .specs-row .spec-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  border-inline-end: 1px solid rgba(190, 73, 10, 0.1333333333);
}
.area-card-st2 .specs-row .spec-item:last-of-type {
  border: 0;
}
.area-card-st2 .specs-row .spec-item .icon {
  color: var(--textColor);
  opacity: 0.7;
}
.area-card-st2 .current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--darkgreen);
}
.area-card-st2 .card-foot .butn {
  padding: 12px 22px;
  color: var(--darkgreen);
}
@media screen and (max-width: 991.98px) {
  .area-card-st2 {
    flex-direction: column;
  }
  .area-card-st2 .img {
    flex: none;
    height: 220px;
  }
  
    .area-st2 .checks {
        flex-wrap: wrap;
    }
}

.slider-arrows {
  position: relative;
  width: 100px;
  display: inline-flex;
  gap: 10px;
}
.slider-arrows .swiper-button-prev,
.slider-arrows .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin: 0;
  background-color: #f0f0f0;
  transition: all 0.3s ease;
}
.slider-arrows .swiper-button-prev::after,
.slider-arrows .swiper-button-next::after {
  position: relative;
  color: var(--darkgreen);
  font-size: 16px;
}
.slider-arrows .swiper-button-prev:hover,
.slider-arrows .swiper-button-next:hover {
  background-color: var(--darkgreen);
}
.slider-arrows .swiper-button-prev:hover::after,
.slider-arrows .swiper-button-next:hover::after {
  color: #fff;
}

.checks {
  position: relative;
  display: flex;
  justify-content: flex-start;
  gap: 5px;
}
.checks .form-check {
  position: relative;
  padding: 0;
}
.checks .form-check .form-check-label {
  position: relative;
  padding: 8px 15px;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(161, 98, 71, 0.0666666667);
  background-color: rgba(161, 98, 71, 0.0666666667);
  border-radius: 8px;
}
.checks .form-check .form-check-label i {
  margin-inline-end: 10px;
}
.checks .form-check .form-check-input {
  display: none;
}
.checks .form-check:has(:checked) .form-check-label {
  background-color: var(--brown);
  color: #fff;
}

/* --------------- intermed --------------- */
.intermed {
  position: relative;
  background-image: linear-gradient(to bottom, #fff, transparent);
}

.intermed .form-group .form-control {
    font-weight: bold;
    color: var(--primary);
    font-size: 14px;
    background-color: rgba(231, 213, 205, 0.3294117647) !important;
    border-color: rgba(231, 213, 205, 0.3294117647);
    border-radius: 25px;
    padding-inline-end: 60px;
}
.intermed .form-group .icon {
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    inset-inline-end: 5px;
    top: 5px;
    color: rgba(0, 61, 59, 0.5098039216);
    border-radius: 25px !important;
    width: 50px;
    height: 50px !important;
    font-size: 18px;
}
.intermed .form-group .icon:hover {
    background-color: #8b533b !important;
    border-color:  #8b533b !important;
}

/* --------------- why-us --------------- */
.why-us {
  position: relative;
}
.why-us .body-box {
  position: relative;
  background-color: rgba(0, 61, 59, 0.0392156863);
  border-radius: 50px;
  z-index: 5;
}
.why-us .body-box::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/grad1-bg.png);
  background-size: cover;
  border-radius: 50px;
  z-index: -1;
}
.why-us .swiper-slide {
    height: auto;
}
.why-us .why-card {
  position: relative;
  margin-top: 24px;
  height: calc(100% - 24px);
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.why-us .why-card .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  background: #F9F1EF;
  border-radius: 12px;
  margin-bottom: 60px;
}
.why-us .why-card .icon-box .icon {
  color: var(--brown);
}
.why-us .why-card .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

/* --------------- testimonials --------------- */
.testimonials  .swiper-wrapper {
    height: fit-content;
}
.testimonials  .swiper-slide {
    height: auto;
}

.testi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  margin-top: 20px;
  margin-bottom: 25px;
  padding: 32px 32px 40px;
  background-color: #fff;
  border-radius: 30px;
  height: 100% ;
}
.testi-card .author {
  margin-top: auto;
  padding-top: 28px;
  padding-inline-end: 10px;
}
.testi-card .author .name {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
}
.testi-card .avatar-wrap {
  position: absolute;
  bottom: 20px ;
  inset-inline-end: 0;
  width: 100px;
  height: 100px;
  padding: 15px 15px 0;
  background-color: var(--light1);
  border-top-right-radius: 20px;
  z-index: 2;
}
.testi-card .avatar-wrap::before {
  position: absolute;
  content: "";
  left: 0;
  top: -30px;
  width: 30px;
  height: 30px;
  border-bottom-left-radius: 30px;
  box-shadow: -5px 5px 0 5px var(--light1);
  z-index: -1;
}
.testi-card .avatar-wrap::after {
  position: absolute;
  content: "";
  right: -30px;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-bottom-left-radius: 30px;
  box-shadow: -5px 5px 0 5px var(--light1);
  z-index: -1;
}

/* --------------- footer --------------- */
.footer {
  position: relative;
}
.footer .footer-box {
  position: relative;
  background-image: url(../images/foot-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  color: #fff;
  overflow: hidden;
  z-index: 5;
}
.footer .footer-box::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, var(--darkgreen) 60%, rgba(0, 61, 59, 0.6));
  z-index: -1;
}
.footer .footer-box .top-content {
  position: relative;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1333333333);
}
.footer .social-icons {
  position: relative;
  margin-top: 30px;
  display: flex;
  gap: 8px;
}
.footer .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.0666666667);
}
.footer .social-icons a:hover {
  background-color: var(--brown);
}
.footer .links-group {
  position: relative;
}
.footer .links-list {
  position: relative;
}
.footer .links-list a {
  margin: 5px 0;
  opacity: 0.7;
  color: #fff;
  
}
.footer .links-list a:hover {
  opacity: 1;
}
.footer .contact-side .contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .contact-side .contact-item {
  padding: 8px 18px 8px 14px;
  color: #fff;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1333333333);
  border: 1px solid rgba(255, 255, 255, 0.1333333333);
  border-radius: 15px;
  transition: all 0.3s ease;
}
.footer .contact-side .contact-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.footer .contact-side .contact-item .icon-box {
  flex-shrink: 0;
  margin-inline-end: 14px;
  padding-inline-end: 14px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .contact-side .contact-item .icon-box .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 15px;
}
.footer .contact-side .contact-item .txt {
  flex: 1;
  font-size: 14px;
  text-align: center;
  opacity: 0.9;
}

.footer .foot-links a {
    color: #fff ;
}
/* --------------- intermed-card --------------- */
.intermed-card {
  position: relative;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.intermed-card .img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  transition: top 1s cubic-bezier(0.22, 1, 0.36, 1), right 1s cubic-bezier(0.22, 1, 0.36, 1), left 1s cubic-bezier(0.22, 1, 0.36, 1), bottom 1s cubic-bezier(0.22, 1, 0.36, 1), width 1s cubic-bezier(0.22, 1, 0.36, 1), height 1s cubic-bezier(0.22, 1, 0.36, 1), border-radius 1s ease;
}
.intermed-card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.55s ease;
}
.intermed-card .hover-info {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 20px;
  background: #fff;
  border-radius: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease 0.05s, visibility 0.4s ease 0.05s;
}
.intermed-card .hover-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.intermed-card .hover-panel .top-row {
  display: flex;
  align-items: flex-start;
  min-height: 120px;
  gap: 15px;
}
.intermed-card .hover-panel .img-space {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.intermed-card .hover-panel .rate {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1s ease 0.5s, transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
  padding-top: 8px;
}
.intermed-card .hover-panel .rate .num {
  font-size: 22px;
  font-weight: 700;
  color: var(--textColor);
  line-height: 1;
}
.intermed-card .hover-panel .rate .stars {
  color: #E8B84A;
  font-size: 12px;
  margin-top: 6px;
  letter-spacing: 1px;
}
.intermed-card .hover-panel .details {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease 0.22s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
}
.intermed-card .hover-panel .name {
  font-size: 20px;
  font-weight: 700;
  color: var(--textColor);
  margin: 0 0 16px;
}
.intermed-card .hover-panel .stats {
  display: flex;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0 0 16px;
  padding: 14px 0;
}
.intermed-card .hover-panel .stats .item {
  flex: 1;
  text-align: center;
}
.intermed-card .hover-panel .stats .item:first-child {
  border-inline-end: 1px solid rgba(0, 0, 0, 0.08);
}
.intermed-card .hover-panel .stats .item .val {
  font-size: 26px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
}
.intermed-card .hover-panel .stats .item .lbl {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}
.intermed-card .hover-panel .butn {
  width: 100%;
  justify-content: center;
  background: #F3F4F4;
  color: var(--darkgreen);
  border: 1px solid transparent;
  padding: 12px 18px;
}
.intermed-card .hover-panel .butn:hover {
  background: var(--darkgreen);
  color: #fff;
}
.intermed-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}
.intermed-card:hover .img {
  top: 20px;
  right: 20px;
  left: auto;
  bottom: auto;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  z-index: 3;
}
.intermed-card:hover .hover-info {
  opacity: 1;
  visibility: visible;
}
.intermed-card:hover .hover-panel .rate {
  opacity: 1;
  transform: translateY(0);
}
.intermed-card:hover .hover-panel .details {
  opacity: 1;
  transform: translateY(0);
}

/* --------------- breadcrumb-sec --------------- */
.breadcrumb-sec .breadcrumb {
  --bs-breadcrumb-divider: '>';
  --bs-breadcrumb-divider-color: #999;
  --bs-breadcrumb-item-padding-x: 0.5rem;
}
.breadcrumb-sec .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-sec .breadcrumb-item a:hover {
  color: #333;
}
.breadcrumb-sec .breadcrumb-item.active {
  color: #777;
}
.breadcrumb-sec .breadcrumb-item + .breadcrumb-item::before {
  color: #999;
}

/* --------------- project-det --------------- */
.project-det {
  background-color: var(--light1);
}
.project-det .gallery-box .main-img {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.project-det .gallery-box .main-img .swiper,
.project-det .gallery-box .main-img .swiper-slide {
  height: 100%;
}
.project-det .gallery-box .disc {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background-color: var(--brown);
  color: #fff;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: 0 7px 15px rgba(161, 98, 71, 0.35);
}
.project-det .gallery-box .view-all {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(40, 40, 40, 0.72);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}
.project-det .gallery-box .view-all:hover {
  background: rgba(40, 40, 40, 0.9);
  color: #fff;
}
.project-det .thumbs-slider {
  margin-top: 12px;
}
.project-det .thumbs-slider .swiper-slide {
  height: 150px;
  cursor: pointer;
  opacity: 0.7;
  overflow: hidden;
  transition: opacity 0.2s ease;
}
.project-det .thumbs-slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.project-det .info-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  height: 100%;
  padding: 30px;
  border-radius: 30px;
}
.project-det .info-card .tag {
  background-color: rgba(0, 61, 59, 0.0666666667);
  color: var(--darkgreen);
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 12px;
}
.project-det .info-card .action-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  color: #555;
  background: #fff;
  transition: all 0.2s ease;
}
.project-det .info-card .action-btn:hover {
  border-color: var(--brown);
  color: var(--brown);
}
.project-det .info-card .compound {
  color: #999;
  font-size: 13px;
}
.project-det .info-card .title {
  color: var(--textColor);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
}
.project-det .info-card .location {
  color: #888;
  font-size: 14px;
}
.project-det .info-card .location .icon {
  color: var(--brown);
}
.project-det .info-card .current-price {
  color: var(--darkgreen);
  font-size: 24px;
  font-weight: 700;
}
.project-det .info-card .old-price {
  color: #999;
  font-size: 14px;
  text-decoration: line-through;
}
.project-det .info-card .saving-badge {
  background-color: rgba(161, 98, 71, 0.08);
  color: var(--brown);
  border: 1px solid rgba(161, 98, 71, 0.15);
  border-radius: 50px;
  font-size: 13px;
  padding: 6px 14px;
  font-weight: 600;
}
.project-det .info-card .specs-box {
  border: 1px solid #F0EBE6;
  border-radius: 10px;
  overflow: hidden;
  background-color: #FBF8F5;
  padding: 20px 0;
}
.project-det .info-card .spec-item {
  flex: 1;
  padding: 0 5px;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  border-inline-start: 1px solid #F0EBE6;
}
.project-det .info-card .spec-item:first-child {
  border-inline-start: 0;
}
.project-det .info-card .spec-item .icon {
  color: #666;
  margin-bottom: 5px;
}
.project-det .info-card .butn-interest {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}
.project-det .info-card .butn-whatsapp {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
  flex: 1;
  justify-content: center;
  padding: 12px 18px;
}
.project-det .info-card .butn-call {
  background-color: #eef2f4 !important;
  border-color: #eef2f4 !important;
  color: #333 !important;
  flex: 1;
  justify-content: center;
  padding: 12px 18px;
}
.project-det .info-card .safe-note {
  color: #999;
  font-size: 12px;
}
@media (max-width: 991px) {
  .project-det .gallery-box .main-img {
    height: 340px;
  }
  .project-det .info-card .title {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .project-det .gallery-box .main-img {
    height: 260px;
  }
  .project-det .thumbs-slider .swiper-slide {
    height: 70px;
  }
}

/* --------------- project features --------------- */
.project-features {
  position: relative;
}
.project-features .features-box {
  position: relative;
  border: 1px solid #e8e8e8;
  border-radius: 30px;
  padding: 50px 20px 35px;
}
.project-features .features-box .col {
  border-inline-start: 1px solid #ececec;
}
.project-features .features-box .col:nth-child(4n+1) {
  border-inline-start: 0;
}
.project-features .sec-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--light1);
  border: 1px solid #e8e8e8;
  border-radius: 50px;
  padding: 8px 28px;
  font-size: 14px;
  color: #555;
  white-space: nowrap;
  z-index: 1;
}
.project-features .feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  height: 100%;
}
.project-features .feature-item .icon-box {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  background: #fff;
  color: var(--darkgreen);
  font-size: 18px;
}
.project-features .feature-item .label {
  font-size: 13px;
  color: #999;
  margin-bottom: 4px;
}
.project-features .feature-item .value {
  font-size: 16px;
  font-weight: 700;
  color: var(--textColor);
  line-height: 1.3;
}
@media (max-width: 991px) {
  .project-features .features-box .col:nth-child(4n+1) {
    border-inline-start: 1px solid #ececec;
  }
  .project-features .features-box .col:nth-child(2n+1) {
    border-inline-start: 0;
  }
  .project-features .feature-item {
    padding: 18px 14px;
  }
}
@media (max-width: 575px) {
  .project-features .features-box {
    padding: 45px 10px 20px;
    border-radius: 22px;
  }
  .project-features .feature-item .icon-box {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
  .project-features .feature-item .value {
    font-size: 14px;
  }
}

.project-prices {
  position: relative;
}
.project-prices .price-card {
  background-color: #F3EDEA;
  border-radius: 30px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}
.project-prices .price-card .icon-circle {
  position: relative;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(161, 98, 71, 0.1333333333);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--brown);
  font-size: 18px;
  margin: 0px auto 18px;
  transition: 0.3s;
}
.project-prices .price-card .label {
  color: #8a7f78;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.project-prices .price-card .value {
  color: var(--textColor);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.project-prices .price-card .badge-txt {
  display: inline-block;
  background: rgba(161, 98, 71, 0.1);
  color: var(--brown);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 5px;
}
.project-prices .price-card:hover {
  background: var(--darkgreen);
}
.project-prices .price-card:hover .icon-circle {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.project-prices .price-card:hover .label,
.project-prices .price-card:hover .value {
  color: #fff;
}
.project-prices .price-card:hover .badge-txt {
  background: rgba(161, 98, 71, 0.85);
  color: #fff;
}
.project-prices .prices-foot {
  background: #F3EDEA;
  border-radius: 20px;
  padding: 18px 22px;
}
.project-prices .prices-foot .foot-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  color: var(--darkgreen);
  font-size: 16px;
  flex-shrink: 0;
}
.project-prices .prices-foot .foot-txt {
  color: #555;
  font-size: 15px;
}
@media (max-width: 991px) {
  .project-prices .price-card .value {
    font-size: 20px;
  }
  .project-prices .prices-foot {
    gap: 16px !important;
  }
}

/* ---------- project tabs ---------- */
.project-tabs {
  position: relative;
}
.project-tabs .tabs-box {
  position: relative;
}
.project-tabs .tabs-nav-wrap {
  position: relative;
  background: #fff;
  display: inline-flex;
  padding: 20px 20px 0;
  border-radius: 30px 30px 0 0;
}
.project-tabs .tabs-nav-wrap::after {
  position: absolute;
  content: "";
  left: -30px;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 5px 5px 0 5px #fff;
}
.project-tabs .nav-pills {
  position: relative;
  background-color: var(--light1);
  border-radius: 50px;
  gap: 4px;
  flex-wrap: nowrap;
  padding: 8px;
}
.project-tabs .nav-pills .nav-link {
  border-radius: 50px;
  color: #555;
  font-size: 14px;
  padding: 8px 22px;
  white-space: nowrap;
  border: 0;
  background: transparent;
  transition: all 0.25s ease;
}
.project-tabs .nav-pills .nav-link:hover {
  color: var(--brown);
}
.project-tabs .nav-pills .nav-link.active {
  background: var(--brown);
  color: #fff;
  box-shadow: rgba(161, 98, 71, 0.4) 0 7px 15px;
}
.project-tabs .tab-content {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  border-top-right-radius: 0;
  padding: 30px 15px 15px;
}
.project-tabs .tab-title {
  color: var(--textColor);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.project-tabs .tab-desc {
  color: #888;
  font-size: 15px;
  line-height: 1.9;
  max-width: 920px;
}
.project-tabs .list-title {
  color: var(--textColor);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.project-tabs .list-title .icon {
  color: var(--brown);
  font-size: 14px;
}
.project-tabs .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.project-tabs .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
position:relative;
}
.project-tabs .check-list li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    display: inline-block;
    margin-inline-end: 0px;
    color: #9aa3a0;
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}
.project-tabs .check-list li .check {
  color: #9aa3a0;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}
.project-tabs .amenity-card {
  border: 1px solid #F0EBE6;
  background-color: #FBF8F5;
  border-radius: 18px;
  padding: 22px 14px;
  text-align: center;
  height: 100%;
  transition: all 0.25s ease;
}
.project-tabs .amenity-card:hover {
  border-color: var(--darkgreen);
  background: #fff;
}
.project-tabs .amenity-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
  color: var(--darkgreen);
  font-size: 18px;
  margin: 0 auto 20px;
}
.project-tabs .amenity-card .txt {
  color: var(--textColor);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.project-tabs .location-map {
  height: 100%;
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background: #f0f0f0;
}
.project-tabs .location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}
.project-tabs .place-card {
  position: relative;
  border: 1px solid #F0EBE6;
  background-color: #FBF8F5;
  border-radius: 14px;
  padding: 16px 14px;
  height: 100%;
  gap: 12px;
}
.project-tabs .place-card .name {
  color: var(--textColor);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.4;
}
.project-tabs .place-card .distance {
  color: #999;
  font-size: 13px;
}
.project-tabs .place-card .time-badge {
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .project-tabs .tabs-box {
    padding: 60px 24px 30px;
    border-radius: 24px;
  }
  .project-tabs .tabs-nav-wrap {
    right: 50%;
    transform: translate(50%, -50%);
    max-width: calc(100% - 30px);
    overflow-x: auto;
  }
  .project-tabs .tab-title {
    font-size: 22px;
  }
  .project-tabs .location-map {
    min-height: 280px;
  }
  .project-tabs .location-map iframe {
    min-height: 280px;
  }
}
@media (max-width: 575px) {
  .project-tabs .nav-pills .nav-link {
    font-size: 12px;
    padding: 8px 14px;
  }
  .project-tabs .tabs-box {
    padding: 55px 16px 24px;
  }
  .project-tabs .amenity-card {
    padding: 18px 10px;
  }
  .project-tabs .amenity-card .txt {
    font-size: 12px;
  }
  .project-tabs .amenity-card .icon-box {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
}

.swiper-wrapper {
    height: fit-content;
}



#reviewModal .rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    /*direction: rtl;*/
}

#reviewModal .rating-stars input {
    display: none;
}

#reviewModal .rating-stars label {
    font-size: 35px;
    color: #ddd;
    cursor: pointer;
    transition: 0.2s ease;
}
#reviewModal textarea {
    resize: none ;
    border-radius: 20px ;
}
/* Hover */
#reviewModal .rating-stars label:hover,
#reviewModal .rating-stars label:hover ~ label {
    color: #ffc107;
}

/* Selected */
#reviewModal .rating-stars input:checked ~ label {
    color: #ffc107;
}

/* ---------- mediator box ---------- */
.mediator .mediator-box {
  background: var(--darkgreen);
  border-radius: 30px;
  padding: 50px;
  color: #fff;
}
.mediator .mediator-box .img {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  overflow: hidden;
  margin-inline-end: 30px;
}
.mediator .mediator-box .badge-role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}
.mediator .mediator-box .badge-role .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
}
.mediator .mediator-box .name {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.mediator .mediator-box .exp {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.mediator .mediator-box .stats {
  margin-top: 18px;
}
.mediator .mediator-box .stat-item {
  padding: 0 22px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
.mediator .mediator-box .stat-item:first-child {
  padding-inline-start: 0;
  border-inline-start: 0;
}
.mediator .mediator-box .stat-item .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.mediator .mediator-box .stat-item .val {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.mediator .mediator-box .stat-item .stars {
  display: inline-flex;
  gap: 2px;
  color: #f0c14b;
  font-size: 11px;
}
.mediator .mediator-box .actions {
  min-width: 210px;
}


@media (max-width: 991px) {
  .mediator-box .name {
    font-size: 22px;
  }
  .mediator-box .actions {
    width: 100%;
    min-width: 0;
  }
  .mediator-box .stat-item {
    padding: 0 14px;
  }
}
@media (max-width: 575px) {
  .mediator-box {
    padding: 18px;
    border-radius: 22px;
  }
  .mediator-box .img {
    width: 90px;
    height: 90px;
  }
  .mediator-box .stats {
    flex-wrap: wrap;
    gap: 14px 0;
  }
  .mediator-box .stat-item {
    width: 50%;
    padding: 0 10px 0 0;
    border-inline-start: 0;
  }
  .mediator-box .stat-item:nth-child(even) {
    border-inline-start: 1px solid rgba(255, 255, 255, 0.2);
    padding-inline-start: 14px;
  }
}

/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* ======== */
@media screen and (max-width: 991px) {
    .d-mob-flex {
        display: flex !important;
    }
    .d-mob-none {
        display: none !important;
    }
    .d-mob-block {
        display: block !important;
    }
    
  .fsz-35 {
    font-size: 22px !important;
  }
  .numbers .cards .col-lg-3:nth-of-type(even) .number-card ,
  .numbers .numbers-slider .swiper-slide:nth-of-type(even) .number-card {
    flex-direction: column;
    background-image: linear-gradient(to bottom, #fff, transparent);
    border-top: 1px solid var(--darkgreen);
    border-bottom: 0;
  }
  .fsz-50 {
    font-size: 35px !important;
  }
  .butn {
    white-space: nowrap;
  }
  .hero .form .form-group {
    margin: 10px 0;
  }
  .area .main-card {
    padding: 10px;
  }
  .area .main-card .numbers .item {
    padding: 5px;
    flex-grow: 1;
  }
  .area .area-card .numbers .item {
    padding: 5px;
  }
  .checks .form-check .form-check-label {
    padding: 8px 10px;
  }
  .section-padding {
    padding: 60px 0;
  }
  
  .area .area-card .card-head .title {
        font-size: 15px;
    }
    .area-card .numbers  .item .num  {
        font-size: 13px !important;
    }
    
    .project-tabs .tabs-nav-wrap::after {
        display: none;
    }
}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */