* {
  transition: all 0.5s ease-in-out;
}
body {
  background-image: url("./assets/bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  scroll-behavior: smooth;
}
header {
  background-color: #743490;
  padding: 10px 0;
}
header .icons i {
  color: #ffffff;
}
header .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
/* Global */
.phoneDiv {
  background-color: #743490;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: fixed;
  z-index: 9999;
  bottom: 5%;
  right: 5%;
}
.phoneDiv i {
  color: #ffffff;
  transform: scale(1.3);
}
.whatsappDiv {
  background-color: #56b768;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: fixed;
  z-index: 9999;
  bottom: 15%;
  right: 5%;
}
.whatsappDiv i {
  color: #ffffff;
  transform: scale(1.3);
}

/* Global */

/* -------------------------------------------------------------------navbar------------------------------------------------------------------------- */
.toggleBarDiv {
  display: none;
}
.navBar .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navBar .logo .logoMatter h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  padding-left: 5px;
  color: #743490;
  font-weight: 700;
}
.navBar .logo .logoMatter p {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  padding-left: 5px;
  color: #212529;
  letter-spacing: 1px;
}
.navBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  background-color: #ffffff;
}
.navContainer.activeNavbar {
  position: fixed;
  z-index: 999999;
  width: 100%;
  top: -100%;
  animation: 0.5s forwards comeDown;
}
.navContainer.activeNavbar .navBar {
  background-color: #ffffff;
}
@keyframes comeDown {
  0% {
    top: -100%;
  }
  100% {
    top: 0%;
  }
}
.navBar .logo img {
  width: 100px;
  object-fit: contain;
}
.navBar .navBarList ul {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
}
.navBar .navBarList ul li {
  list-style-type: none;
  padding: 0 15px;
  font-size: 18px;
  position: relative;
}
.navBar .navBarList ul li:hover::after {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #56b768;
  height: 8px;
  width: 8px;
  content: "";
  border-radius: 50%;
}
.navBar .navBarList ul li:last-child::after {
  display: none;
}
.navBar .navBarList ul li:last-child a {
  background: linear-gradient(-90deg, #743490, #56b768);
  color: #ffffff;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 30px;
}
.navBar .navBarList ul li a {
  text-decoration: none;
  font-family: "Montserrat";
  font-weight: 600;
  color: #743490;
  letter-spacing: 1px;
}
.navBar .navBarList ul li a:hover {
  color: #56b768;
}
.navBar .navBarList ul li:last-child a:hover {
  color: #ffffff;
}
.mobileListDiv .logo img {
  width: 100px;
  object-fit: contain;
}
.mobileListDiv {
  background-color: #ffffff;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: -100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: left 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.mobileListDiv.active {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.mobileListDiv i {
  position: absolute;
  z-index: 99;
  top: 8%;
  right: 8%;
  color: #743490;
  transform: scale(1.5);
}
.mobileListDiv .navBarList {
  display: none;
}
.mobileListDiv ul {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mobileListDiv ul li {
  padding: 15px 0;
  list-style-type: none;
  width: 200px;
  text-align: center;
  margin: 10px 0;
}
.mobileListDiv ul li:last-child {
  border: none;
  width: 200px;
  background: linear-gradient(90deg, #743490, #56b768);
  color: #ffffff;
  border-radius: 50px;
}
.mobileListDiv ul li a {
  text-decoration: none;
  color: #743490;
  font-weight: 600;
  font-family: "Montserrat";
}
.mobileListDiv ul li:last-child a {
  color: #ffffff;
}
/* -------------------------------------------------------------------navbar------------------------------------------------------------------------- */
/* -------------------------------------------------------------------Slider Container--------------------------------------------------------------- */

.carousalBgImage1 {
  background-image: url("./assets/car1.jpg");
  background-size: cover;
  height: 60vh;
}

.carousalBgImage2 {
  background-image: url("./assets/car2.jpg");
  background-size: cover;
  background-position: center;
  height: 60vh;
}

.carousalBgImage3 {
  background-image: url("./assets/car3.jpg");
  background-size: cover;
  background-position: center;
  height: 60vh;
}

.carousalDetails {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #000000cc;
  height: 60vh;
  gap: 10px;
}

.carousalDetails h1 {
  text-align: center;
  color: #ffffff;
  font-size: 80px;
  font-family: "Playfair Display", serif;
}

.carousalDetails h6 {
  text-align: center;
  font-family: "Montserrat";
  color: #56b768;
  font-weight: 600;
  text-transform: uppercase;
}

.carousalDetails p {
  text-align: center;
  font-family: "Montserrat";
  color: #ffffffaa;
  width: 60%;
}

.carousalDetails a {
  text-align: center;
  font-family: "Montserrat";
  text-decoration: none;
  color: #ffffffbb;
  background-color: #56b768;
  padding: 5px 15px;
  border-radius: 30px;
}

/* -------------------------------------------------------------------Slider Container--------------------------------------------------------------- */
/* -------------------------------------------------------------------about us--------------------------------------------------------------- */
.aboutContainer {
  padding: 50px 0;
  background-color: #ffffff;
}
.aboutContainer h2 {
  background: linear-gradient(
    -90deg,
    #743490,
    #743490,
    #743490,
    #743490,
    #56b768,
    #56b768,
    #56b768,
    #56b768
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Montserrat";
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  text-transform: uppercase;
}
.aboutMatter {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}
.aboutMatter h6 {
  color: #743490;
  font-family: "Montserrat";
  margin: 0;
  letter-spacing: 5px;
  font-size: 20px;
  font-weight: 700;
  padding-left: 5px;
}
.aboutMatter h1 {
  font-family: "Playfair Display", serif;
  color: #212529;
  margin: 0;
  font-weight: 900;
  font-size: 64px;
  letter-spacing: 2px;
}
.aboutMatter p {
  margin: 0;
  font-family: "Montserrat";
  font-weight: 500;
  color: #000000aa;
}
.aboutImageDIv img {
  width: 100%;
  border-radius: 30px;
  margin-top: 10px;
}
.valuesFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
}
.valuesContainer .valuesFlex h3 {
  text-align: left;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  position: relative;
  z-index: 4;
  font-size: 30px;
  color: #ffffff;
  text-transform: lowercase;
  padding: 5px 15px;
  border-radius: 0px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: #56b768;
}
.valuesContainer .valuesFlex p {
  text-align: left;
  padding-top: 0;
}
.valuesContainer p {
  color: #000000aa;
  font-family: "Montserrat";
  padding-top: 30px;
  text-align: center;
  font-weight: 500;
  margin: 0;
  position: relative;
  z-index: 4;
}
.valueBox {
  border-radius: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
}
.valueBox p {
  color: #ffffff90;
}
.valueBox::after {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #000000aa;
  top: 0;
  left: 0;
  content: "";
  border-radius: 10px;
}
.valueBox::before {
  background-color: #56b768;
  top: 10%;
  left: 2%;
  width: 30%;
  height: 3px;
  content: "";
  position: absolute;
  z-index: 3;
  border-radius: 30px;
}
.valueBox:nth-child(1) {
  background-image: url("./assets/mission.jpg");
  background-size: cover;
  background-position: center;
  padding: 50px 10px;
}
.valueBox:nth-child(2) {
  background-image: url("./assets/vision.jpg");
  background-size: cover;
  background-position: center;
  padding: 50px 10px;
}
/* -------------------------------------------------------------------about us--------------------------------------------------------------- */
/* -------------------------------------------------------------------servicesSection------------------------------------------------------------------------- */
.servicesSection {
  background-color: #ffffff;
  padding: 50px 0;
}
.serviceBackCon {
  position: relative;
}
.serviceBackCon::after {
  border: 2px dashed #56b768;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  z-index: 1;
  padding: 5px;
}
.servicesSection h2 {
  background: linear-gradient(
    -90deg,
    #743490,
    #743490,
    #743490,
    #743490,
    #56b768,
    #56b768,
    #56b768,
    #56b768
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Montserrat";
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
}
.servicesSection .serviceBox {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ffffff;
  /* border: 1px solid #56b768; */
  margin: 10px 0;
  position: relative;
  padding: 20px;
  border-radius: 30px;
  overflow: hidden;
  gap: 10px;
  box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.2);
}

.serviceBox img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
}
.servicesSection .serviceBox h3 {
  color: #56b768;
  font-family: "Bebas Neue", sans-serif;
  text-align: center;
  margin: 0;
}
.servicesSection .serviceBox p {
  color: #212529dd;
  font-family: "Montserrat";
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.servicesSection .serviceBox:hover {
  transform: translateY(-10px);
  transition: all 0.5s ease-in-out;
}

.servicesSection .serviceBox::after {
  position: absolute;
  z-index: 2;
  background-color: #56b768;
  bottom: -2%;
  left: -2%;
  content: "";
  height: 40px;
  width: 40px;
}
.servicesSection .serviceBox::before {
  position: absolute;
  z-index: 2;
  background-color: #56b768;
  bottom: -2%;
  right: -2%;
  content: "";
  height: 40px;
  width: 40px;
}
.serviceCon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.serviceBox {
  margin-bottom: 40px;
}
.listDiv {
  margin-bottom: 40px;
}
/* -------------------------------------------------------------------servicesSection------------------------------------------------------------------------- */
/* -------------------------------------------------------------------properties------------------------------------------------------------------------- */
.propertiesSection {
  background-color: #ffffff;
  padding: 50px 0;
}
.propertyFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.propertiesSection h2 {
  background: linear-gradient(
    -90deg,
    #743490,
    #743490,
    #743490,
    #743490,
    #56b768,
    #56b768,
    #56b768,
    #56b768
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Montserrat";
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  text-transform: uppercase;
}

.property-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 0;
  margin: 10px 0;
  position: relative;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.property-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.property-card .cardDetails {
  padding: 20px 10px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.property-card .cardDetails h3 {
  font-size: 1.5rem;
  margin: 0;
  color: #212529;
  letter-spacing: 1px;
  font-weight: bold;
  font-family: "Bebas Neue", sans-serif;
}

.property-card .cardDetails p {
  font-size: 1rem;
  margin: 0;
  color: #555;
  font-family: "Montserrat";
  font-weight: 500;
}
.property-card .cardDetails a {
  background-color: #56b768;
  text-decoration: none;
  color: #ffffff;
  margin: 0;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 0px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  font-family: "Montserrat";
  letter-spacing: 1px;
}
.property-card::after {
  background-color: #56b768;
  bottom: 0;
  right: 0;
  content: "";
  height: 10px;
  width: 150px;
  position: absolute;
  z-index: 1;
  border-top-left-radius: 30px;
}
/* -------------------------------------------------------------------properties------------------------------------------------------------------------- */
/* -------------------------------------------------------------------Why choose us------------------------------------------------------------------------- */

#why-choose-us {
  background-color: #000000dd;
  padding: 60px 20px;
  text-align: center;
}

#why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: "Montserrat";
  line-height: 60px;
}
#why-choose-us h2 span {
  padding: 5px 10px;
  color: #ffffff;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature {
  /* background: #000000; */
  /* border: 1px solid #ddd; */
  border-radius: 10px;
  padding: 20px;
  width: calc(33.33% - 20px);
  max-width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature .style1 {
  background-color: #743490;
  top: 0%;
  left: 0;
  position: absolute;
  z-index: 1;
  content: "";
  width: 80px;
  height: 8px;
  border-bottom-right-radius: 8px;
}
.feature .style2 {
  background-color: #743490;
  top: 0%;
  left: 0;
  position: absolute;
  z-index: 1;
  content: "";
  width: 8px;
  height: 80px;
  border-bottom-right-radius: 8px;
}
.feature .style3 {
  background-color: #743490;
  bottom: 0%;
  right: 0;
  position: absolute;
  z-index: 1;
  content: "";
  width: 80px;
  height: 8px;
  border-top-left-radius: 8px;
}
.feature .style4 {
  background-color: #743490;
  bottom: 0%;
  right: 0;
  position: absolute;
  z-index: 1;
  content: "";
  width: 8px;
  height: 80px;
  border-top-left-radius: 8px;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.feature img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  color: #ddd;
  font-weight: bold;
  font-family: "Bebas Neue", sans-serif;
}

.feature p {
  font-size: 1rem;
  color: #ddddddaa;
  line-height: 1.6;
  font-family: "Montserrat";
  font-weight: 600;
}
/* -------------------------------------------------------------------Why choose us------------------------------------------------------------------------- */
/* -------------------------------------------------------------------Gallery------------------------------------------------------------------------- */
.gallerySection {
  background-color: #ffffff;
  padding: 50px 0;
}
.galleryFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallerySection h2 {
  margin-bottom: 30px;
  text-align: center;
  color: #743490;
  font-weight: 700;
  font-family: "Montserrat";
  font-size: 2.5rem;
  text-transform: uppercase;
  background: linear-gradient(
    -90deg,
    #743490,
    #743490,
    #743490,
    #743490,
    #56b768,
    #56b768,
    #56b768,
    #56b768
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.galleryImage {
  margin: 10px 0;
}
.galleryImage img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
}
.galleryImage {
  position: relative;
  overflow: hidden;
}
.galleryImage .mask {
  position: absolute;
  z-index: 1;
  background-color: #000000aa;
  content: "";
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 100%;
  border-radius: 10px;
}
.galleryImage:hover .mask {
  top: 0;
  transition: 0.5s ease-in-out;
}
.galleryImage .galleryImageData {
  position: absolute;
  z-index: 2;
  bottom: -20%;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ffffff;
  width: 100%;
  padding: 5px 0;
}
.galleryImage:hover .galleryImageData {
  bottom: 0;
  transition: 0.8s ease-in-out;
}
.galleryImage .galleryImageData h1 {
  color: #212529;
  font-family: "Bebas Neue", sans-serif;
}
.galleryImage .galleryImageData p {
  color: #000000;
  font-family: "Montserrat";
  font-weight: 500;
}
.galleryImage .galleryImageData p a {
  text-decoration: none;
  color: #743490;
  font-weight: 600;
}
/* -------------------------------------------------------------------Gallery------------------------------------------------------------------------- */
/* -------------------------------------------------------------------footer------------------------------------------------------------------------- */
.footerLogoDiv {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.footerLogoDiv .footerLogo img {
  width: 100px;
}
.footerLogoDiv p {
  color: #ffffffaa;
  margin: 0;
  font-family: "Montserrat";
}
.footerLogoDiv a {
  text-decoration: none;
  background-color: #ffffff;
  color: #212529;
  padding: 10px 20px;
  font-weight: 500;
  font-family: "Montserrat";
  border-radius: 30px;
}
.footerList {
  margin-bottom: 20px;
}
.footerList h3 {
  text-align: center;
  color: #ffffff;
  font-family: "Montserrat";
}
.footerList ul {
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footerList ul li {
  padding: 10px 0;
  list-style-type: none;
  font-family: "Montserrat";
  color: #ffffff;
}
.footerList ul li a {
  font-family: "Montserrat";
  color: #ffffff;
  text-decoration: none;
}
/* -------------------------------------------------------------------footer------------------------------------------------------------------------- */
/* -------------------------------------------------------------------otherpage------------------------------------------------------------------------- */
.pageNameContainer {
  padding: 30px 0;
  background-color: #000000dd;
}
.pageHeading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
/* .pageHeading::after {
  background-color: #ffffff50;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 30%;
  height: 2px;
  border-radius: 30px;
  position: absolute;
  z-index: 2;
} */
.pageHeading h1 {
  font-size: 64px;
  font-family: "Playfair Display", serif;
  color: #56b768;
  font-weight: 600;
}
.pageHeading nav ol li {
  font-size: 18px;
  font-family: "Bebas Neue", sans-serif;
  color: #ffffff !important;
  letter-spacing: 1px;
}
.pageHeading nav ol li a {
  color: #56b768 !important;
  text-decoration: none;
}
.contactFlex {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.contactContainer {
  background-color: #ffffff;
  padding: 50px 0;
}
.contactContainer h2 {
  text-align: center;
  color: #56b768;
  font-family: "Montserrat";
}
.contactDetails h3 {
  color: #56b768;
  font-family: "Bebas Neue", sans-serif;
  margin: 0;
}
.contactImage img {
  width: 400px;
  height: 400px;
  background-color: #56b768;
  padding-left: 5px;
  padding-top: 5px;
  border-radius: 30px;
}
.contactPara {
  text-align: center;
  width: 50%;
  margin: 10px auto;
  font-family: "Montserrat";
  font-weight: 500;
  color: #000000aa;
}
.boxContact a {
  text-decoration: none;
  color: #212529;
  font-family: "Montserrat";
  font-weight: 500;
}
.boxContact p {
  font-weight: 500;
  font-family: "Montserrat";
}
/* -------------------------------------------------------------------otherpage------------------------------------------------------------------------- */

/* Media Queries */
@media (max-width: 1440px) {
  .carousalDetails h1 {
    font-size: 60px;
  }
}
@media (max-width: 1200px) {
  .serviceBackCon::after {
    border: none;
  }
}
@media (max-width: 1180px) {
  .carousalDetails h1 {
    font-size: 50px;
  }
  .aboutMatter h1 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .aboutImageDIv {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .aboutMatter {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .contactPara {
    width: 75%;
  }
  .contactFlex {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .pageHeading h1 {
    font-size: 50px;
  }
  .pageHeading nav ol li {
    font-size: 16px;
  }
  .serviceBackCon::after {
    border: 2px dashed #56b768;
  }
  .serviceBackCon::after {
    height: 100%;
    width: 4px;
    left: 50%;
    /* background-color: #743490; */
    padding: 1px;
  }
  .servicesSection .serviceBox:nth-child(1) {
    margin-bottom: 5px;
    margin-top: 0;
  }
  .servicesSection .serviceBox:nth-child(2) {
    margin: 5px 0;
  }
  .servicesSection .serviceBox:nth-child(3) {
    margin-top: 5px;
    margin-bottom: 0;
  }
  .serviceCon {
    flex-direction: column;
    justify-content: space-between;
  }
  .aboutImageDIv img {
    width: 80%;
  }
  .valuesContainer p {
    text-align: left;
  }
  .aboutMatter {
    margin-bottom: 30px;
  }
  .carousalDetails p {
    width: 80%;
  }
  .footerList h3 {
    text-align: left;
  }
  .footerList ul {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .mobileListDiv {
    width: 100%;
  }
  .carousalDetails h1 {
    font-size: 45px;
  }
  .mobileListDiv.active {
    display: flex;
  }
  .mobileListDiv .navBarList {
    display: block;
  }

  .navBarList {
    display: none;
  }
  .toggleBarDiv {
    display: block;
  }
  .toggleBarDiv li {
    background-color: #743490;
    height: 3px;
    width: 27px;
    margin: 6px 0;
    list-style-type: none;
    border-radius: 30px;
  }
  .toggleBarDiv.active li:nth-child(1) {
    transform: rotate(50deg) translate(4px, 4px);
  }

  .toggleBarDiv.active li:nth-child(2) {
    opacity: 0; /* Hide the middle line */
  }

  .toggleBarDiv.active li:nth-child(3) {
    transform: rotate(-50deg) translate(9px, -8px);
  }
}
@media (max-width: 768px) {
  .galleryImage .galleryImageData {
    bottom: -25%;
  }
  .valueBox {
    align-items: center;
    justify-content: center;
  }
  .valuesContainer .valuesFlex p {
    text-align: center;
    font-size: 14px;
  }

  .feature {
    width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .aboutMatter h1 {
    font-size: 45px;
  }
  .contactImage img {
    width: 300px;
    height: 300px;
  }
  .contactPara {
    width: 90%;
  }
  .carousalDetails {
    justify-content: flex-start;
    padding-top: 50px;
  }
  .carousalDetails h6 {
    display: none;
  }
  .aboutImageDIv img {
    width: 90%;
  }
  .carousalDetails p {
    width: 90%;
  }
  .carousel .carousel-item img {
    height: 80vh;
  }
  .mobileListDiv {
    width: 100%;
  }
  .navBar {
    justify-content: space-between;
    padding: 10px;
  }
  .property-card {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .carousalBgImage1,
  .carousalBgImage2,
  .carousalBgImage3 {
    height: 80vh;
  }
  .carousalDetails {
    height: 80vh;
  }
  .aboutMatter h1 {
    font-size: 40px;
  }
  .navBar {
    margin-top: 0;
    border-radius: 0;
  }
  .galleryImage .galleryImageData {
    bottom: -10%;
  }
}
@media (max-width: 480px) {
  .feature {
    width: 100%;
  }
  .galleryImage .galleryImageData {
    bottom: -20%;
  }
}

/* Media Queries */
