@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
  font-family: 'PT Sans', sans-serif;
  overflow-x: hidden;
}

/* .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
} */
.view-more-btn {
  display: none;
}
.hero-section {
  background: url('path-to-hero-image') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .navbar-light .navbar-nav .nav-link{
    color:white;
    font-size: 18px;
    font-weight: 500;
}
li.nav-item {
    margin: 0 20px;
} */

.views {
  cursor: pointer;
}
/* Home page */
/* Banner Section */
.banner-sec {
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  /* height: 400px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* top: -110px; */
  /* z-index: -999; */
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 0.25rem;
  color: white;
  text-align: right;
}

.hero-content {
  padding: 0;
  margin: 0;
  width: 100%;
}

.hero-content .row {
  margin: 0;
}

.hero-content .col-md-6 {
  padding-left: 0;
}

.hero-content .line {
  border-top: 1px solid white;
  /* margin-top: 10px; */
  margin-bottom: 10px;
  animation: drawLine 4s ease-in;
  width: 0;
  animation-fill-mode: forwards;
  position: absolute;
  left: 0;
  right: 0;
}
.propertyline {
  border-top: 1px solid rgb(5, 5, 5);
  /* margin-top: 10px; */
  margin-bottom: 10px;
  animation: drawLinehead 4s ease-in;
  width: 0;
  animation-fill-mode: forwards;
  position: relative;
  left: 0;
  right: 0;
}
@keyframes drawLinehead {
  from {
    width: 0;
    right: 0; /* Start from the right */
  }
  to {
    width: 50%;
    right: 0; /* End at the right */
  }
}
.view-more-btn {
  background-color: black;
  color: white;
  font-size: 12px;
  padding: 3px 15px;
  border: 0;
  outline: none;
}

@keyframes drawLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.hero-content p {
  font-size: 16px;
  font-weight: 300;
  text-align: right;
  color: white;
  letter-spacing: 0.1rem;
}

.banner-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.social-icons {
  position: absolute;
  bottom: 10px;
  right: 10px;
  margin-top: 0;
}

.social-icon {
  color: white;
  margin-right: 15px;
  text-decoration: none;
  font-size: 1.5rem;
}
.divder {
  border-bottom: 1px solid white;
  width: 41%;
  float: right;
  margin-top: -30px;
}

.button-cat {
  border: none;
  background-color: transparent;
  margin: 0 20px;
  font-weight: 600;
  outline: 0;
}
.button-cat:focus {
  outline: none; /* Removes the default focus outline */
  border: none; /* Removes the border if any */
}

.active {
  font-size: 22px;
  border: 0;
}

#all-property,
#residential-property,
#interior-property,
#commercial-property {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.view-all-container {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 20px;
}
.prop-list-row3 {
  width: 100% !important;
}

.prop-list-all {
  width: 22%;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #ddd;
  background: #fff;
  overflow: hidden;
  position: relative; /* overlay text ke liye */
}

.project-image-card {
  width: 100%;
  height: 380px; /* fix card height */
  overflow: hidden;
}

.project-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* image auto adjust */
  display: block;
}

.property-name-all,
.location-name-all {
  position: absolute;
  left: 0;
  right: 0;
  padding: 8px 12px;
  color: #fff;
  margin: 0;
  text-align: left;
  background: rgba(0, 0, 0, 0.5);
}

.property-name-all {
  bottom: 30px; /* location ke upar */
  font-size: 16px;
  font-weight: 600;
}

.location-name-all {
  bottom: 0;
  font-size: 14px;
}

