@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}

html {
  font-size: 62.5%;
}
:root {
  --dark-blue: #033631;
  --green-color: #bf9b42;
  --para-color: #424242;
  --light-bg: #f8f9fa;
  --white: #fff;
  --bg-overlay: rgba(0, 0, 0, 0.68);
}
h1 {
  font-size: 5rem;
}
h2 {
  font-size: 2.6rem;
  text-transform: uppercase;
  color: var(--dark-blue);
}
h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
}
h4 {
  font-size: 1.6rem;
  font-weight: 500;
}
p {
  font-size: 1.6rem;
  color: var(--para-color);
  line-height: 2.4rem;
}
a {
  display: block;
  text-decoration: none;
}
li {
  list-style: none;
}
i {
  color: var(--green-color);
}
/* ============= */
.wrapper-heading {
  max-width: 124rem;
  margin: auto;
  padding: 9.6rem 2.8rem 0rem 2.8rem;
}
.wrapper {
  max-width: 124rem;
  margin: auto;
  padding: 9.6rem 2.8rem;
}
.grid {
  display: grid;
  gap: 9rem;
}
.grid-two-cols {
  grid-template-columns: 1fr 1fr;
}
.grid-three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-four-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.awesome-features-grid-two-cols {
  grid-template-columns: 2fr 1fr;
}
.pro-details-desc-grid-two-cols {
  grid-template-columns: 2fr 1fr;
}
/* ==================
reusabel code 
================== */
/* ====================
top navbar css 
==================== */
.main-top-nav {
  background-color: var(--dark-blue);
  padding: 2rem 0;
}
.top-nav {
  width: 85%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-nav1 {
  display: flex;
  align-items: center;

  gap: 1rem;
}
.top-nav1-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 1.5rem;
}
.top-nav2 {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.top-nav-icon {
  border: 2px solid var(--green-color);
  padding: 0.5rem;
  font-size: 1.2rem;
}
/* ====================
navbar css 
==================== */
.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  background: var(--white);
  padding: 0 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 150;
  height: 7rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.logo {
  width: 20%;
  height: auto;
}

.logo img {
  width: 58%;
  height: auto;
}

.menu {
  list-style: none;
}

.menu li {
  position: relative;
  float: left;
}

.menu li a {
  font-size: 1.6rem;
  color: var(--dark-blue);
  display: block;
  text-decoration: none;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  height: 7rem;
  text-transform: uppercase;
}

.menu .submenu li a:hover {
  background: var(--green-color);
}

.submenu {
  position: absolute;
  left: 0;
  background: var(--white);
  display: none;
  transition: all 0.3s ease-in-out;
  width: 350px;
}

.nav-icons-down {
  color: var(--dark-blue);
}
.submenu-wrapper:hover .submenu,
.submenu-wrapper:focus-within .submenu {
  display: initial;
}

.submenu li {
  width: 100%;
  border-top: 0.1rem solid var(--dark-blue);
  list-style: none;
}

.toggle-btn {
  display: none; /* Initially hide the toggle button */
  z-index: 1000;
}

.icon {
  position: relative;
  border: 1px solid var(--green-color);
  cursor: pointer;
  z-index: 100;
}
.icon i {
  font-size: 3rem;
}
/* .icon::before {
  top: 0;
  right: 0;
  content: "";
  position: absolute;
  width: 2rem;
  height: 0.2rem;
  background-color: var(--dark-blue);
  transition: all 0.3s ease-in-out;
}

.icon::after {
  bottom: 0;
  right: 0;
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 0.2rem;
  background-color: var(--dark-blue);
  transition: transform 0.3s ease-in-out;
} */

/* Rotate the before and after lines to create the close icon effect */
/* .icon.active::before {
  width: 1.5rem;
  transform: rotate(-45deg) translate(-0.21rem, 0.21rem);
}

.icon.active::after {
  transform: rotate(45deg) translate(-0.21rem, -0.21rem);
} */

@media (max-width: 1330px) {
  .toggle-btn {
    display: block;
  }

  .menu {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-blue);
    border-top: 0.1rem solid var(--white);
    display: none;
  }

  .menu.active {
    display: initial;
  }

  .menu li {
    width: 100%;
    border-top: 0.1rem solid var(--white);
  }
  .menu li a {
    color: var(--white);
  }

  .submenu {
    position: relative;
    width: 100%;
  }

  .submenu li {
    background: var(--white);
    border-top: 0.1rem solid #101d23;
  }
  .nav-icons-down {
    color: var(--white);
  }
  .submenu li a {
    padding-left: 2rem;
    color: var(--dark-blue);
  }
  .logo img {
    width: 140px;
    height: auto;
  }
}
/*=============== HEADER ===============*/

