/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #2b2b2b;
    color: #d4af37;
    padding: 10px 20px;
    position: fixed;
    z-index: 15;
    width: 100%;
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-size: 18px;
  }
  
  .logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
  
  /* Navigation Links */
  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    position: relative;
    text-align: center;
    padding: 10px 15px;
  }
  .nav-links li:hover {
    position: relative;
    text-align: center;
    padding: 10px 15px;
    background-color: #555;
  }
  .nav-links a {
    text-decoration: none;
    color: #997b55;
    font-weight: 500;
    padding: 10px 15px;
  }
  
  /* Submenu */
  .submenu-container {
    position: relative;
  }
  
  .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #444;
    display: none;
    position: absolute; /* Prevents affecting the navbar height */
    top: 90%; /* Position submenu below the parent */
    left: 0;
    width: 250px; /* Adjust the width as needed */
    z-index: 10;
  }
  
  .submenu li {
    padding: 10px 15px;
    text-align: left;
  }
  
  .submenu a {
    color:#997b55;
  }
  
  .submenu li:hover {
    background-color: #555;
  }
  
  /* Hover Behavior for Desktop */
  .submenu-container:hover .submenu {
    display: block;
  }
  
  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background-color: #d4af37;
    margin: 4px 0;
  }
  
  /* Close Button */
  .close-btn {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
  
  /* Desktop View */
  @media (min-width: 769px) {
    .nav-links {
      display: flex;
      flex-direction: row;
    }
  
    .hamburger,
    .close-btn {
      display: none;
    }
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
    }
  
    .nav-links.active {
      max-height: 400px; /* Adjust based on number of items */
    }
  
    .submenu {
      display: none;
      position: static;
      background-color: #2b2b2b;
    }
  
    .submenu.active {
      display: block;
    }
  
    .hamburger {
      display: flex;
    }
  
    .close-btn.active {
      display: block;
    }
  }
  

  /* General body settings */

  
  /* Main scrolling background container */
  .scrolling-slider {
    position: relative;
    width: 100%;
    height: 50vh; /* Full viewport height */
    overflow: hidden;
    background: black; /* Optional background for smooth effect */
  }
  
  /* Image container with horizontal scrolling */
  .image-container {
    display: flex; /* Arrange images in a row */
    position: absolute;
    height: 100%; /* Full container height */
    width: 100%; /* Double width for seamless scrolling */
    animation: scroll-left 40s linear infinite; /* Smooth infinite scrolling */
  }
  
  /* Images styling */
  .image-container img {
    height: 100%; /* Stretch images to full container height */
    width: 100%; /* Each image takes 100% of the viewport width */
    flex-shrink: 0; /* Prevent images from shrinking */
  }
  

  
  /* Overlay text container */
  .overlay-text {
    position: absolute;
    top: 50%; /* Center text vertically */
    left: 50%; /* Center text horizontally */
    transform: translate(-50%, -50%);
    z-index: 1; /* Place text above the scrolling background */
    text-align: center; /* Center-align text */
    color: white; /* Text color */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); /* Add shadow for better readability */
  }
  
  /* Text styling */
  .overlay-text h1 {
    font-size: 3rem; /* Large title */
    margin: 0;
    color: white;
  }
  
  .overlay-text p {
    font-size: 1.5rem; /* Subtitle */
    margin: 10px 0 0 0;
    color: white;
  }
  
  
  .hero {
      position: relative;
      background: url('image.png') no-repeat center center/cover;
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    margin-top:200px;
    }
    
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }
    
    .content {
      position: relative;
      text-align: center;
      color: #fff;
      z-index: 2;
    }
    
    .content h1 {
      font-size: 3rem;
    }
    
    .content p {
      font-size: 1.5rem;
    }
    
    .search-box {
      position: relative;
      z-index: 2;
      background: #000;
      color: #fff;
      padding: 20px;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      transform-origin: center;
      animation: rotate 5s infinite;
    }
    
    .filters {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
    }
    
    .filter {
      background: #c19d65;
      color: #fff;
      padding: 10px 20px;
      border: none;
      cursor: pointer;
      border-radius: 5px;
    }
    
    .filter.active {
      background: #d4af37;
    }
    
    .search-fields {
      display: flex;
      gap: 10px;
    }
    
    select, .search-btn {
      padding: 10px;
      font-size: 1rem;
      border-radius: 5px;
    }
    
    .search-btn {
      background: #d4af37;
      color: #fff;
      border: none;
      cursor: pointer;
    }
    
  
    .search-box {
      position: sticky;
      top: 20px; /* Distance from the top of the viewport */
      z-index: 2;
      background: #000;
      color: #fff;
      padding: 20px;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      transform-origin: center;
      animation: rotate 5s infinite;
    }
    

    /* Scrolling Image */

     /* Section styling */

     .property-section{
      background-color: #c8aa84;
     }
   .featured-properties {
    text-align: center;
    margin: 20px auto;
    
  }
  
  .featured-properties h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Carousel container */
  .carousel-container {
    position: relative;
    max-width: 90%;
    margin: auto;
    overflow: hidden;
  }
  
  .carousel {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
  width: 100%;
  }
  
  .property-card {
    min-width: 250px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  .imagecontainer {
    position: relative;
  }
  
  .imagecontainer img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .icon-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
  }
  
  .icon-overlay a {
    text-decoration: none;
  }
  
  .icon {
    /* background-color: rgba(0, 0, 0, 0.5); */
    color: #fff;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    font-size: 1.5rem;
  }
  
  
  
  .property-info {
    justify-content: center;
    padding: 15px;
    background-color: #212121;
  }
  
  .property-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #9e7f57;
  }
  
  .property-info p {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #9e7f57;
  }
  
  .property-info .details {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .property-info .price {
    font-size: 1rem;
    font-weight: bold;
    color: #b88a3f;
  }
  .bed{
    margin-top: -10px;
  }
  
  /* Scroll buttons */
  .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
  }
  
  .scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
  


   /* new Project */
   .head{
    text-align: center;
    font-size: 2rem;
   }
   .property-grid {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 20px;
    width: 90%;
    margin: auto;
  }
  
  .property-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .card-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
  }
  
  .tags {
    position: absolute;
    top: 10px;
    left: 10px;
    justify-content: space-between;
  }
  
  .tag {
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    margin-right: 5px;
    font-size: 12px;
    border-radius: 5px;
    display: inline-block;
  }
  
  .price {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
  }
  
  .card-details {
    padding: 15px;
    background-color: #212121;
  }
  
  .card-details h3 {
    margin: 0;
    font-size: 18px;
    color: #9E7F57;
  }
  
  .card-details p {
    margin: 5px 0 15px;
    color: #9E7F57;
    font-size: 16px;
  }
  
  .card-details ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    color: #9E7F57;
  }
  
  .card-detailsul li {
    font-size: 12px;
    color: #9E7F57;
    display: flex;
    align-items: center;
  }
  
  .card-details ul li i {
    margin-right: 5px;
    color: #72482D;
  }
  
  
  
  .tags {
    position: absolute;
    top: 10px;
    left: 10px;
  }
  
  .tag {
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    margin-right: 5px;
    font-size: 12px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .tag:hover {
    background-color: #444;
  }
  
  .load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;

  }
  
  #load-more-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
 
  }
  
  #load-more-btn:hover {
    background-color: #444;
  }
  