.aboutus-main {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.aboutus-description {
  width: 50%;
}

.cover-aboutus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.cover-aboutus img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.aboutus-description .des1 {
  margin-right: 10px;
  font-size: 16px;
  line-height: 1.688rem;
  color: #000000;
}

.service-mainhere {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.service-box {
  color: #363636;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

@media (min-width: 320px) and (max-width: 767px) {
  .prop-list-all {
    width: 95%;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #ddd;
    background: #fff;
    overflow: hidden;
    position: relative;
  }
  .aboutus-description {
    width: 95%;
  }
  .cover-aboutus {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
  .service-mainhere {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}

.prop-list {
  width: 21%;
  margin: 20px 20px;
  float: left;
  height: 220px;
}
.property-img {
  width: 100%;
  height: 150px;
}
.property-name {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}
.location-name {
  font-size: 13px;
  margin-top: -5px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 19px;
}

.readmore-btn {
  background-color: black;
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
}
.about-img {
  width: 100%;
}
.about-sec {
  margin-top: 60px;
}
.cntct {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.innercntct {
  display: block;
}
.left-cntct {
  width: 60%;
}
.right-cntct {
  width: 40%;
  padding-left: 140px;
}
.cntct-btn {
  float: right;
}
.mobile {
  display: none;
}
.readmore-btn:hover {
  color: black;
  background-color: transparent;
  border: 1px solid #000000;
}
.view-more-btn:hover {
  color: white;
  text-decoration: none;
}
@media only screen and (max-width: 850px) {
  .container,
  .container-sm {
    max-width: 850px;
  }

  .home-contact {
    margin: 0 !important;
  }
  .form-wrapper {
    flex: 1 1 50%;
    max-width: 267px !important;
  }
  .contact-section {
    margin: 0px 0px !important;
    margin-bottom: 50px;
  }
  .quick-links,
  .Projects,
  .contact-us {
    margin-left: 0 !important;
  }
  .prop-list {
    width: 46%;
    margin: 20px 8px 20px 8px !important;
    float: left;
  }
  .main-heading {
    font-size: 28px;
  }
  .readmore-btn {
    font-size: 14px;
  }
  .form-wrapper {
    flex: 1 1 50%;
    max-width: 241px;
  }
  .heading h1,
  .about h1,
  .content2 h2,
  .form-container h2,
  .form-wrapper h2 {
    font-size: 28px !important;
  }
  .row.about {
    margin: 0 0 !important;
  }
  .content-wrapper {
    margin: 50px 10px 10px 10px !important;
  }
  .section {
    margin: 0 0;
  }
  .box,
  .box2 {
    margin: 0 0 !important;
  }
  .form-container {
    width: 330px !important;
    max-width: 330px !important;
  }
  .social-icons1 {
    margin: 4px 0 0 0px !important;
  }
  .section {
    margin: 0 20px !important;
  }
}
/* @media only screen and (max-width: 350px) {} */
@media only screen and (max-width: 400px) {
  .button-cat {
    font-size: 10px !important;
    margin: 0 6px !important;
  }
  .active {
    font-size: 16px !important;
  }
  .prop-list {
    width: 44% !important;
    margin: 20px 8px 20px 8px !important;
    float: left;
  }
  .main-heading {
    font-size: 24px !important;
  }
}
@media (max-width: 600px) {
  /* body{
    overflow-x: hidden;
} */
  html {
    overflow-x: hidden;
  }
  /* .navbar {
        margin: 0 10px;
        padding: 5px 0; 
    } */

  /* .logo {
        height: 60px;
    } */

  /* .navbar-light .navbar-nav .nav-link {
        font-size: 16px; 
        padding: 8px 10px;
    } */

  /* .navbar-nav .nav-link {
        margin-left: 10px;
    }

    .navbar-toggler {
        padding: 0;
        
    }
     */
  .nav {
    top: -83px;
  }
  .button-cat {
    font-size: 12px !important;
    margin: 0 10px;
  }
  .active {
    font-size: 18px !important;
  }
  .about-sec {
    margin-top: 20px;
  }
  .main-heading {
    font-size: 24px;
    font-weight: 700;
  }
  .readmore-btn {
    font-size: 13px;
    margin-top: 0;
  }
  .desktop {
    display: none;
  }
  .mobile {
    margin: 15px 0;
    display: block;
  }
  .left-cntct {
    width: 100%;
  }
  .right-cntct {
    width: 100%;
    padding-left: 0;
  }
  .cntct {
    display: block;
  }
  .cntct-btn {
    float: left;
  }
  .prop-list {
    width: 45%;
    height: 190px;
    margin: 20px 15px 20px 15px;
    float: left;
  }
  .property-name {
    font-size: 13px;
  }
  .location-name {
    font-size: 12px;
  }
  .divder,
  .header-divider {
    display: none;
  }
  .banner-sec {
    padding-left: 0;
    height: 100vh;
    margin-top: 7px;
  }

  .hero-content {
    position: relative;
  }
  .hero-content h1 {
    font-size: 28px;
    letter-spacing: 0.1rem;
    text-align: right;
  }

  .hero-content p {
    font-size: 12px;
    text-align: right;
    letter-spacing: 0.05rem;
  }

  .hero-content .line {
    transform: translateX(-4%);
    margin-top: -3px;
    margin-bottom: 5px;
    animation: drawLine 4s ease-in forwards;
  }

  .social-icons {
    bottom: 5px;
    right: 5px;
  }

  .social-icon {
    margin-right: 15px;
    font-size: 26px;
  }
}

.prop-list {
  z-index: 999;
}
.contact-section {
  /* padding-bottom: 30px;
  background-color: #ffffff; */
  margin: 50px 90px;
}

.home-contact {
  margin: 0 99px;
  padding: 50px 10px;
  height: 500px;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.form-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}
.form-wrapper {
  flex: 1 1 50%;
  max-width: 430px;
}

.map {
  flex: 1 1 50%;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.input-group {
  margin-bottom: 15px;
}

.input-field {
  width: 100%;
  padding: 10px;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  border: 0.5px solid #000000;
}

.submit-button {
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  width: 100%;
  padding: 10px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .home-contact {
    margin: 0 20px;
    padding: 20px 10px;
    height: auto;
  }

  .contact-row {
    flex-direction: column;
    gap: 30px;
  }

  .form-wrapper,
  .map {
    flex: 1 1 100%;
    max-width: 100% !important;
  }

  .map iframe {
    min-height: 300px;
  }

  .form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .input-field {
    font-size: 14px;
    padding: 8px;
  }

  .submit-button {
    font-size: 16px;
    padding: 8px;
  }
}

/* About Us */

.social-icons3 {
  display: flex;
  gap: 20px;
  float: right;
  margin-top: -30px;
}

.social-icon3 {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.social-icon3 i {
  font-size: 20px;
  color: #000000;
}

.heading h1 {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  margin: 20px;
  line-height: 1.2;
  color: #000000;
}

.row.about2 {
  display: none;
}
/* div#cover {
  display: flex;
  flex-direction: column;
} */
.abt-ctn img {
  border: 2px solid black;
  width: 46%;
  height: 210px;

  margin: 1.66%;
}
.row.about {
  margin: 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.col-md-6 {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}

.paragraph {
  margin-left: 15px;
}

.about h1 {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  line-height: 3.313rem;
}

.about .des {
  font-size: 16px;
  line-height: 1.688rem;
  color: #000000;
  margin: 0;
}
.abt-ctn {
  width: 550px;
  height: 550px;
  margin: 0;
}
.image {
  margin-left: 20px;
}

.image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.content2 {
  background-color: #fafafa;
  height: auto;
  color: #000000;
  padding: 40px 0;
}
.content2 h2 {
  font-size: 40px;
  font-weight: 700;
}
.ticker-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.ticker {
  display: flex;
  align-items: center;
  width: 100%;
}

.ticker-items {
  display: flex;
  white-space: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ticker-left .ticker-items {
  animation: ticker-left 70s linear infinite;
}

.ticker-right .ticker-items {
  animation: ticker-right 70s linear infinite;
}

.ticker-items li {
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.ticker-items p {
  margin-top: 20px;
  font-size: 15px;
  color: #000000;
  white-space: nowrap;
  font-weight: 400;
}

@keyframes ticker-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes ticker-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.content-wrapper {
  margin: 50px 100px 10px 100px;
  color: #000000;
}
h2.text {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}
p.text2 {
  font-size: 16px;
  margin: 20px 0 60px 0;
  text-align: left;
}

.card {
  border: none;
}

.card-body {
  padding: 20px;
  margin-top: -50px;
}

.card-title {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}

.card-title-icon {
  margin-right: 14px;
  height: 18px;
  width: auto;
}
.card-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.688rem;
  margin-left: 37px;
}

.card i {
  color: #007bff;
  margin-right: 0.5rem;
}

@media (max-width: 600px) {
  .social-icons3 {
    gap: 10px;
  }
  .social-icon3 i {
    font-size: 24px;
    margin: 0 5px;
  }

  .heading h1 {
    font-size: 24px;
    color: #000000;
    font-weight: 700;
  }

  .paragraph {
    font-size: 12px;
    margin-left: 0;
  }

  .image {
    margin-left: 0;
    text-align: center;
  }

  .about2 h1 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 30px;
  }

  .about2 .des {
    font-size: 14px;
    color: #000000;
    line-height: 27px;
  }
  .abt-ctn img {
    border: 2px solid black;
    width: 100%;
    margin: 1.66%;
  }
  .card-body {
    padding: 10px 0 10px 15px;
  }
  .content2 {
    height: auto;
    padding: 20px;
  }
  .content2 h2 {
    font-size: 24px;
  }

  .ticker-items p {
    font-size: 14px;
  }

  .ticker-items li {
    padding: 0 10px;
  }

  .ticker-left .ticker-items,
  .ticker-right .ticker-items {
    animation-duration: 50s;
  }

  .content-wrapper {
    overflow-x: hidden;
    margin: 20px 10px;
  }

  h2.text {
    font-size: 25px;
    text-align: left;
    padding: 10px;
  }

  p.text2 {
    font-size: 14px;
    margin: 10px 0 40px 0;
    text-align: left;
    padding-left: 10px;
  }

  p.text2 br {
    display: none;
  }

  .row {
    display: flex;
    flex-direction: column;
  }

  .custom-class {
    width: 100%;
    /* margin-bottom: 10px;  */
    margin-top: -50px;
  }

  .card-body {
    padding: 15px;
    margin-top: 0;
  }

  .card-title {
    font-size: 18px;
  }

  .card-title-icon {
    margin-right: 10px;
    height: 16px;
  }

  .card-text {
    font-size: 14px;
    margin-left: 0;
  }

  .row {
    display: initial !important;
  }
  .about2 {
    display: none !important;
  }
  .row1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
  }
  .col-md-6 {
    width: 100%;
    /* padding: 15px 10px; */
  }
}

/* Contact US  */

.contact-form {
  padding-bottom: 30px;
}

.box {
  margin: 0 99px;
  padding: 0 10px;
}

.form-container {
  width: 950%;
  max-width: 600px;
  margin: 0 auto;
}

.form-container h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000000;
}

.form-group {
  margin-bottom: 15px;
}
form {
  font-size: 16px;
  color: #000000;
}

.form-control {
  width: 100%;
  padding: 24px;
  background-color: #fafafa;
  font-size: 14px;
  font-weight: 400;
}

.button {
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  width: 100%;
  padding: 10px;
  background-color: #000000;
  color: #ffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.box2 {
  margin: 50px 0px 0 50px;
}
.info {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 600;
  color: #000000;
}

.para {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.688rem;
  color: #000000;
}

.information {
  display: flex;
  flex-direction: column;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.info-item p {
  font-size: 16px;
  line-height: 1.5rem;
  margin: 0;
  color: #000000;
}

.info-item i {
  color: #000000;
  margin-right: 15px;
  font-size: 20px;
}

.information a {
  color: #000000;
}
.social-icons1 {
  margin: 4px 0 0 54px;
}

.social-icon1 {
  color: #000000;
  margin-right: 15px;
  text-decoration: none;
  font-size: 20px;
}

@media (max-width: 600px) {
  .contact-form {
    padding-bottom: 20px;
  }

  .box {
    margin: 0 20px;
    padding: 0 5px;
  }

  .form-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
  }

  .form-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 10px;
  }

  form {
    font-size: 14px;
  }

  .form-control {
    padding: 15px;
    font-size: 14px;
  }

  .button {
    font-size: 16px;
    padding: 8px;
  }

  .box2 {
    padding: 35px 20px 0 20px;
  }

  .info {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .para {
    font-size: 14px;
    line-height: 1.5rem;
  }

  .info-item {
    margin-bottom: 10px;
  }

  .info-item p {
    font-size: 14px;
    line-height: 1.25rem;
  }

  .info-item i {
    font-size: 18px;
    margin-right: 10px;
    /* margin-top: -11px; */
  }

  .information a {
    font-size: 14px;
  }

  .map-section iframe {
    width: 100%;
    height: 250px;
  }

  .social-icons1 {
    margin: 5px 0 0 21px !important;
  }
  .social-icon1 {
    font-size: 17px;
    margin-right: 10px;
  }
}
/* footer section  */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 0 0 0;
}
.section {
  margin: 0 100px;
}
.logo {
  height: 90px;
  margin-bottom: 20px;
}
.footer h4 {
  font-size: 22px;
  font-weight: 600;
}
.footer p {
  font-size: 15px;
  line-height: 20px;
}
.quick-links {
  margin-left: 120px;
}
.Projects {
  margin-left: 80px;
}
.contact-us {
  margin-left: 30px;
}

.footer h5 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer a {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
}
.quick-links ul li,
.Projects ul li,
.contact-us ul li {
  margin-bottom: 10px;
}
.footer .p1 {
  font-size: 15px;
  line-height: 20px;
  font-weight: 100;
}
.address {
  line-height: 30px !important;
}
.footer .social-icon {
  font-size: 20px;
  margin-right: 15px;
}
.footer .custom-input {
  border: none;
  border-bottom: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  width: 108%;
  border-radius: 0;
  padding: 30px 0;
}
.footer .custom-input:focus {
  box-shadow: none;
  border-bottom: 2px solid #ffffff;
}
.footer .custom-input::placeholder {
  color: #ffffff;
}
button.btn.btn-light {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  background-color: #ffffff;
  position: absolute;
  top: 48px;
  right: -9px;
}

.follow-us {
  /* display: flex; */
  gap: 10px;
  margin-top: 40px;
  float: left;
}

.follow-us h3 {
  font-size: 20px;
  margin-left: 6px;
  margin-right: 10px;
}

.social-icons2 {
  display: flex;
  gap: 20px;
}

.social-icon2 {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.social-icon2 i {
  font-size: 26px;
  margin-right: 6px;
  color: #ffffff;
}

.content {
  border-top: 1px solid #ffffff;
  margin-top: 20px;
  padding: 12px 100px 0 100px;
}
.text1 {
  text-align: left;
}
.text2 {
  text-align: right;
}

@media (max-width: 600px) {
  .section {
    margin: 0 10px;
  }
  .footer {
    margin-top: 30px;
    padding: 20px 0;
    overflow-x: hidden;
  }
  .quick-links,
  .Projects,
  .contact-us {
    margin-left: 0;
    margin-top: 20px;
  }

  .logo {
    height: 60px;
    margin-bottom: 15px;
  }

  .footer h4,
  .footer h3 {
    font-size: 18px;
  }
  .footer h5 {
    font-size: 18px;
    font-weight: bold;
  }

  .footer .p1,
  .footer a {
    font-size: 16px;
  }
  .footer p {
    font-size: 14px;
  }

  .footer .custom-input {
    width: 100%;
    padding: 15px 0;
  }

  button.btn.btn-light {
    font-size: 14px;
    top: 20px;
    right: 17px;
  }

  .follow-us h3 {
    margin: 0 0 10px 0;
    /* text-align: center; */
  }

  .social-icons2 {
    justify-content: center;
    gap: 10px;
  }

  .content {
    padding: 12px 20px 0 20px;
  }

  .text1,
  .text2 {
    text-align: center;
    margin-bottom: -10px;
  }
}
ul.list-unstyled li a {
  font-size: 15px;
  font-weight: 100;
}
.subus {
  font-size: 15px;
  font-weight: 100;
}
/* single property details */
/* project detail  */
.banner-sec1 {
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* top: -143px; */
  /* z-index: -999; */
  overflow: hidden;
}

.banner-sec1 h1 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.banner-sec2 {
  display: none;
}
.details-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 30px;
  margin: 50px auto;
  max-width: 1200px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.details1 {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  /* background-color: #FAFAFA; */
}

.details1 h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 600;
}

.details1 p {
  margin: 0;
  font-size: 18px;
}

.detailed {
  background-color: #fafafa;
  height: auto;
}
.contents {
  margin: 0 100px;
  padding: 20px;
}

.contents h1 {
  font-size: 22px;
  font-weight: 500;
  color: #000000;
}

.contents p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.688em;
  color: #000000;
  font-weight: 300;
}

.vision,
.problem,
.solution {
  margin-top: 40px;
}

.description2 {
  display: none;
}
.description {
  margin: 60px 50px;
}

.project-overview {
  padding-right: 20px;
}

.project-image {
  text-align: center;
}

.project-overview p {
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.project-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 images per row */
  gap: 10px;
  /* display: flex;
    flex-wrap: wrap;
    margin: 0 80px; 
    gap: 10px; 
    /* justify-content: center;  */
  /* align-items: center;  */
}

.gallery-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 20px 0;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 1 / 1; /* Square thumbnails */
  overflow: hidden;
  border-radius: 8px;
  /* width: calc(33.333% - 10px); 
    padding: 20px;  */
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* width: 100%; 
    height: 250px;
    display: block;  */
}

.projheading {
  background-color: #00000063;
  padding: 10px 30px;
}

@media (max-width: 600px) {
  .projheading {
    background-color: transparent;
    padding: 0;
  }
  .gallery-image img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    /* display: block;  */
  }

  .banner-sec1 {
    display: none;
  }
  .banner-sec2 {
    display: block;
    padding: 0;
  }
  .banner-sec2-inner {
    background-size: cover;
    background-position: top;
    height: 300px;
    /* padding: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .text-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
  }
  .banner-sec2-inner h1 {
    font-size: 25px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    font-weight: 700;
  }
  .vision,
  .problem,
  .solution {
    margin-top: 30px;
  }

  .details-container {
    padding: 20px;
    margin: 0px auto;
  }

  .details1 {
    flex: 1 1 calc(50% - 10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }

  .details1 h3 {
    font-size: 16px;
    margin: 5px;
  }

  .details1 p {
    font-size: 14px;
  }

  .detailed {
    padding: 10px;
  }

  .contents {
    margin: 0;
    padding: 10px;
  }

  .contents h1 {
    font-size: 18px;
  }

  .contents p {
    font-size: 14px;
  }
  .description {
    display: none;
  }
  .description2 {
    display: block;
  }
  .description2 {
    overflow-x: hidden;
    margin: 20px 10px;
  }

  .project-overview {
    padding: 10px;
    margin-top: -25px;
  }
  .project-overview p {
    font-size: 14px;
  }
  .project-image {
    padding: 10px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    /* display: flex;
        flex-wrap: wrap;
        margin: 0;
        gap: 5px;
        padding-bottom: 30px; */
    margin: 0 10px;
  }
  .gallery-title {
    font-size: 30px;
    margin: 10px;
  }

  .gallery-image {
    aspect-ratio: 0 / 2;
    /* width: calc(50% - 5px); 
        padding: 5px;  */
  }
}

/* ////////////construction services css///////////////////// */

.image-gallery {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.image-item {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.image-container {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: translateY(-5px);
}

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

.image-caption {
  text-align: center;
  margin-top: 15px;
  font-weight: 600;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .image-gallery {
    gap: 40px;
  }

  .image-item {
    min-width: 180px;
    max-width: 250px;
  }

  .image-container {
    height: 220px;
  }
}

/* Small Tablet Responsive */
@media (max-width: 768px) {
  .image-gallery {
    gap: 30px;
  }

  .image-item {
    min-width: 150px;
    max-width: 200px;
  }

  .image-container {
    height: 180px;
  }
}

/* Mobile Responsive - 1 by 1 layout */
@media (max-width: 600px) {
  .image-gallery {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .image-item {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }

  .image-container {
    height: 250px;
    max-width: 400px;
    margin: 0 auto;
  }

  .image-caption {
    font-size: 16px;
    margin-top: 12px;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .image-gallery {
    gap: 25px;
  }

  .image-container {
    height: 220px;
    max-width: 350px;
  }

  .image-caption {
    font-size: 15px;
  }
}

/* Extra Small Mobile Responsive */
@media (max-width: 360px) {
  .image-gallery {
    gap: 20px;
  }

  .image-container {
    height: 200px;
    max-width: 300px;
  }

  .image-caption {
    font-size: 14px;
  }
}
