* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  
 /* ----------------------------Navbar Container------------------------------- */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px !important;
    background: #fff;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}




.logo img {
    max-width: 170px;
    margin: 15px;
    margin-left: 30px;
}


.search-bar {
    position: relative;
    width: 100%;
    max-width: 400px;
}


#searchInput {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 16px;
}


.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
}


.resultBox {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    display: none;
    z-index: 9999;
   
   
  }
  
  .resultBox li {
    padding: 10px;
    list-style: none;
    cursor: pointer;
    font-size: 14px;
    color: #000;
    text-align: justify;
  }
  
  .resultBox li:last-child {
    border-bottom: none;
  }
  
  .resultBox li:hover {
    background: #d7f3f4;
    border-radius: 5px;
  }

#hamburger-btn{
  margin: 15px;
  width: 100px;
}

 #menu-toggler, #city-toggler {
  display: none;
}


/* Hide checkboxes */
#menu-toggler, #city-toggler {
  display: none;
}

/* Hamburger button */
.hamburger {
  font-size: 30px;
  cursor: pointer;
  padding: 15px;
  background: #111;
  color: white;
  display: inline-block;
}

/* Left menu styling */
.menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: #111;
  color: white;
  overflow-y: auto;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
  padding-top: 60px;
}

#menu-toggler:checked ~ .menu {
  left: 0;
}

/* Menu items */
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu ul li {
  border-bottom: 1px solid rgba(227, 226, 226, 0.2);
}

.menu ul li a, 
.menu ul li label {
  display: block;
  padding: 14px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
}

.menu ul li a:hover, 
.menu ul li label:hover {
  background: #e9b528;
  color: #000;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Dropdown submenu */
.menu ul li ul {
  display: none;
  background: #111;
}

#city-toggler:checked + label + ul {
  display: block;
}

.menu ul li ul li a {
 padding: 14px;
}

/* Arrow indicator */
.arrow {
  float: right;
  transition: transform 0.3s;
}

#city-toggler:checked + label .arrow {
  transform: rotate(180deg);
}


.help {
      padding: 14px;
      margin-top: 10px;
    }

    .help h2 {
      margin-bottom: 15px;
      font-size: 16px;
      color: #fff;
      font-weight: 600;
    }

    .help p {
      font-size: 16px;
      color: #fff;
    }

 .help p a{
    text-decoration: none;
    color: #fff;
 }
 .help p a:hover{
    color: #e9b528;
 }

 .social-icons {
    display: flex;
    justify-content: left;
    gap: 15px;
    flex-wrap: wrap; /* makes icons wrap on small screens */
  
  }

  .social-icons a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #e9b528; /* LinkedIn blue by default, can customize */
  }
 

 







@media (max-width: 768px) {
    #navbar{
        height: 80px !important;
        padding: 0 10px;
    }
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px !important;
        width: 100%;
        
    }

    
    .logo img {
        width: 120px;
        margin: 0;
    }

   
    .search-bar {
        flex-grow: 1;
        margin: 0 10px;
        max-width: 250px;
        position: relative;
    }

    #searchInput {
        width: 100%;
        padding: 8px 35px 8px 12px;
        font-size: 10px;
    }

    .search-bar button {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
    }

    .search-bar button img {
        width: 16px !important;
    }


    #hamburger-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

 .menu {
    width: 260px;
    padding-top: 50px;
  }
  .menu ul li a, .menu ul li label {
    padding: 12px;
    font-size: 16px;
  }
   
    .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 25px;
        color: white;
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 80px;
    }

    .search-bar {
        max-width: 150px;
    }

    #searchInput {
        font-size: 7px;
        padding: 6px 30px 6px 10px;
    }

    .search-bar button img {
        width: 12px !important;
    }

   .menu {
    width: 200px;
  }
  .menu ul li a, .menu ul li label {
    padding: 10px;
    font-size: 15px;
  }
  
}


/* -----------------------------Homepage -----------------------------------------------------------------*/
.desktopbanner img{
  width: 100%;
  height: auto;
  margin-top: 100px;
}
.mobilebanner img{
  display: none;
}

.homepage{
    margin-top: 30px;
}
.homepage p{  
    margin-left: 20px;
    margin-bottom: 0px;
}
.homepage p a{
    text-decoration: none;
    color: #545454;
}
.homepage p a:hover{
    color: #09c4cc;
}