#salessection{
  margin-top: 40px;
  background-color: #C8AA84;
}


/* Sales Code */

.salespropertygrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr ;
  gap: 20px;
  width: 90%;
  margin: auto;
}

.salepropertycard {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 330px;
  width: 100%;
  
  
}


.salecardimage {
  position: relative;
  width: 100%;
  height: 210px;
  background-size: cover;
  background-position: center;
}

.taggs {
  position: absolute;
  top: 10px;
  left: 10px;
}

.tagg{
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  margin-right: 5px;
  font-size: 15px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.tag:hover {
  background-color: #444;
}

/* .price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
} */

.salecarddetails {
  padding: 15px;
  background-color: #212121;
}

.salecarddetails h3 {
  margin: 0;
    font-size: 18px;
    color: #9E7F57;
}

.salecarddetails p {
  margin: 5px 0 15px;
  color: #9E7F57;
  font-size: 16px;
}

.salecarddetails ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  color: #9E7F57;
}

.salecarddetails ul li {
  font-size: 12px;
  color: #9E7F57;
  display: flex;
  align-items: center;
}

.salecarddetails ul li i {
  margin-right: 5px;
  color: #333;
}

.loaddmorecontainer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-bottom: 20px;
}

#loadmorebtn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#loadmorebtn:hover {
  background-color: #444;
}


