
        .hero-section {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
}

.hero-section .video-background {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.hero-section .hero-item {
  position: relative;
  z-index: 2; 
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.4);  */
  z-index: 1;
}



/* ......................................................FaTURED PROJECT CSS................................................................ */







.property-card {
  background: #522f17;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.property-img img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .property-img img {
  transform: scale(1.08);
}
.property-content {
  padding: 20px;
}
.property-content h4 a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}
.property-content h4 a:hover {
  color: #ffd37b;
}
.property-content p {
  color: #fff;
  font-size: 14px;
  margin: 10px 0 15px;
}
.property-content p img {
  width: 16px;
  margin-right: 6px;
  filter: brightness(0) invert(1);
}
.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.property-footer .price {
  font-weight: 600;
  color: #fff;
}
.btn-know {
  background: #d89e28;
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-know:hover {
  background: #ffd37b;
  color: #4c2b15;
}
@media (max-width: 768px) {
  .property-content h4 {
    font-size: 18px;
  }
  .property-img img {
    height: 14rem;
  }
}



/* 
////////////////////////////////OUR PATNER CSS /////////////////////// */

/* ===== Base Styling ===== */
.design-partners-section {
 
  color: #3b2312;
  overflow: hidden;
  padding: 80px 20px;
}

/* .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 10px;
} */

.subtitle {
  color: #a66f3f;
  font-size: 1.1rem;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* ===== Scrolling Container ===== */
.partners-scroll {
  /* overflow: hidden; */
  position: relative;
  width: 100%;
}

.scroll-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

/* ===== Partner Boxes ===== */
.partner-box {
  flex: 0 0 auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 220px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.partner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.partner-box img {
  width: 90px;
  height: auto;
  margin-bottom: 15px;
  opacity: 0.85;
}

.partner-box h4 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #3b2312;
}

/* ===== Description Text ===== */
.partners-desc {
  margin-top: 40px;
  font-family: 'Open Sans', sans-serif;
  color: #4c2b15;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Animation ===== */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
  .scroll-track {
    gap: 25px;
    animation-duration: 35s;
  }
  .partner-box {
    width: 200px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  .partner-box {
    width: 180px;
  }
  .partner-box img {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .scroll-track {
    gap: 20px;
    animation-duration: 40s;
  }
  .partner-box {
    width: 160px;
    padding: 15px 10px;
  }
  .partner-box h4 {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .partner-box {
    width: 140px;
  }
  .partner-box img {
    width: 70px;
  }
  .partners-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 10px;
  }
}



/* ///////////////////////////////////////our project css ////////////////////////////// */


 .projects-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.title12 {
  /* color: #522f17; */
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.projects-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.project-card {
  background: #fff;
  border: none;
  max-width: 350px;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  /* border: 8px solid #522f17; */
  overflow: hidden;
}

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

.project-overlay {
 
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  letter-spacing: 0.5px;
}

.project-name {
  font-size: 20px;
  font-weight: 600;
  color: #3a3a3a;
  margin-top: 25px;
}

.project-info {
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-top: 1px solid #e6d4a2;
  padding-top: 8px;
  display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
  .projects-row {
    gap: 30px;
  }
  .project-card {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .projects-row {
    flex-direction: column;
    align-items: center;
  }
  .project-card {
    max-width: 90%;
  }
}

