/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html{
   scroll-behavior: smooth;
}

body{
  min-height: 100vh;
  background: aliceblue;
}

body, html {
  height: 100%;
  margin: 0;
  font: 400 15px/1.8 "Lato", sans-serif;
  color: #000;
}


.bgimg-1, .bgimg-2, .bgimg-3 {
  position: relative;
  opacity: 0.65;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}
.bgimg-1 {
  background-image: url("./images/home.jpg");
  height: 100%;
}

.caption {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  color: #000;
}

.caption span.border {
  background-color: #111;
  color: #fff;
  padding: 18px;
  font-size: 25px;
  letter-spacing: 10px;
}

h3 {
  letter-spacing: 2px;
  text-transform: uppercase;
  font: 20px "Lato", sans-serif;
  color: #111;
}

nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #1A3D6D;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo a{
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

body a{
  text-decoration: none !important;
}

nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}

nav .navbar .logo img{
    width: 40px;
    border-radius: 12px;
  }

nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

nav .navbar .links li a:hover{
  color: #FFD700
  
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #1A3D6D;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #1A3D6D;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #1A3D6D;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #1A3D6D;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}

.phone-no a{
    font-size: 20px;
  }

@media (max-width:920px) {
  .nav.phone-no{
    display: block !important;
  }
  .phone-no a{
    font-size: 18px;
  }
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 20px;
  }

  nav .navbar .logo img{
    width: 30px;
    border-radius: 8px;
  }

  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  .container .logo span{
    display: none;
  }
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 320px;
    width: 100%;
    background:  #1A3D6D;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #fff;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}

.image-container .status_img{
  position:absolute;
  width: 100px;
  right: 35%;
  top: -75px;
}

@media (max-width:600px){
.image-container {
  width: 300px;
  min-height: 300px;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden; /* Hides overflowing parts of the image */
}

.image-container .status_img{
  position:absolute;
  width: 100px;
  right: 35%;
  top: -200px;
}


}

@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}



 .socialmediaicons span{
    font-size: 20px;
  }

.socialmediaicons  a{
    font-size: 32px;
  }

@media (max-width:800px){
  .socialmediaicons span{
    font-size: 16px;
  }

  .socialmediaicons  a{
    font-size: 24px;
  }

}


#contact-us div{
  margin-bottom: 10px;
}


 .icon-bar {
  position: fixed;
  right: 10px;
  top: 90%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
} 

.icon-bar a {
 display: block;
 padding: 12px 18px;
 color: #448edd;
 border-radius: 26px;   
}
.whatsapp {
  background: #53d365;
  color: #448edd;
}

/*#3E8DA8*/

.socialmediaicons2 .fa {
    padding: 10px;
    font-size: 24px;
    width: 40px;
    border-radius: 20%;
    text-decoration: none;
    margin: 5px 2px;
    text-align: center;
    margin-bottom: 10px;
}


/* .socialmediaicons .fa-facebook {
    background: #3B5998;
    color: white;
}

.socialmediaicons .fa-youtube {
    background: #bb0000;
    color: white;
} */

/* .socialmediaicons .fa-instagram {
    background: #125688;
    color: white;
} */

.container section{
  line-height: 2.5rem;
  margin: 20px;
}

.container section p{
  text-align: justify;
}

.container hr{
  padding: 10px;
  margin: 20px auto;
}

.image-container {
  width: 500px;
  min-height: 300px;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden; /* Hides overflowing parts of the image */
}

.image-container .project-name{
  color: #fff;
  font-size: 20px;
  text-transform:uppercase;
  font-weight: 600;
  border-bottom: 4px solid #fff;
  background: #1A3D6D;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
  padding: 5px;
}

.image-container .project-name:hover{
  color: #FFD700;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit:contain; /* Fills the container, cropping if necessary */
  object-position: bottom; /* Centers the image within the container */
}


.image-container .broucher {
  border-bottom: 4px solid #fff;
  object-position: center; /* Centers the image within the container */
}

.image-cont{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Define the keyframes for scaling in */
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply the animation to the tile element */
.image-container {
  animation: scaleIn 0.4s ease-in-out forwards;
  /* Add other tile styling here */
}


.project-cont{
  background: #fff;
  padding: 20px 10px;
  /* box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 3px 10px 0 rgba(0, 0, 0, 0.1); */
}

.image-cont .image-container {
  background: antiquewhite;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display: inline-flex;
  justify-content: center;
  /* padding: 10px 15px; */
  margin: 10px;
  margin-top: 20px;
  flex-flow: column;
  text-align: center;
}

.project-info{
  margin-bottom: 10px;
}

.project-info i{
  font-size: 16px;
}

.project-info .plots{
  font-size: 20px;
  color: red;
}

#Plot h3{
  margin-bottom: 15px;
  color: green !important;
}

.project-info button{
  font-size: 14px;
  padding: 2px 10px;
  text-align: center;
  margin: 10px 5px;
  border: none;
  border-radius: 4px;
}

.footer{
  margin-bottom: 80px;
}

.container-cont{
  max-width: 870px;
  margin: 0 auto;
}

.carousel-caption .description{
    background: #ffffffbf;
    color: #000;
    font-size: 20px;
    display: inline-block;
    padding: 10px;
    border-radius: 6px;
}

.carousel-control-next, .carousel-control-prev{
  /* background: #ffffffbf !important; */
}

section{
  margin-bottom: 10px;
}

section p{
 font-size: 16px;
}

section h2{
  text-decoration: underline;
  color: #1A3D6D;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 20px;
}

.project-info .title{
  margin-top: 5px;
  color: #1A3D6D;
  text-transform: uppercase;
  font-size: 18px;
}

.project-info .plots{
  margin-top: 5px;
  font-size: 16px;
}

.project-info .price{
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 18px;
}

.project-info .price a{
  margin-left: 15px;
}

hr {
  width: 5%; /* Shorter length */
  border: none; /* Remove default border */
  border-top: 1px solid #ccc; /* Thin, light gray line */
  margin: 15px auto; /* Center the line and add vertical spacing */
  padding: 30px;
}

.dd-cont{
  text-align: center;
}

.dd-cont label{

  font-size: 18px;
  font-weight: 500;
}
.dd-cont select{
  font-size: 16px;
  cursor: pointer;
  padding: 5px 8px;
  font-weight: 700;
}

.links ul, .links li{
  margin: 0 auto;
}

#Plot ul , #Plot li{
  margin: 0px !important;
}

 /* Features */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 50px;
      text-align: center;
    }
    .feature-box {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .feature-box i {
      font-size: 40px;
      color: #1A3D6D;
      margin-bottom: 15px;
    }
    .feature-box h3 {
      margin: 10px 0;
      color: #1A3D6D;
    }