/* Rent Code */

.rentpropertygrid  {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
  width: 90%;
  margin: auto;
 
}

.rentpropertycard {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.rentcardimage {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.renttags {
  position: absolute;
  top: 10px;
  left: 10px;
}

.renttag {
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  margin-right: 5px;
  font-size: 12px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.renttag:hover {
  background-color: #444;
}

/* .price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
} */

.rentcarddetails {
  padding: 15px;
}

.rentcarddetails h3 {
  margin: 0;
  font-size: 18px;
}

.rentcarddetails p {
  margin: 5px 0 15px;
  color: gray;
  font-size: 14px;
}

.rentcarddetails ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.rentcarddetails ul li {
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: center;
}

.rentcarddetails ul li i {
  margin-right: 5px;
  color: #333;
}

.rentloaddmorecontainer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#rentloadmorebtn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#rentloadmorebtn:hover {
  background-color: #444;
}

.rentcarddetails {
  padding: 15px;
  background-color: #212121;
}

.rentcarddetails h3 {
  margin: 0;
    font-size: 18px;
    color: #9E7F57;
}

.rentcarddetails p {
  margin: 5px 0 15px;
  color: #9E7F57;
  font-size: 16px;
}

.rentcarddetails ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  color: #9E7F57;
}

.rentcarddetails ul li {
  font-size: 12px;
  color: #9E7F57;
  display: flex;
  align-items: center;
}

.rentcarddetails ul li i {
  margin-right: 5px;
  color: #333;
}

/* Counter Code */



.counter-container {
  display: flex;
  justify-content: space-around;
  width: 80%;
  /* max-width: 800px; */
  margin: auto;
  margin-top: 50px;
}

.counter-box {
  text-align: center;
  font-size: 1.5rem;
  color: #333;
  position: relative;
}

.counter {
  font-size: 3rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.plus {
  font-size: 3rem;
  font-weight: bold;
  color: #d4af37;
  margin-left: 5px;
  animation: pulse 1s infinite;
}

p {
  margin: 0;
  font-size: 1.2rem;
  color: #555;
}

/* Animation for the "+" sign */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}


/* Features */


.features {
  background-color:#c8aa84; /* Soft gold background */
  color: #333;
  text-align: center;
  padding: 50px 20px;
  width: 95%;
  margin-top: 20px;
}

.features h2 {
  font-size: 2.5rem;
  margin-top: -30px;
  color: #111;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  padding-top: -30px;
}

.feature-item {
  /* background-color: #fff; */
  border-radius: 10px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  width: 200px;
  padding: 20px;
  text-align: center;
  margin-top: -20px;
}

.iicon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: black; /* Gold color for icons */
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.feature-item p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  
}

@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    width: 90%;
  }
}

/* Youtube video */

 /* Video Section */
 .video-section {
  padding: 50px 20px;
  text-align: center;
  color: #333;
  margin-top: -20px;
}
.youhead{
  font-size: 2rem;
}
.video-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
  font-weight: bold;
  margin-top: -50px;
  
}

/* YouTube Icon Styles */
.youtube-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  color: #111;
}

.youtube-icon svg {
  width: 24px;
  height: 24px;
  fill: #ff0000; /* YouTube red color */
}

/* Video Container */
.video-container {
  max-width: 1200px;
  margin: 0 auto;
  border: 5px solid #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   margin-top: -20px;
}

iframe {
  border-radius: 10px;
  width: 100%;
  height: 500px;
  border: none;
}

/* testimonial Code */

.testimonial-container {
  background-color: wheat;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  overflow: hidden;
  position: relative;
  margin-top: 50px;
}

.rating-overview {
  font-size: 18px;
  margin-bottom: 20px;
}