@media(max-width:768px) {
  .desktopbanner img{
    display: none;
  }
  .homepage{
      margin-top: 30px;
  }
  .mobilebanner img{
     display: block;
     width: 100%;
     margin-top: 60px;
}
  
}



/* -----------------------------------------Trending Project -----------------------------------*/

.similarproject{
    width: 96%;
    margin: auto;
    text-align: center; 
    
}


.similarproject  h2 {
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    text-align: center !important;
    margin-top: 20px;
    position: relative;
    
}

.similarproject h2::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 50%;
    width: 15%;
    height: 2px;
    background-color: #e9b528;
    transform: translateX(-50%);
}




  .swiper {
    width: 100%;
   
    overflow: hidden;
    box-sizing: border-box;
    
  }
  

  
  
  .card-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 50px auto;
   
  }

  .card-wrapper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid silver;
    border-radius: 8px;
   }


  .card-wrapper .swiper-slide .newlaunchbutton{
    z-index: 9999;
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; 
    padding: 10px;
  }
  .card-wrapper .swiper-slide .newlaunchbutton .btn{
    padding: 2px 10px;
    background: linear-gradient(to right, #ECB51B, #FFD870);
    font-weight: 600;
    border: none;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
  }

.heart-icon {
  font-size: 30px;
  color: #fff; /* Default color */
  cursor: pointer;
  transition: color 0.3s ease;
}

.heart-icon.filled {
  color: red; /* Change to red when clicked */
}


  
  .card-list .card-item {
    list-style: none;
  }
  
  .card-list .card-item .card-link {
    display: block;
    background: #fff;
    user-select: none;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 4px 6px 7px rgba(0, 0, 0, 0.2);
    position: relative;
  }
  

  
  .card-list .card-link .card-image {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
    animation: fadeIn 0.5s ease-in-out;
    position: relative;
  }
  
  .card-list .projectname {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    position: relative;
    margin-bottom: 20px;
  }
  
  .card-list .card-link p {
    color: #000;
    font-size: 15px;
    font-weight: 600;
  }
  
  #reraCheckbox:checked + label {
    color: #000;
    font-weight: 600;
   
  }
  
  
  
  .card-list .card-link span {
    font-size: 11px;
    color: #333;
    margin-bottom: 40px;
    padding: 10px;
    position: absolute;
    bottom:-2px;
    display: inline-block; 
}

.card-list .card-link span::after {
    content: '';
    display: block;
    width: 100%; 
    height: 1px; 
    background-color: silver; 
    margin-top: 5px; 
}



  .card-list .card-link .morebutton{
    display: flex;
    justify-content: space-between;
    padding: 10px;

  }
  
  .card-list .card-link .morebutton h3{
     font-size: 15px;
     color: black;
     font-weight: 600;
  }
  .card-list .card-link .morebutton .card-button {
   
    color: #000;
    background: linear-gradient(to right, #ECB51B, #FFD870);
    border:none;
    cursor: pointer;
    padding: 1px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight:600;
  }
  .swiper .swiper-slide-button {
    background-color: #fff;
    padding: 25px;
    border-radius: 100%;
    box-shadow: 4px 5px 7px rgba(0, 0, 0, 0.1);
    
  }
  #reraCheckbox{
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid green; 
    border-radius: 3px;
    background-color: green;
    position: relative;
    cursor: pointer;
  }
  #reraCheckbox:checked::after {
    content: "✔";
    position: absolute;
    left: 2px;
    top: -2px;
    color: white; 
    font-size: 12px;
    font-weight: bold;
}
 

  @media(max-width:768px){
    .similarproject  h2{
      font-size: 20px;
    }
    
  }



/* -----------------------------------------Curated Cpollections -----------------------------------*/

.cluster {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.cluster h2 {
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    text-align: center !important;
    margin-top: 20px;
    position: relative;
    
}

.cluster h2::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 50%;
    width: 15%;
    height: 2px;
    background-color: #e9b528;
    transform: translateX(-50%);
}
.cluster p{
  text-align: center;
}

.cluster-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px;
  margin: 50px;
  
}


.cluster-box {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cluster .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 0;
}


.cluster .text-overlay {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap; /* Ensures text stays on one line */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    font-family: 'Khula', sans-serif;
}


.image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;

}

.image-wrapper:hover img {
  transform: scale(1.1); /* Zoom image */
}