/* ====================
hero slider css 
==================== */
.slider-btn {
  border: 1px solid #ffffff;
  border-radius: 0;
  font-family: "montserratregular";
  font-size: 1.4rem;
  padding: 0.9rem 2rem;
  color: #fff;
  line-height: 2.8rem;
}

/* ====================== */

.container {
  width: 1200px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.hero-slider {
  width: 100%;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero-slider {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 500px;
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #d4d3d3;
  border-radius: 55px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f060";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background: #fff;
  transition: all 0.2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}

@media screen and (min-width: 992px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
  .hero-slider .swiper-pagination-custom,
  .hero-slider .swiper-pagination-fraction {
    /*     display: none; */
  }
}
.swiper-pagination {
  text-align: left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 50px;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 767px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 30px;
  }
}
/*--------------------------------------------------------------
      #hero-style
  --------------------------------------------------------------*/
.hero-style {
  height: 850px;
  transition: all 0.4s ease;
  /* margin-top: 6.5rem; */
  /* min-height: 100vh; */
}

@media (max-width: 991px) {
  .hero-style {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-style {
    height: 500px;
  }
}

@media screen and (min-width: 992px) {
  .hero-style .container {
    padding-top: 95px;
  }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  /* max-width: 690px; */
  text-align: center;
}

.hero-style .slide-title h2 {
  font-size: 77px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 40px;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

@media (max-width: 1199px) {
  .hero-style .slide-title h2 {
    font-size: 75px;
  }
}

@media (max-width: 991px) {
  .hero-style .slide-title h2 {
    font-size: 50px;
    margin: 0 0 35px;
  }
}

@media (max-width: 767px) {
  .hero-style .slide-title h2 {
    font-size: 35px;
    margin: 0 0 30px;
  }
}

.hero-style .slide-text p {
  opacity: 0.8;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: normal;
  color: #ffffff;
  margin: 0 0 40px;
  transition: all 0.4s ease;
}

@media (max-width: 767px) {
  .hero-style .slide-text p {
    font-size: 2rem;
    font-weight: normal;
    margin: 0 0 30px;
  }
}

.hero-style .slide-btns > a:first-child {
  margin-right: 10px;
}

/* ====hero slider bg overlay==== */
.slide-bg-image {
  position: relative;
  z-index: 2;
}
.clearfix::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 30%);
  z-index: 3;
  width: 100%;
  height: 100%;
}
.slide-title,
.slide-text,
.swiper-pegination,
.swiper-button-nex,
.swiper-button-perv {
  z-index: 4;
  position: relative;
}

/*--------------------------------------------------------------
      #button-style
  --------------------------------------------------------------*/
.theme-btn,
.theme-btn-s2 {
  background-color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #2b3b95;
  padding: 9px 32px;
  border: 0;
  border-radius: 3px;
  text-transform: uppercase;
  display: inline-block;
  line-height: initial;
  transition: all 0.4s ease;
}
a {
  text-decoration: none;
  transition: all 0.2s ease;
}
.theme-btn-s2 {
  background-color: rgba(255, 255, 255, 0.9);
  color: #131e4a;
}
.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
  background-color: #2b3b95;
  color: #fff;
}
.theme-btn-s3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  text-transform: uppercase;
}
i.fa-chevron-circle-right {
  height: 22px;
  width: 22px;
}
a:hover {
  text-decoration: none;
}
@media (max-width: 991px) {
  .theme-btn,
  .theme-btn-s2,
  .theme-btn-s3 {
    font-size: 13px;
    padding: 15px 25px;
  }
}
@media (max-width: 767px) {
  .theme-btn,
  .theme-btn-s2 {
    padding: 13px 20px;
    font-size: 13px;
  }
}
/* =========================
    welcome css
=============================== */
.welcome {
  position: relative;
}
.welcome .grid {
  align-items: center;
}
.welcome .welcome-img {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  overflow: hidden;
}
.welcome .welcome-img img {
  width: 100%;
}
.welcome .welcome-text h2 {
  padding-bottom: 2rem;
}
.welcome .welcome-text h2 span {
  color: var(--green-color);
}
/* =========================
our services css
=============================== */
.services {
  position: relative;
}
.wrapper-heading {
  text-align: center;
}
.wrapper-heading h2 {
  padding-bottom: 2rem;
}
.wrapper-heading p {
  max-width: 70%;
  margin: auto;
}
.services-box {
  transition: all 0.3s;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.services-box:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.services-box img {
  width: 100%;
  height: auto;
}
.services-box img {
  width: 100%;
  height: auto;
}
.services-box-data {
  padding: 1rem;
  /* text-align: center; */
}
.services-box-data h3 {
  padding-bottom: 1rem;
  color: var(--green-color);
}
.sb-shadow {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
}
/* =========================
top property css
=============================== */
.top-property {
  position: relative;
  background-color: var(--light-bg);
}

.top-property-top-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--dark-blue);
  color: #fff;
  min-height: 95px;
  gap: 2rem;
}
.top-property-top-text-left p {
  color: rgb(231, 231, 231);
  font-size: 1.2rem;
}
.top-property-top-text-right h3 {
  color: var(--green-color);
}
.top-property-text-bottom {
  background-color: var(--dark-blue);
  padding: 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.top-property-text-bottom .top-property-bottom-data {
  display: flex;
  gap: 1rem;
}
.top-property-text-bottom .top-property-bottom-data p {
  color: var(--white);
}
.top-property-text-bottom .top-property-bottom-data img {
  width: 20px !important;
  height: 20px !important;
}
/* =========================
BOOK NOW css
=============================== */
.book-now {
  position: relative;
  background-image: linear-gradient(
      rgba(31, 33, 64, 0.89),
      rgba(31, 33, 64, 0.89)
    ),
    url("../images/booknow/booknow.webp");
  padding: 9.6rem 2.8rem;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  object-fit: cover;
  background-size: cover;
  z-index: 3;
}

.book-now .book-now-data h2 {
  position: relative;
  text-align: center;
  z-index: 5;
  color: var(--white);
}
/* =========================
awesome features css
=============================== */
.awesome-features {
  position: relative;
  width: 100%;
  height: 100%;
}
.awesome-features .grid {
  gap: 3rem;
}
.awesome-features .wrapper-heading {
  text-align: left;
}

.awesome-features .wrapper-heading p {
  max-width: 100%;
}
.awesome-left-img-heading {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 1rem;
  padding-bottom: 2rem;
}

.awesome-left-img-heading img {
  width: 20px;
  height: 20px;
}

.awesome-right img {
  width: 100%;
  height: 300px;
}

/* =========================
counter css
=============================== */
.counter-bg {
  background-image: linear-gradient(
      rgba(31, 33, 64, 0.89),
      rgba(31, 33, 64, 0.89)
    ),
    url("../images/booknow/booknow.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
}
.counter {
  /* align-items: center; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter-bg .wrapper {
  padding: 4rem 2.8rem;
}
.counter-data-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 1rem;
}
.counter-data {
  padding: 1em 0;
  position: relative;
  font-size: 16px;
  border-radius: 0.5em;
  text-align: center;
}
.counter-icon {
  color: var(--green-color);
  font-size: 3.5rem;
  text-align: center;
}
span.num {
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 2em;
}
span.text {
  color: #ffffff;
  font-size: 1em;
  text-align: center;
  pad: 0.7em 0;
  font-weight: 600;
  line-height: 0;
}
@media screen and (max-width: 1024px) {
  .counter {
    width: 85vw;
  }
  .counter-data {
    height: 26vmin;
    width: 26vmin;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .counter {
    width: 90vw;
    flex-wrap: wrap;
    gap: 30px;
  }
  .counter-data {
    width: calc(50% - 40px);
    height: 30vmin;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .counter {
    gap: 15px;
  }
  .counter-data {
    width: 100%;
    height: 25vmin;
    font-size: 8px;
  }
}

/* =========================
  happy client css
  =============================== */
.happyClient {
  width: 100%;
  height: 100%;
  position: relative;
}
.testimonial {
  text-align: center;
}
.testimonial .testimonial-data {
  border: 2px solid var(--green-color);
  padding: 2rem;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
}
.testimonial .testimonial-data img {
  width: 100px !important;
  height: 100px !important;
  margin: auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 3px solid var(--green-color);
}
.testimonial-data .testi-icon {
  font-size: 7rem;
  opacity: 0.5;
}
.testimonial .testimonial-data h4 {
  color: var(--para-color);
}
.owl-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.owl-dot {
  width: 10px;
  height: 10px;
  background-color: #dbdbdb !important;
  border-radius: 50%;
  margin: 0 5px;
}
.owl-dot.active {
  background-color: var(--green-color) !important;
  width: 20px;
  height: 20px;
}

/* =========================
    brand slider css
    =============================== */
.brand-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.brand-data a {
  border: 1px solid #ebebeb;
  width: 100%;
  height: 140px !important;
  padding: 1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.brand-data a:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.brand-data a img {
  width: 60% !important;
  height: auto;
  margin: auto;
}
/* =========================
    footer section css
    =============================== */
footer {
  background-color: var(--dark-blue);
  position: relative;
  width: 100%;
  height: 100%;
}
footer .wrapper {
  padding-top: 0;
}
.footer-logo {
  text-align: center;
  background-color: var(--light-bg);
  width: 230px;
  height: 230px;
  margin: auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 10%;
  -ms-border-radius: 10%;
  -o-border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo img {
  width: 180px;
  height: auto;
}
.footer-socialLinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.footer-socialLinks i {
  font-size: 2.2rem;
  border: 1px solid var(--green-color);
  text-align: center;
  margin: auto;
  padding: 0.5rem;
}
.footer-main {
  margin-top: 10rem;
}
.footer-main .grid {
  gap: 5rem;
}
.footer-details h3 {
  color: var(--white);
  padding-bottom: 3rem;
}
.footer-details p {
  color: #c7c7c7;
}
.footer-details h4 {
  padding-bottom: 1rem;
  color: #dadada;
  font-weight: 600;
}
.links-footer ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.links-footer ul li a {
  color: #c7c7c7;
  font-size: 1.6rem;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.links-footer ul li a:hover {
  color: var(--green-color);
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-contact a {
  color: #c7c7c7;
}
.footer-icon {
  font-size: 2rem;
}

/* ========================================
========================================
          about us css
========================================
======================================== */
.common-text-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("../images/commonbg/cmbg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  padding: 4rem 0;
}
.common-text-bg h2 {
  text-align: center;
  color: var(--white);
}
/* =========== */
.director .grid {
  align-items: center;
}
.director-data {
  margin: 0;
  padding: 0;
}
.director-data img {
  width: 100%;
  height: auto;
}
.director-name {
  background-color: var(--dark-blue);
  padding: 2rem;
  text-align: center;
  color: var(--white);
}
.sub-footer {
  background-color: var(--dark-blue);
  width: 100%;
  text-align: center;
  border-top: 1px solid #484848;
}
.sub-footer-border {
  padding: 3rem 0;
}
.sub-footer-border h4,
.sub-footer-border a {
  font-size: 1.6rem;
  color: var(--white);
}
.sub-footer-border a {
  text-decoration: underline;
  display: inline-block;
}

/* ========================================
========================================
          property listing css
========================================
======================================== */
.property-listing {
  position: relative;
}
.property-listing .grid {
  gap: 2.5rem;
}
.pro-list-top {
  display: flex;
  justify-content: space-between;
  background-color: var(--dark-blue);
  padding: 1rem;
  min-height: 9.6rem;
}
.pro-list-top-left h4 {
  padding-bottom: 1rem;
  font-size: 1.2rem;
}
.pro-list-top-left h4,
.pro-list-top-left p {
  color: var(--white);
  font-size: 1.2rem;
}
.pro-list-top-right h4 {
  color: var(--green-color);
  font-weight: 700;
}
.property-box img {
  width: 100%;
  height: auto;
  display: block;
}
.pro-list-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.849);
  padding: 1rem;
}
.pro-list-bottom-data {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.pro-list-bottom-data img {
  width: 20px;
  height: 20px;
}
.pro-list-bottom-data p {
  font-size: 1.1rem;
  color: var(--white);
}
.pro-list-img {
  position: relative;
}
.pro-list-moreDetails span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 0.5rem;
  text-transform: capitalize;
  scale: 0;
  cursor: pointer;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.pro-list-img:hover .pro-list-moreDetails span {
  scale: 1;
}
.pro-list-moreDetails a span:hover {
  background-color: var(--white);
  color: var(--dark-blue);
}
.pro-list-img-bg a::after {
  content: "";
  background-color: rgba(31, 33, 64, 0.89);
  width: 100%;
  height: 100%;
  z-index: 10;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.pro-list-img-bg a {
  z-index: 9;
}
.pro-list-img-bg a:hover::after {
  opacity: 1;
}

/* ========================================
========================================
   property details description css
========================================
======================================== */
.pro-other-desc-rate {
  color: var(--green-color);
}
.pro-other-desc-list .grid {
  gap: 1rem;
}
.pro-other-desc-heading {
  position: relative;
}
.pro-other-desc-list .pro-other-desc-line::before {
  content: "";
  background-color: var(--green-color);
  width: 30%;
  height: 0.5rem;
  position: absolute;
}
/* <!-- ====================
         CONDITION AND AMENITIES section
      ===================== --> */
.amenities {
  position: relative;
  background-color: var(--light-bg);
  width: 100%;
  height: 100%;
}
.condition .grid {
  gap: 3rem;
}
.condition h3 {
  color: #303030;
}
.condition-box {
  padding: 2rem;
  background-color: var(--white);
}
.condition1-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.condition1-flex img {
  width: 20px;
  height: 20px;
}
.condition1-flex h4 {
  font-weight: 300;
}
.condition1-flex i {
  font-size: 2rem;
  color: var(--para-color);
}
/* <!-- ====================
        video section
      ===================== --> */
.video {
  position: relative;
  width: 100%;
  height: 100%;
}
.video .wrapper {
  padding-bottom: 0rem;
}
.property-gallery {
  /* display: flex; */
  gap: 1rem;
  padding: 2rem;
}

.gallery-image {
  width: 1100%;
  height: auto;
  cursor: pointer;

  transition: transform 0.2s;
}

.gallery-image:hover {
  transform: scale(1.1);
}

.lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.floor-plan {
  margin: auto;
}
/* <!-- ====================
        contact section
      ===================== --> */
.contact {
  position: relative;
}
.contact-box {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  width: 100%;
  height: 20rem;
  text-align: center;
}
.contact-box i {
  font-size: 2.5rem;
}
.contact-box p a {
  color: var(--para-color);
}
/* <!-- ====================
        contact from section
      ===================== --> */
.from h3 {
  text-align: center;
}
form {
  margin: 4rem 0;
}
input {
  width: 100%;
  padding: 1.6rem 1rem;
  margin: 1rem;
  border: none;
  outline: none;
  background: #fbfbfb none repeat scroll 0 0;
  border: 1px solid #dbdbdb;
  color: #606060;
}
textarea {
  width: 100%;
  padding: 1.6rem 1rem;
  margin: 1.6rem;
  height: 10rem;
  background: #fbfbfb;
  border: 1px solid #dbdbdb;
  color: #606060;
}
.form-btn {
  margin: auto;
  text-align: center;
}
.form-btn a {
  text-align: center;
  font-size: 1.6rem;
  background-color: var(--green-color);
  display: inline-block;
  padding: 1.6rem 2rem;
  color: var(--white);
}
/* ======================================
======================================
        website loader
======================================
====================================== */
.main-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  z-index: 999 !important;
  position: relative;
}

.loader {
  width: 300px; /* Ensure the loader spans are properly sized */
  height: 300px;
  position: relative;
}

.loader img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; /* Maintain the image within the loader size */
  height: 100%; /* Maintain the image within the loader size */
  border-radius: 50%;
  animation: bxSpin 0.5s linear infinite;
}

@keyframes bxSpin {
  0% {
    transform: translate(-50%, -50%) scale(0); /* Ensure translate is included */
    animation-duration: 4s;
  }
  100% {
    transform: translate(-50%, -50%) scale(1); /* Ensure translate is included */
    animation-duration: 4s;
  }
}

.services .grid {
  gap: 3rem;
}
/* ==========================================
style new css
========================================== */
.gallery {
  padding-bottom: 100px;
  margin-top: 5rem;
}
.gallery .gallery-heading {
  text-align: center;
  padding: 4rem 0;
}
.gallery-heading h1 span {
  color: var(--footer-bg);
}
.gallery .controls {
  display: flex;
  flex-wrap: nowrap; /* Wrap ki jagah nowrap rakha */
  justify-content: center;
  overflow-x: auto; /* Horizontal scrolling enable kiya */
  white-space: nowrap;
  gap: 20px;
  padding: 5rem 2rem;
  list-style: none;
}

.gallery .controls::-webkit-scrollbar {
  height: 8px;
}

.gallery .controls::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 10px;
}

.gallery .controls .buttons {
  min-width: 170px; /* Fixed min-width set kiya */
  height: 40px;
  color: #666;
  border: 2px solid #666;
  font-size: 1.6rem;
  line-height: 36px;
  cursor: pointer;
  text-align: center;
  font-family: var(--para-font);
  text-transform: uppercase;
  border-radius: 1rem;
  transition: all 0.3s linear;

  /* Overflow handling */
  text-overflow: ellipsis;
  overflow: hidden; /* Overflow hidden rakha to text cut ho jaye */
  white-space: nowrap;
}

.gallery .controls .buttons.active,
.gallery .controls .buttons:hover {
  color: var(--footer-bg);
  border: 2px solid var(--footer-bg);
}

.gallery .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem; /* Space between images */
  margin: 0 5rem;
}

.gallery .image-container .image {
  height: 309px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 2px solid var(--footer-bg);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  transition: 0.3s all ease-in-out;
}

/* Desktop and larger screens: 4 columns */
@media (min-width: 1024px) {
  .gallery .image-container .image {
    flex: 1 1 calc(26% - 20px);
  }
}

/* Tablets: 3 columns */
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery .image-container .image {
    flex: 1 1 calc(33.33% - 20px);
  }
}

/* Mobile: 2 columns */
@media (max-width: 767px) {
  .gallery .image-container .image {
    flex: 1 1 calc(50% - 20px);
  }
}

.gallery .image-container .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s all ease-in-out;
}

.gallery .image-container .image:hover img {
  transform: scale(1.4);
}
/* ====================
video gallery
==================== */

.video_gallery {
  width: 46%;
  height: auto;
}