.stars {
  color: gold;
  font-size: 24px;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.reviews-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  white-space: nowrap;
  flex-grow: 1;
}

.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  min-width: 250px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  flex-shrink: 0;
}

.profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.review-date {
  color: #777;
  font-size: 12px;
  margin-bottom: 10px;
}

/* Scroll Buttons */
.testimonial-scroll-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.testimonial-scroll-left {
  left: 10px;
}

.testimonial-scroll-right {
  right: 10px;
}

.testimonial-scroll-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}


/* Explore Cities */
/* General container styles */
.explore-cities {
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 20px auto;
  
}

.explore-cities h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Grid container for cities */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* City card styles */
.city-card {
  width: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Background image */
.city-image {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* City details overlay */
.city-details {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  padding: 10px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

/* Property count */
.property-count {
  font-size: 14px;
  margin: 0;
  color:white;
}

/* City name */
.city-name {
  font-size: 24px;
  font-weight: bold;
  margin: 5px 0;
}

/* More details link */
.more-details {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-top: 5px;
}

.more-details::after {
  content: " ▶";
  font-size: 12px;
}

.more-details:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cities-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Partenar Section */

/* General container styles */
.partners-section {
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9;
}

.partners-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Grid container */
.partners-grid {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  gap: 15px;
  justify-items: center;
  width: 90%;
  margin: auto;
}

/* Partner card styles */
.partner-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease-in-out; /* Smooth transition for opacity */
}

/* Hover effect */
.partner-card:hover img {
  opacity: 0.9; /* Reduce opacity to 90% on hover */
}

.partner-card:hover {
  transform: scale(1.05); /* Optional: Slight zoom effect */
}


/* Stay Connected */


.ccccontainer {
  text-align: center;
  max-width: 600px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-left: 65 0px;
margin-top: 50px;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.instagram-post {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  height: 650px;
}

.view-profile {
  margin-top: 10px;
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.view-profile:hover {
  background: #0056b3;
}


/* Testimonials */

.google-title {
  text-align: center;
  font-size: 3em;
  color: #4285F4; /* Google logo color */
  margin: 20px 0;
}

.reviews-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.reviews-slider {
  display: flex;
  align-items: center;
  position: relative;
}

.reviews-container {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.reviews-container {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth; /* Smooth scrolling */
  white-space: nowrap; /* Prevent wrapping of cards */
}

.review-card {
  flex: 0 0 300px; /* Set fixed width for each card */
  margin: 0 10px;
  white-space: normal; /* Wrap text inside cards */
}


.profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.review-date {
  font-size: 0.9em;
  color: #666;
  margin: 5px 0;
}

.stars {
  color: #FFA41B;
  font-size: 1.2em;
  margin: 10px 0;
}

.verified-badge {
  color: #00C853;
  font-size: 1.2em;
  margin-left: 5px;
}

.review-text {
  font-size: 0.95em;
  margin: 10px 0;
}

.read-more {
  color: #4285F4;
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

.prev-btn,
.next-btn {
  background-color: #4285F4;
  color: #fff;
  border: none;
  border-radius: 60%;
  font-size: 1.5em;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: #3367D6;
}



/* Footer */

footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  margin: 10px;
  min-width: 200px;
  color: white;
}
.footer-column p{
  color: white;
  margin-top: 15px;
  font-size: 16px;
}
.footer-column h4 {
  font-size: 12px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  margin-left: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #007bff;
}

.buttons {
  margin-top: 20px;
}

.buttons a {
  display: inline-block;
  background: #555;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 10px;
  margin-bottom: 20px;
  margin-left: 50px;
}

.buttons a:hover {
  background: #333;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.designdiv{
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  position: relative;
  font-size: 14px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content span {
  color: #fff;
}

.footer-content a {
  color: #f00;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

/* Whatapp button */
.whatsapp-container {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
}

.whatsapp-button {
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-button i {
  font-size: 28px;
}

.tooltip {
  position: absolute;
  bottom: 70px;
  right: 10px;
  background-color: #25D366;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #25D366 transparent transparent transparent;
}

.whatsapp-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}


/* Pop up enquiry form css */

/* Style the modal background */
.modal {
  display: none; /* Hidden by default */
  position: fixed; 
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
  overflow: auto; /* Enable scroll if needed */
}

/* Modal content */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%; /* Width of modal */
}

/* Close button */
.cclose-btn {
  color: black;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Style form elements */
input[type="text"],
input[type="email"],
input[type="int"],
textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type="submit"] {
  padding: 10px 15px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

/* Freature css code */

#custom-property-section {
  padding: 16px;
  background-color:#c8aa84;
}

#custom-property-section h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 16px;
  color: #333;
}

.custom-property-grid-container {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.custom-property-grid {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease-in-out;
  
}

.custom-property-card {
  flex: 0 0 270px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  
}

.custom-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.custom-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
}

.custom-tag {
  background-color: #000;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
}

.custom-price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
}

.custom-card-details {
  padding: 16px;
}

.custom-card-details h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.custom-card-details p {
  font-size: 14px;
  margin: 0 0 8px;
  color: #555;
}

.custom-card-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.custom-card-details ul li {
  display: flex;
  align-items: center;
  gap: 4px;
}

.custom-card-details ul li i {
  color: #ff4500;
}

.custom-scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.custom-scroll-button.left {
  left: 10px;
}

.custom-scroll-button.right {
  right: 10px;
}


.mySlides {  
  display:none;
}


.location-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    position: absolute; 
    top: 250px; 
    z-index: 10;
    left: 500px;
}

.location-button {
  background-color: #444;
  border: none;
  border-radius: 20px;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
}

.location-button:hover {
  background-color: #555;
}

.project-list {
  margin-top: 100px;
  background-color: #2c2c2c;
  padding: 15px;
  border-radius: 10px;
  width: 50%;
  position: relative;
  z-index: 5; /* Lower z-index so buttons are above this */
}

.project-item {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #444;
  border-radius: 5px;
}


@media (max-width: 769px) {

.scrolling-slider {
    position: relative;
    width: 100%;
    height: 50vh; /* Full viewport height */
    overflow: hidden;
    background: black; /* Optional background for smooth effect */
  }

/* Image container with horizontal scrolling */
.image-container {
  display: flex; /* Arrange images in a row */
  position: absolute;
  height: 100%; /* Full container height */
  width: 200%; /* Double width for seamless scrolling */
  animation: scroll-left 40s linear infinite; /* Smooth infinite scrolling */
}

  /* Overlay text container */
  .overlay-text {
    position: absolute;
    top: 50%; /* Center text vertically */
    left: 50%; /* Center text horizontally */
    transform: translate(-50%, -50%);
    z-index: 1; /* Place text above the scrolling background */
    text-align: center; /* Center-align text */
    color: white; /* Text color */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); /* Add shadow for better readability */
  }
  .overlay-text h1 {
    font-size: 1.5rem; /* Large title */
    margin: 0;
    color: white;
  }
  .overlay-text p {
    font-size: 1rem; /* Subtitle */
    margin: 10px 0 0 0;
    color: white;
  }
  /* Features Grid */
  #custom-property-section {
    padding: 10px;
    background-color:#c8aa84;
  }
  
  #custom-property-section h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 16px;
    color: #333;
  }
  
  .custom-property-grid-container {
    position: relative;
    /* overflow: hidden; */
    max-width: 100%;
    margin: 0 auto;
  }
  
  .custom-property-grid {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease-in-out;
    
  }

  .custom-property-card {
    flex: 0 0 250px;
    background-color: #fff;
    border-radius: 8px;
    overflow: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    
  }
  
  .custom-card-image {
    height: 150px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .salespropertygrid {
    display: grid;
    grid-template-columns:  auto ;
    gap: 20px;
    width: 90%;
    margin: auto;
  }
  .propertycard {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 350px;
    width: 100%;
  }
  .loaddmorecontainer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 20px;
  }
  
  #loadmorebtn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #loadmorebtn:hover {
    background-color: #444;
  }

  .rentpropertygrid  {
    display: grid;
    grid-template-columns: auto;
    gap: 20px;
    width: 90%;
    margin: auto;
   
  }
  .rentpropertycard {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 350px;
    width: 100%;
  }
  .head{
    font-size: 20px;
    text-align: center;
  }
  .counter-container {
    display: block;
    justify-content: space-around;
    width: 90%;
    /* max-width: 800px; */
    margin: auto;
    margin-top: 50px;
  }
  .counter-box {
    text-align: center;
    font-size: 1rem;
    color: #333;
    position: relative;
  }
  .counter {
    font-size: 2rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .plus {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
    margin-left: 5px;
    animation: pulse 1s infinite;
  }

  .features {
    background-color:#c8aa84; /* Soft gold background */
    color: #333;
    text-align: center;
    padding: 50px 20px;
    width: 90%;
    margin-top: 20px;
  }
  .features h2 {
    font-size: 1.5rem;
    margin-top: -30px;
    color: #111;
  }
  .features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
   margin: 0 auto;
    padding-top: -30px;
  }


  .feature-item {
    /* background-color: #fff; */
    border-radius: 10px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    width: 100%;
    padding: 20px;
    text-align: center;
    margin-top: -20px;
  }
  .iicon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: black; /* Gold color for icons */
  }

  .feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
  }
  .feature-item p {
    font-size: 0.7rem;
    color: #555;
    line-height: 1.6;
    width: 100%;
    word-wrap: break-word;
    
  }