.image-wrapper:hover .overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Darker overlay on hover */
}

.image-wrapper:hover .hover-square {
  width: 80%;
  height: 80%;
  border-radius: 8px;
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* lighter initially */
  transition: background-color 0.5s ease;
  z-index: 0;
}


@media (max-width: 768px) {
  .cluster {
    width: 100%;
    margin-bottom: 50px;
   
  }

  .cluster h2 {
    font-size: 20px;
   margin-bottom: 40px;
  }

  .cluster-slider {
    grid-template-columns: 1fr; /* 1 column */
    margin: 20px;
  }

  .cluster-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
  }

  .cluster-slider a {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
  }
  .cluster-slider{
     margin: 0;
  }
  .cluster-box {
    width: 90%;
    margin: auto;
    text-align: center;
    
  }

  .image-wrapper {
    width: 100%;
    position: relative;
  }

  .image-wrapper img {
    width: 100%;
    height: auto;
  }

  .text-overlay {
    font-size: 14px;
    padding: 8px 12px;
    text-align: center;
  }

 
}



/* ---------------------------top Location in bangalore ---------------------  */
.projectlocation {
  width: 96%;
  margin: auto;
  text-align: center;
  margin-bottom: 30px;
}

.projectlocation h2 {
  font-family: 'Khula', sans-serif;
  color: #000;
  font-size: 40px;
  font-weight: 600;
  margin-top: 20px;
  position: relative;
}

.projectlocation h2::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  width: 15%;
  height: 2px;
  background-color: #e9b528;
  transform: translateX(-50%);
}

.locationbutton {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px;
}

.locationbutton button {
  background-color: #ddd;
  border: none;
  padding: 10px 40px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 35px;
  transition: 0.3s;
  font-weight: 500;
  text-transform: uppercase;
  flex: 0 0 auto;
  white-space: nowrap;
}

