@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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-smooth iframe {
  pointer-events: none;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

body,
html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

::selection {
  color: #fff;
  background: #ba9027a5;
}

a {
  text-decoration: none;
  color: #000;
}

.backround-fixed{
  background-attachment: fixed;
}

.banner{
  width: 100%;
  background: linear-gradient(to left, #ddc375, #ba9027, #ddc375);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}
.banner p, b{
  font-size: 14px;
}
.banner div{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav{
  width: 100%;
  margin: 0 auto !important;
  padding: 0.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 0px 20px #0000003e;
  position: fixed;
  top: 0%;
  z-index: 9999;
}

.nav .logo{
  width: 10%;
  align-items: center;
}

.nav .logo img{
  width: 30%;
}

.nav ul {
  display: flex;
  align-items: center;
}

.nav ul li {
  list-style: none;
}
.nav ul a {
  width: 20%;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 5px 15px;
  border-right: 1px solid #ba9027;
}
.nav ul a.active {
  color: #ba9027;
}
.nav ul li:last-child a {
  border: none;
}
.nav ul a:hover {
  color: #ba9027;
}

.nav .cta {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: #ba9027;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta:hover {
  scale: 1.07;
  box-shadow: 0 8px 15px #ba90276e;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    width: max-content;
  display: none !important;
  justify-content: start;
  position: absolute;
  background-color: #f9f9f984;
  backdrop-filter: blur(5px);
  min-width: 170px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Links inside the dropdown */
.dropdown-content a {
  width: 90% !important;
  margin: 0 auto;
  color: black;
  margin: 0 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-right: none !important;
  border-bottom: 1px solid #ba9027;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  color: #ba9027;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block !important;
}

/* Hero CSS */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: url('./img/Hero_home.jpg');
  background-size: cover;
  background-attachment: fixed;
}
.hero img{
  width: 8%;
}
.hero h1 {
  width: 50%;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 hr {
  width: 70%;
  margin: 1.5rem 0;
  margin-bottom: 2rem;
  height: 2px;
  border: none;
  background: linear-gradient(to left, #ddc375, #ba9027, #ddc375);
}

.hero .cta {
  padding: 1rem 1.5rem;
  background: #ba9027;
  border-radius: 15px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}




/* Title CSS */
.title {
  width: 70%;
  margin-top: 4rem !important;
  margin: 0 auto;
  text-align: center;
}
.title h2 {
  color: #ba9027;
  font-weight: 500;
  line-height: 1;
}
.title h2:nth-child(2) {
  font-size: 2.5rem;
  color: #000;
  font-weight: 700;
}
.title p {
  margin: 1rem 0;
}






/* About CSS */
.about-container {
  width: 70%;
  margin: 1rem auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.about-item {
  min-width: 23%;
  max-width: 23%;
  height: 150px;
  background: #ba9027;
  border-radius: 15px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.about-item img{
  height: 50%;
}
.about-item h3 {
  font-weight: 400;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1;
}

/* Section CSS */
.section {
  width: 100%;
  height: fit-content;
  margin: 4rem 0;
  padding: 2rem;
  background: #fff6e3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Property CSS */
.property-container {
  width: 70%;
  margin: 2rem auto;
  display: flex;
  justify-content: space-around;
}
.property-item {
  width: 30%;
  height: fit-content;
  position: relative;
  background: #fff;
  border: 2px solid #ba9027;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.property-item img {
  width: 100%;
  height: 200px;
}
.property-item .detail {
  padding: 1rem;
}
.detail div {
  padding: 10px 0;
  border-bottom: 1px solid #ba9027;
  line-height: 1.2;
}
.detail div:last-child {
  border: none;
}

.detal div b {
  font-weight: 400 !important;
}
.property-item p {
  font-size: 0.9rem;
  font-weight: 500;
}
.property-item i {
  color: #ba9027;
}
.property-item h3 {
  color: #ba9027;
  font-size: 1.3rem;
}
.property-item h3 span {
  font-size: 1rem;
  color: #000;
  font-weight: 600;
}

.hover{
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) !important;
}
.hover:hover {
  margin-top: -2rem;
}

/* Swiper styles */
.swiper-container {
  width: 70%;
  margin: 2rem auto;
  display: flex;
  align-items:center;
  flex-direction: column;
}

.swiper-section-2{
  width: 70% ;
  margin: 2rem auto;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column;
}

.swiper-slide {
  width: 30% ; /* Each property-item should take up 30% width */
  /* display: flex !important;
  justify-content: space-around; */
}

.swiper-pagination, .swiper-pagination2 {
  position: relative !important;
  bottom: -20px;
  text-align: center;
}

.swiper-pagination-bullet {
  background: #ba9027 !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #000;
}

.view-all{
  margin: 2rem 0;
  padding: 1rem 1.3rem;
  background: #ba9027;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.view-all:hover{
  scale: 1.08;
  box-shadow: 0 8px 25px #ba902760;
}


.section2 {
  margin: 0rem 0;
  padding: 0 2rem;
}

.section2 {
  position: relative;
  width: 100%;
}

.swiper-section-2 {
  display: flex;
  flex-wrap: nowrap;
}

.swiper-slide {
  min-width: 300px; /* Set width for the swiper slide */
}

.horizantal-scroll {
  position: relative; /* Necessary for pinning */
  z-index: 1000;
  background-color: white;
  padding: 20px;
}


.property-container {
  display: flex;
  /* Ensure the container width fits all cards */
  width: max-content; /* This allows the container to resize based on the number of child elements */
}

.card {
  flex: 0 0 auto; /* Prevent cards from shrinking */
  width: 300px; /* Set the width for each card */
  margin-right: 20px; /* Add spacing between the cards */
}



.section2 .card {
  width: 80% !important;
  height: fit-content;
  margin-right: 2rem;
  display: flex;
  border-radius: 22px;
  border: 2px solid #ba9027;
  overflow: hidden;
  position: relative;
}

.section2 .card img {
  width: 50%;
  height: auto;
  object-fit: cover;
  background: #ba9027;
}

.card .card-right{
  width: 50%;
  position: relative;
}

.card .detail {
  width: 100%;
  padding: 1rem;
}
.card .detail div {
  padding: 1rem;
}
.card h4{
  font-size: 1.8rem;
}
.card b {
  font-size: 1.2rem;
  font-weight: 600;
}
.card p {
  font-size: 1.3rem;
  font-weight: 400;
}
.card i {
  color: #ba9027;
}
.card h3 {
  color: #ba9027;
  font-size: 2rem;
}
.card h3 span {
  font-size: 1.5rem;
  color: #000;
  font-weight: 500;
}
.bottom{
  width: 100%;
  padding: .5rem 2rem;
  background-color: #ba9027;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 2rem;
}
.bottom i{
  color: #fff;
  font-size: 1rem;
  border: 2px solid #fff;
  border-radius: 100px;
  padding: .8rem;
  background-color: #ba9027;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.bottom i:hover{
  margin-top: -1rem;
  box-shadow: 0 5px 10px #ddc375;
}





/* Plan CSS */
.plan-container {
  width: 70%;
  margin: 2rem auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.plan-container .img {
  min-width: 32%;
  max-width: 32%;
  margin-bottom: 1rem;
  height: 200px;
  border-radius: 22px;
  background-size: cover !important;
  display: flex;
  align-items: end;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.plan-container .img:hover{
  scale: 1.07;
}
.img p{
  color: #fff;
  padding: 1rem;
  width: 100%;
  background: linear-gradient(to top, #000, transparent);
}




/* Team CSS */
.team {
  width: 90% !important;
  margin: 2rem auto;
  justify-content: center;
  gap: 20px;
}
.team .about-item {
  min-width: 20%;
  max-width: 20%;
  height: 200px;
  background: none;
  color: #ba9027;
}
.team .about-item img {
  width: 100%;
  height: 90%;
  background-color: #fff;
  border-radius: 22px;
}




/* Brand CSS */
.brand-container {
  width: 90% !important;
  margin: 2rem auto;
  padding: 2rem 0;
}
.brand-container .about-item{
  min-width: 16% !important;
  max-width: 16% !important;
  height: fit-content;
}
.brand-container .about-item img{
  width: 70% !important;
  height: 50px !important;
  object-fit: contain !important;
  border-radius: 0px !important;
}

/* Footer CSS */
.footer {
  padding-top: 1rem;
  background-color: #ba9027;
  background: url('./img/Asset\ 27@2x-100.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-inner {
  width: 70%;
  padding: 2rem 0;
  margin: 1rem auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.footer-inner .column:nth-child(1) {
  width: 30%;
}
.footer-inner .column:nth-child(1) img {
  width: 40%;
}
.footer-inner .column:nth-child(2) {
  width: 12%;
}
.footer-inner .column:nth-child(3) {
  width: 30%;
}
.footer-inner .column:nth-child(4) {
  width: 22%;
}

.footer-inner b{
  margin-bottom: 2rem !important;
}

.footer-inner b,
.footer-inner p,
.footer-inner a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.footer-inner p {
  margin-top: 10px;
  font-weight: 300;
}
.footer-inner a {
  font-weight: 300;
}

.footer-inner a:hover{
  color: #ba9027;
}

.location{
  display: flex;
  gap: 0.5rem;
}

.location p{
  margin: 0px;
  padding: 0px;
}

.footer-inner .p-bor-bottom {
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
.footer-inner .p-bottom {
  padding-bottom: 2rem;
  margin-bottom: 1rem;
}
.footer-inner i{
  color: #ba9027;
  font-size: 20px;
}
.social-icon{
  display: flex;
  gap: 0.5rem;
}
.social-icon i{
  font-size: 15px;
  margin-top: 1rem;
  border-radius: 100px;
  border: 1px solid #fff;
  color: #fff ;
  cursor: pointer;
  min-width: 2rem;
  max-width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon i:hover{
  color: #ba9027;
  border-color: #ba9027;
}

.footer-copy {
  padding: 1rem;
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.footer-copy p {
  font-size: 12px;
  color: #fff;
}
.footer-copy a,
.footer-copy p:nth-child(2) {
  color: #fff;
  font-size: 12px;
}
.footer-copy a {
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .footer-inner {
    width: 90%;
    flex-direction: column;
  }
  .column {
    width: 100% !important;
  }
  .footer-copy {
    width: 90%;
    padding-bottom: 2rem;
  }
  .footer-inner b,
  .footer-inner p,
  .footer-inner a {
    font-size: 18px;
  }
}

/* All Pages Start Here */
.header {
  width: 100%;
  height: 30vw;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  background-position: 0% !important;
  text-align: center;
  color: #fff;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 500;
}

.service-section {
  width: 70%;
  margin: 2rem auto;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.service-section img {
  width: 45%;
}

.service-content {
  width: 50%;
}
.service-content h2 {
  line-height: 1;
  margin-bottom: 10px;
}
.service-content h2{
  font-size: 1.8rem;
}
.service-content p{
  font-size: 1rem;
  text-align: justify;
}
.reverse{
  flex-direction: row-reverse ;
}



/* Contact Page CSS */
.form {
  width: 70%;
  margin: 2rem auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.form input {
  min-width: 49% !important;
  max-width: 49% !important;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 2px solid #ba9027;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.iti{
  width: 49% !important;
  position: relative;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel]{
  min-width: 100% !important;
}


.form textarea {
  width: 100%;
  height: 30vh;
  padding: 1rem;
  border: 2px solid #ba9027;
  border-radius: 15px;
}

.form .cta {
  padding: 0.5rem 2rem;
  margin: 1rem auto;
  background: #ba9027;
  border-radius: 12px;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.propForm{
  /* display: none; */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  background: #ffffffc7;
  padding-top: 4rem !important;
  backdrop-filter: blur(5px);
  border-radius: 22px;
  box-shadow: 0 0 15px #0000004f;
}
#closeForm{
  font-size: 2rem;
  color: #ba9027;
  position: absolute;
  top: 2%;
  right: 1%;
}


/* About Page CSS */
.mission-section {
  width: 100%;
  padding: 4rem;
  background: url('./img/Asset\ 35-100.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mission {
  width: 70%;
  margin: 2rem auto;
  padding-top: 2.5rem !important;
  padding: 2rem;
  border: 2px solid #ffffff;
  border-radius: 22px;
  color: #fff;
  text-align: center;
  position: relative;
}
.mission h2 {
  font-size: 2.5rem;
  background: #ba9027;
  padding: 0.2rem 1rem;
  border-radius: 5px;
  position: absolute;
  top: -3%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.value-section{
    width: 70%;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.value{
    min-width: 49%;
    max-width: 49%;
    margin: 1rem 0;
    border-radius: 22px;
    border: 2px solid #ba9027;
    display: flex;
    overflow: hidden;
}
.value h2{
    min-width: 50px;
    background: #ba9027;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.value div{
    padding: 1rem;
}
.value h3{
    color: #ba9027;
}


.founder-section{
  width: 100%;
  margin-top: 4rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  background: url('./img/Asset\ 29-100.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}
.founder-inner{
  width: 90%;
  margin: 0rem auto;
  display: flex;
  justify-content: space-around;
}
.founder-section img{
  width: 40%;
  object-fit: cover;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  
}
.founder-section .service-content{
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-section .service-content h2{
  color: #ba9027;
  margin: 0px;
  font-size: 2rem;
  line-height: 1;
}
.founder-section b{
  line-height: 1;
  font-weight: 600;
  margin: 20px 0;
}

.service-content h3{
  color: #ba9027;
  font-size: 2rem;
  margin: 0px;
}





/* Properties Page CSS */

/* Filter Property CSS */
.filter-section{
  width: 70%;
  margin: 2rem auto;
  padding: 0rem;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filters{
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center ;
  justify-content: space-between;
}

.filters select{
  padding: 0.5rem 1rem;
  height: 100%;
  border: none;
  color: #000000;
  font-size: 0.8rem;
  background: white !important;
}

.filters .line{
  width: 1.8px;
  height: 2rem;
  background-color: #ba9027;
  opacity: 70%;
  margin: 0 1rem;
}

.filter-section button{
  min-width: 150px;
  padding: 0 1rem;
  border: none;
  height: 100%;
  background-color: #000;
  color: #fff;
  font-size: 1rem;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);


}

.filter-section button:hover{
  padding: 0 2rem;
}







/* Property List */
.property-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.property-card {
  width: 50%;
  height: fit-content;
  margin: 1rem 0;
  display: flex;
  border-radius: 22px;
  border: 2px solid #ba9027;
  overflow: hidden;
  position: relative;
}

.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-card .card-right{
  width: 50%;
  position: relative;
}

.property-card .detail {
  width: 100%;
  padding: 1rem;
}
.property-card .detail div {
  padding: 1rem;
}
.property-card .detail h4{
  font-size: 1.3rem;
}
.property-card b {
  font-size: 1rem;
  font-weight: 600;
}
.property-card p {
  font-size: 1.1rem;
  font-weight: 400;
}
.property-card i {
  color: #ba9027;
}
.property-card h3 {
  color: #ba9027;
  font-size: 2rem;
}
.property-card h3 span {
  font-size: 1.5rem;
  color: #000;
  font-weight: 500;
}

.property-card .bottom{
  width: 100%;
  padding: .5rem 2rem;
  background-color: #ba9027;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 2rem;
}
.bottom i{
  color: #fff;
  font-size: 1rem;
  border: 2px solid #fff;
  border-radius: 100px;
  padding: .8rem;
  background-color: #ba9027;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.bottom i:hover{
  margin-top: -1rem;
  box-shadow: 0 5px 10px #ddc375;
}

.carousel-container {
  position: relative;
  width: 50%;
  height: auto;
}

.property-image {
  width: 100% !important;
  height: 100% !important;
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 1.5rem;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.prev-btn:hover, .next-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.no-results {
  font-size: 2rem;
  margin: 2rem;
  color: #ba9027;
  text-align: center;
  margin: 20px 0;
}




/* Top Developer CSS */
.top-developer-section{
  width: 70%;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-developer-item{
  min-width: 48%;
  max-width: 48%;
  height: 300px;
  margin-bottom: 2rem;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
  position: relative;
  cursor: auto;
}

.top-developer-item .prop-bg{
  width: 100%;
  height: 90%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.top-developer-item h5{
  width: 100%;
  text-align: right;
  padding: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.top-developer-item img{
  width: 150px;
  height: 150px;
  object-fit: cover;
  background: #ffffff;
  position: absolute;
  bottom: 0;
  left: 1%;
  box-shadow: 0 0 5px #000000 !important;
}
/* .top-developer-item:hover{
  scale: 1.08;
} */
.form h5{
  width: 100%;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
}

.form h5 i{
  color: #7d7d7d;
  font-size: 0.8rem;
}


.navbar{
  display: none;
}
.drawer{
  display: none;
}


.iti--container{
  z-index: 999999 !important;
}


.form h1{
  text-align: center;
  width: 100%;
  line-height: 1;
  color: #ba9027;
}
.form h2{
  font-size: 1.5rem;
  width: 100%;
  text-align: center;
  margin: 1rem 0;
}
#resume{
  min-width: 100% !important;
  cursor: pointer;
}



@media screen and (max-width: 768px) {
  .nav {
    display: none !important;
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    background-color: #fff;
    box-shadow: 0 0px 10px #00000040 !important;
    color: #fff;
    position: fixed;
    top: 0%;
    width: 100%;
    z-index: 2;
  }

  .logo{
    width: 30px !important;
  }
  .logo img{
    width: 100%;
  }
  .drawer .logo {
    position: absolute;
    bottom: 5%;
  }
  .drawer .logo img {
    width: 100%;
  }

  .menu-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }

  .menu-icon .bar {
    width: 25px;
    height: 3px;
    border-radius: 15px;
    background-color: #ba9027;
    margin: 3px 0;
  }

  .drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #fff;
    color: #000;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    padding: 20vh 7vw;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.111);
    z-index: 999;
  }

  .drawer a {
    display: block;
    color: #000;
    text-decoration: none;
    margin: 15px 0;
    font-size: 20px;
  }

  .drawer a:hover {
    color: #ba9027;
  }

  a.active {
    color: #ba9027;
    border-bottom: 2px solid #ba9027;
  }

  .drawer .close {
    font-size: 28px;
    color: #fff;
    background-color: #ba9027;
    width: 50px;
    height: 50px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 3%;
    right: 3%;
  }

  .cta {
    padding: 2vw 5vw;
    background-color: #ba9027;
    color: #fff !important;
    font-weight: 700;
    gap: 5px;
    text-align: center;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .drawer.show {
    transform: translateX(0);
  }

  .hero{
    margin-top: 2rem;
    min-height: 60vh;
    background-size: 100% !important;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero h1{
    font-size: 2rem;
    width: 50%;
  }
  .hero .cta{
    padding: 1rem 1rem;
    font-size: 1rem;
  }

  .title{
    width: 90%;
  }

  .about-container{
    width: 100%;
    flex-wrap: wrap;
  }
  .about-item{
    min-width: 30%;
    height: 100px;
    padding: 1rem;
  }
  .about-item img{
    height: 50%;
  }

  .section{
    margin: 0rem 0;
  }

  .title{
    width: 98%;
  }
  .swiper-container{
    width: 100%;
  }
  .property-item{
    width: 30%;
  }

  .swiper-section-2{
    width: 100%;
  }

  .section2{
    padding: 0 0rem;
  }
  .section2 .card, .property-card{
    width: 100% !important;
    flex-direction: column;
  }
  .section2 .card img, .property-card .carousel-container img{
    width: 100% !important;
    height: 200px;
  }
  .property-card .carousel-container img{
    width: 100% !important;
    height: 100% !important;
  }
  .card .card-right{
    width: 100%;
  }
  .card .detail{
    padding: 0.2rem;
  }

  .plan-container{
    width: 100%;
  }
  .plan-container .img{
    min-width: 32%;
    height: 100px;
    border-radius: 12px;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .plan-container .img:nth-child(4), .plan-container .img:nth-child(5){
    height: 120px !important;
  }
  .service-btn{
    min-width: 48% !important;
    margin-bottom: 0.5rem;
  }

  .brand-container .about-item{
    min-width: 28% !important;
    padding: 0rem !important;
  }



  .propForm{
    width: 90%;
    padding-top: 3rem !important;
  }
  .form{
    flex-direction: column;
  }
  .form input{
    min-width: 100% !important;
  }
  .form .cta{
    padding: 0.5rem 1rem;
    font-size: 14px;
  }
  .iti{
    min-width: 100%;
    margin-bottom: 0.7rem;
  }

  .form h1{
    font-size: 1.5rem;
  }
  .form h2{
    font-size: 1.2rem;
  }


  .footer-copy{
    padding: 0rem;
    padding-bottom: 2rem;
    flex-direction: column;
  }




  .header{
    padding: 0rem 1rem !important;
    height: 45vh;
    margin-top: 3.5rem;
    line-height: 1;
    background-size: cover !important;
  }
  .filter-section{
    width: 100% !important;
    border-radius: 15px;
  }
  .filters{
    flex-direction: column;
    align-items: baseline;
    padding: 1rem 0;
  }
  .filters select{
    min-width: 90%;
    padding: 10px 0 !important;
  }
  .filters .line{
    width: 80%;
    height: 1px;
  }
  .filter-section button{
    min-width: 100px;
    padding: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .card-right{
    align-content: space-between !important;
  }

  .property-card{
    width: 95%;
    border-radius: 5px;
    flex-direction: row;
  }

  .carousel-container{
    width: 50%;
  }
  .property-card .detail{
    height: 80% !important;
  }

  .property-card .detail, .property-card .detail div{
    padding: 5px;
  }
  .property-card h4, .property-card h3, .property-card h3 span{
    font-size: 16px !important;
  }
  .property-card p{
    font-size: 14px !important;
  }
  .property-card b{
    font-size: 14px !important;
  }
  .property-card .bottom{
    height: 20% !important;
    padding: 5px;
    gap: 10px !important;
    bottom: 0%;
  }
  .bottom i{
    width: 40px;
    height: 40px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  .service-section{
    width: 95%;
    flex-direction: column;
    gap: 1rem;
    padding: 0rem;
    padding-bottom: 2rem;
  }
  .service-section img{
    width: 100%;
  }
  .service-section .service-content{
    width: 100%;
  }

  .mission-section{
    padding: 1rem;
  }
  .mission{
    width: 100%;
    line-height: 1.1;
    padding: 1rem;
  }
  .mission h2{
    font-size: 25px;
  }

  .value-section{
    width: 95%;
    margin: 2rem 0;
  }
  .value{
    min-width: 100%;
    margin: 5px;
    line-height: 1.2;
  }



  .form{
    width: 100%;
  }


  .top-developer-section{
    margin: 1rem auto;
    width: 98%;
  }

  .top-developer-item{
    min-width: 100%;
  }

  .founder-inner{
    width: 95% !important;
    flex-direction: column;
    gap: 1rem;
  }
  .founder-section img{
    width: 100%;
  }
  .founder-section .service-content{
    width: 100% !important;
  }
  .founder-section b{
    margin: 5px 0;
    margin-bottom: 10px;
  }


}