/* Youtube Video */
.video-section {
  padding: 50px 20px;
  text-align: center;
  color: #333;
  margin-top: 20px;
}
.youhead{
  font-size: 1.5rem;
}
.video-section h2 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #111;
  font-weight: bold;
  margin-top: -50px;
  
}

/* YouTube Icon Styles */
.youtube-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  color: #111;
}

.youtube-icon svg {
  width: 24px;
  height: 24px;
  fill: #ff0000; /* YouTube red color */
}

.video-container {
  max-width: 90%;
  margin: 0 auto;
  border: 5px solid #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   margin-top: -20px;
}

/* Video Container */
.video-container {
  max-width: 100%;
  margin: 0 auto;
  border: 5px solid #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   margin-top: -20px;
   height: 200px;
}

.video-container iframe {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  border: none;
}

/* testimonial Code */

.testimonial-container {
  background-color: #d6b28c;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  overflow: hidden;
  position: relative;
  width: 80%;
}

.head{
  font-size: 1.2rem;
}
.city-image {
  background-size: cover;
  background-position: center;
  width: 90%;
  height: 200px;
  position: relative;
  display: block;
  align-items: center;
  justify-content: center;
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.city-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}
/* General container styles */
.explore-cities {
  text-align: center;
  font-family: Arial, sans-serif;
  margin: auto;
}
.explore-cities h2{
  font-size: 20px;
}
/* City details overlay */
.city-details {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  padding: 10px;
  width: 90%;
  position: absolute;
  bottom: 0;
}