.locationbutton button.active {
  background: linear-gradient(to right, #ECB51B, #FFD870);
  color: black;
}

.locationbox-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.locationbox {
  display: flex;
  gap: 10px;
  transition: transform 0.5s ease-in-out;
}

.projectlocation .box {
  flex: 0 0 24%;
  border: 1px solid silver;
  padding: 15px;
  text-align: start;
  border-radius: 5px;
  height: 140px;
  min-width: 250px;
  display: none; 
  margin-top: 20px;
}

.projectlocation .box hr {
  border: none;
  height: 6px;
  width: 100px;
  margin: 10px 0;
  background: linear-gradient(to right, #ECB51B, #FFD870);
  border-radius: 10px;
}


.projectlocation .box.show {
  display: inline-block; /* shown boxes slide */
}

.projectlocation .box h3 {
  font-weight: 600;
  font-family: 'Khula', sans-serif;
  font-size: 20px;
}

.projectlocation .box span {
  font-weight: 600;
  font-family: 'Khula', sans-serif;
  font-size: 17px;
  color: #545454;
}

.projectlocation .box .btn {
  width: 100%;
  background: linear-gradient(to right, #ECB51B, #FFD870);
  font-weight: 600;
  border: none;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .projectlocation h2 {
    font-size: 24px;
  }
  .projectlocation .box {
    flex: 0 0 auto;
    min-width: 100%;
    margin-top: 20px;
  }

  .locationbutton {
    display: flex;
    flex-wrap: nowrap; 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    gap: 5px;
    justify-content: flex-start; 
    padding: 10px;
    white-space: nowrap; /
  }

  .locationbutton button {
    flex: 0 0 auto;
    white-space: nowrap; 
    min-width: 150px; 
    padding: 10px 30px; 
  }

  .locationbutton::-webkit-scrollbar {
    display: none; 
  }
}




/* ---------------------------Explore Projects ---------------------  */
.exploreproject {
    width: 96%;
    margin: auto;
    text-align: center;
}

.exploreproject h2 {
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    margin-top: 20px;
    position: relative;
}

.exploreproject h2::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 50%;
    width: 15%;
    height: 2px;
    background-color: #e9b528;
    transform: translateX(-50%);
}

.tab-content .button1{
    background: linear-gradient(to right, #ECB51B, #FFD870) !important;
    font-weight: 600;
    border: none;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
}

.tab-content .button2{
    font-weight: 700;
    border: none;
    color: #e9b528;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-family: 'Khula', sans-serif;
}
.tab-content .button2:hover{
    background: linear-gradient(to right, #ECB51B, #FFD870) !important;
    color: #000;
}
.tab-content h5{
    font-family: 'Khula', sans-serif;
    color: #09c4cc;
    font-weight: 700;
    position: relative;
}
.tab-content .fadeInUp{
  display: flex;
  flex-wrap: wrap;
  gap: 40px; 
  justify-content: center;

}
.tab-content .property-item{
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Base pagination styles */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
  list-style: none;
}

.pagination .page-item {
  margin: 5px;
}

.pagination .page-link {
  color: #000;
  background: linear-gradient(to right, #ECB51B, #FFD870);
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hover effect */
.pagination .page-link:hover {
  background: linear-gradient(to right, #FFD870, #ECB51B);
  color: #000;
  transform: scale(1.05);
}

/* Active page */
.pagination .page-item .active {
  background: #09c4cc;
  border: none;
  color: #fff;
}

/* Disabled buttons */
.pagination .disabled .page-link {
  background: #ddd;
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
}

/* Responsive styling */
@media (max-width: 768px) {

  .exploreproject h2 {
    font-size: 20px;
  }
  .pagination {
      flex-wrap: wrap;
      gap: 5px;
  }
  .pagination .page-item {
      margin: 3px;
  }
  .pagination .page-link {
      padding: 8px 12px;
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .exploreproject h2 {
    font-size: 20px;
  }
  .pagination {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 3px;
  }
  .pagination .page-item {
      flex: 1 1 auto;
      text-align: center;
  }
  .pagination .page-link {
      font-size: 12px;
      padding: 6px 10px;
  }
}








 
/*---------------------------------------------------------- Footer Page ---------------------*/

.footer-section {
    background: #151414;
    position: relative;
    width: 100%;
  }
  .footer-cta {
    border-bottom: 1px solid #373636;
  
  }
  .single-cta{
    display: flex;
    justify-content:center;
  }
  .single-cta i {
    color: #e9b528;
    font-size: 30px;
    float: left;
    margin-top: 8px;
  }
  .cta-text {
    padding-left: 15px;
    display: inline-block;
  }
  .cta-text h4 {
    color: #e9b528;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .cta-text span {
    color: #fff;
    font-size: 14px;
  }
  .footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
  }
  .footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
  }
  .footer-logo {
    margin-bottom: 30px;
  }
  .footer-logo img {
      max-width: 200px;
  }
  .footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #fff;
    line-height: 28px;
  }
  .footer-social-icon span {
    color: #e9b528;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
  }
  .footer-social-icon a {
    color: #fff;
  font-size: 25px;
    margin-right: 15px;
  }
  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    transition: all 0.3s ease; 
    color: white; 
    
  }
  
  /* Hover effect */
  .footer-social-icon i:hover {
    background-color: #e9b528;
    transform: scale(1.2); 
    color: #000; 
  }
  
  .facebook-bg{
    background: #3B5998;
  }
  .twitter-bg{
    background: #55ACEE;
  }
  .google-bg{
    background: #e9b528;
  }
  .footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    margin-left: 30px;
  }
  .footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #e9b528;
  }
  .footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
  }
  .footer-widget ul li a:hover{
    color: #e9b528;
  }
  .footer-widget ul li a {
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
  }
  .subscribe-form {
    position: relative;
    overflow: hidden;
  }
  .subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
  }
  .subscribe-form button {
      position: absolute;
      right: 0;
      background: #e9b528;
      padding: 13px 20px;
      border: 1px solid #e9b528;
      top: 0;
  }
  .subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
  }
  .copyright-area{
    background: #202020;
    padding: 25px 0;
  }
  .copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #fff;
  }
  .copyright-text p a{
    color: #e9b528;
  }
  .footer-menu li {
    display: inline-block;
    margin-left: 20px;
  }
  .footer-menu li:hover a{
    color: #e9b528;
  }
  .footer-menu li a {
    font-size: 14px;
    color: #878787;
    text-decoration: none;
  }
@media(max-width:768px){
    .single-cta{
        display: flex;
        justify-content: left;
       padding: 10px;
      }
      .footer-logo img{
        max-width: 150px;

      }
      .footer-widget-heading h3{
        margin-top: 20px;
        margin-left: 0px;
      }
}