/* Partenar Section */

/* General container styles */


.partners-section h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}

.partners-grid {
  display: grid;
 grid-template-columns: auto auto;
  gap: 20px;
  justify-items: center;
  width: 90%;
  margin: auto;
}
.partner-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}

.ccccontainer {
  text-align: center;
  max-width:90%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-left: 65 0px;
margin-top: 50px;
}


.whatsapp-container {
  position: fixed;
  bottom: 80px;
  right: 50px;
  z-index: 1000;
}

.whatsapp-button {
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-button i {
  font-size: 28px;
}

.footer-column p{
  color: white;
  margin-top: 15px;
  font-size: 14px;
}
.footer-column:nth-child(3)
{
  width: 40%;
}



.modal {
  display: none; /* Hidden by default */
  position: fixed; 
  z-index: 1; /* Sit on top */
  left: 50;
  top: 0;
  width: 100%;
  height: 90%;
  background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
  overflow: auto; /* Enable scroll if needed */
}

/* Modal content */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 40px;
  border: 1px solid #888;
  width: 50%; /* Width of modal */
}

/* Close button */
.cclose-btn {
  color: black;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Style form elements */
input[type="text"],
input[type="email"],
input[type="int"],
textarea {
  width: 80%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type="submit"] {
  padding: 10px 15px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}


}


