* {
    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-btn1 {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 50px;
  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-btn1 {
        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 -----------------------------------------------------------------*/

.projecthome p{  
    margin-left: 20px;
    background-color: #fff;
    padding: 10px;
    width: 97%;
    margin: auto;
    border-radius: 8px;
    margin-top: 110px;
    margin-bottom: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
   
}
.projecthome p a{
    text-decoration: none;
    color: #e9b528;
    font-family: khula;
    font-size: 18px;
}
.projecthome p a:hover{
    color: #000;;
}

.homepage .projectassetz {
    display: flex; 
    align-items: center;
}



.homepage .assetzproject{
    margin-left: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    
}
.assetzproject .slides {
    display: flex;
    width: 100%; /* 2 images * 100% each */
    animation: slide 6s infinite;
  }

  
  @keyframes slide {
    0%, 50% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }




.homepage .assetzproject img{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: block;
    width: 100%; /* half of 200% container */
    cursor: pointer;
}

.assetzproject .newlaunchbutton{
    position: absolute;
    top: 10px; /* Adjust spacing from bottom */
    left: 10px;
    right: 10px;
}
.assetzproject .newlaunchbutton  button {
    background-color: #ECB51B;
    color: #000;;
    border: none;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    
}

.assetzproject .viewmorebutton {
    position: absolute;
    top: 58%; /* Adjust spacing from bottom */
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
}

.assetzproject .viewmorebutton svg {
    width: 60px;
    height: 60px;
    fill: white;
    background-color: #ECB51B;
    border-radius: 100%;
    padding: 10px;
}

.assetzproject .viewmorebutton button {
    background-color: #ECB51B;
    color: #000;;
    border: none;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}


.homepage .assetzproject h2{
    font-family: Khula;
    margin-left: 20px;
    font-weight: 600;
    font-size: 40px;
    margin-top: 20px;
}
.homepage .assetzproject .assetztext{
    display: flex;
    margin-left: 20px;
    justify-content:space-between;
    margin-top: 0px;
    position: relative;
}
.homepage .assetzproject .assetztext span{
    position: absolute;
    top:14px;
    left: 0;
    right: 0;
}
.homepage .assetzproject .assetztext .logoasset{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.homepage .assetzproject .assetztext .btn{
    background:linear-gradient(to right, #ECB51B, #FFD870);
    border: none; 
    margin-right: 20px;
    font-weight: 600;
}


.homepage .assetsprice {
    display: flex;
    flex-wrap: wrap; /* Ensures responsiveness */
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    margin-left: 10px;
}

.homepage .assetsprice div {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
}

.homepage .assetsprice div:not(:last-child)::after {
    content: "";
    height: 80%;
    width: 2px;
    background-color: #ccc;
    position: absolute;
    right: -10px;
    top: 10%;
}



.assetzcall {
    text-align: center;
    margin-top: 20px;
    
}

.assetzcall a {
    display: inline-flex;
    align-items: center;
    background:linear-gradient(to right, #ECB51B, #FFD870);
    color: #000;;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    padding: 6px 20px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.assetzcall a i {
    margin-right: 10px;
    font-size: 22px;
    animation: phone-bounce 1.5s infinite;
}


/* Phone icon bounce animation */
@keyframes phone-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}











@media (max-width: 768px) {
    .homepage{
        margin-top: 10px;
    }
    .projecthome p{
        margin-top: 90px;
        font-size: 14px;
        font-family: khula;
    }
   
   
    .homepage .projectassetz {
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }
    .homepage .assetzproject{
       width: 95%;
       margin: auto;
    }

    .homepage .col-8 {
        width: 100%;
       
    }
   
    .homepage .assetzproject img {
        width: 100%;
        height: auto;
    }

    .homepage .newlaunchbutton {
        position: absolute;
        top: 10px;
        left: 10px;
    }
    .homepage .newlaunchbutton button{
        font-size: 12px;
        padding: 4px 10px;  
    }

    .homepage .viewmorebutton {
        position: absolute;
        top: 140px;
      
        left: 10px;
    }
    .assetzproject .viewmorebutton svg {
        width: 30px;
        height: 30px;
        padding: 5px;
    }

    .homepage .viewmorebutton button {
        font-size: 12px;
        padding: 4px 10px;
    }

    .homepage .assetzproject  h2 {
        font-size: 20px;
        margin: 15px
    }

    .homepage .assetztext {
        display: flex;
        margin-left: 15px !important;
        justify-content:space-between;
        margin-top: 0px;
        position: relative;
    }
    .homepage .assetztext span{
        position: absolute;
        top:7px !important;
        font-size: 14px !important;
    }
     .homepage .assetztext .logoasset{
        width: 80px;
        height: auto;
        margin-left: 10px;
      }
      .homepage .assetztext .btn{
        padding: 5px 10px !important;
        font-size: 13px !important;
        
      }
      .homepage .assetsprice {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        gap: 10px; /* Reduce gap for compact display */
        margin: 20px 0; /* Center align the section */
    }

    .homepage .assetsprice div {
        width: 100%;
        font-size: 14px;
        padding: 4px 15px;
        font-weight: 500;
    }

    .homepage .assetsprice div:not(:last-child)::after {
        display: none; /* Remove vertical dividers */
    }

    
}



/* ---------------Apply css for form ---------------------*/



      .homepage  .assetzform1 {
            width: 100%;
            margin: 0 auto;
            padding: 10px; 
           
        }
   

        .homepage .assetform h2 {
            font-weight: 600;
            font-size: 11px;
            padding-bottom: 5px;
            border:1px solid #e9b528;
            padding: 10px;
            border-radius: 5px;
            background:linear-gradient(to right, #ECB51B, #FFD870);
            font-family: khula;
        }
        .section-divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 10px 0;
            font-size: 20px;
          }
          
          .section-divider::before,
          .section-divider::after {
            content: "";
            flex: 1;
            border-bottom: 3px solid #e9b528; /* You can customize color */
          }
          
          .section-divider span {
            padding: 0 10px;
          }
          
       
        .homepage .assetform h5{
            font-weight: 600;
            font-size: 18px;
            font-family: khula;
            text-align: center;
            
        }
       .modal-highlight-bg{
            font-size: 14px;
            background-color: #f0f0f0;
            border-radius:5px;
            padding: 10px;
            font-weight: 600;
        }
        .modal-highlight-bg i{
            font-size: 20px;
            color: #e9b528;
        }
        .modal-highlight-bg span{
            font-family: khula;
        }
       
        .homepage  form {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding:10px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .homepage  .form-control {
            width: 100%;
            padding: 9px;
            font-size: 14px;
            border: 1px solid silver;
            border-radius: 5px;
            font-family: khula;
        }

        .homepage input[type="checkbox"] {
            display: none; /* Hide default checkbox */
        }
        
        .homepage .custom-checkbox {
            display: flex;
            align-items: center;
            font-size: 12px;
            position: relative;
            cursor: pointer;
            font-family: khula;
        }
        
        .homepage .custom-checkbox .checkmark {
            width: 20px;
            height: 16px;
            border-radius: 4px;
            border: 2px solid #000;
            background-color: #fff;
            display: inline-block;
            margin-right: 8px;
            position: relative;
            
        }
        
        .homepage input[type="checkbox"]:checked + .checkmark {
            background-color: #e9b528;
            border-color: #e9b528;
         
        }
        
        .homepage input[type="checkbox"]:checked + .checkmark::after {
            content: "\2713"; /* Unicode checkmark */
            font-size: 14px;
            color: white;
            position: absolute;
            left: 1px;
            top: -4px;
            font-weight: bold;
            
         
        }
        
        .homepage .assetform  button {
            background:linear-gradient(to right, #ECB51B, #FFD870);
            color: #000;;
            padding: 6px;
            font-size: 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            text-transform: uppercase;
            font-weight: 600;
            
        }

 
        .homepage .assetszgallery {
            position: relative;
            display: inline-block;
        }
        
        .homepage .assetszgallery img {
            width: 100%; 
            display: block;
            border-radius: 5px;
            margin-top: 10px;
        }
        
        .homepage .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); 
            width: 60px; 
            height: 60px;
            cursor: pointer;
            transition: transform 0.3s ease-in-out;
        }
        
        .homepage .play-icon:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        @media (max-width: 768px) {
            .modal-highlight-bg{
                font-size: 11px;
            }
            .modal-highlight-bg i{
                font-size: 16px;
            }
            .homepage   .col-4 {
                width: 100%;
                margin: auto;
              
            }
            
            .homepage  .assetzform1 {
              width: 100%;
              margin: 0 auto;
              padding: 10px;
            }
        

            .homepage .assetform h2 {
                font-size: 10px;
                text-align: center;
                display: block;
                padding-bottom: 4px;
                margin-top: 0px;
            }

            .homepage  .form-control, button {
                font-size: 13px;
                padding: 10px;
            }
            .homepage .custom-checkbox {
                font-size: 12px !important;
            }
        }

       



/* ---------------------------Project Menu _-------------------------  */

.projectmenu {
    width: 96.5%;
    display: flex;
    justify-content: center;
    margin: auto;
    height: 50px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 4px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 103px;
    background-color: #fff; 
    z-index: 100;
}

.projectmenu ul {
    list-style: none;
    display: flex;  
    flex-wrap: wrap; 
    justify-content: center; 
    padding: 0;
    margin: 0;
 
 }
 
 .projectmenu ul li {
    margin: 5px 15px; 
 }
 
 .projectmenu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 5px;
    display: block;
    font-family: Khula;
    transition: 0.3s;
 }
 
 .projectmenu ul li a:hover,
 .projectmenu ul li a.active {
     color: #e9b528;
 }
 

 @media (max-width: 768px) {
    .projectmenu  {
      display: none;
    }
    
    .projectmenu ul li {
       width: 100%;
       text-align: center;
    }
 }



/* -------------------------Overview Css ----------------------------------------*/
 

.projectoverview {
    width: 96%;
    margin: auto;
    text-align: center;
    margin-top: 50px;
}

.projectoverview h2 {
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    text-align: start;
    position: relative;
    
}
.projectoverview h2::after {
    content: "";
    position: absolute;
    left: 1%;
    bottom: 1%;
    width: 10%; 
    height: 1px;
    background-color: #ECB51B; 
}


.projectoverview .box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;

}



@media (max-width:768px) {
    .projectoverview{
        width: 95%;
        margin-top: 20px;
    }
    .projectoverview  .box {
        grid-template-columns: 1fr; 
    }
    .projectoverview h2{
        font-size: 20px;
        text-align: center;
    }
    .projectoverview h2::after {
        width: 20%; 
        left: 40%; 
    }

    
}

.projectoverview .box1 {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 18px;
    position: relative;
}


.projectoverview .box1:hover {
    background-color: #000;
    color: white;
}


.projectoverview .box1 i {
    display: block;
    font-size: 30px;
    margin-bottom: 10px;
    color: #ECB51B;
    transition: 0.3s;
}


.projectoverview .box1:hover i {
    color: white;
}



/*-----------------------------Project Rera _-------------------------------------*/


.projectrera{
    margin-top: 50px !important;
    width: 96.5%;
    background: linear-gradient(to right, #ECB51B, #FFD870);
    height: 40px;
    margin: auto;
    border-radius: 5px;
}
.projectrera h2{
    font-family: 'Khula', sans-serif;
    font-size: 25px;
    font-weight: 600; 
    color: #000;;
    text-align:center;
    padding: 10px;
   
}


.projectreraimg {
    width: 96.5%;
    margin: auto;
   
}

.projectreraimg img {
    width: 100px;
    height: auto;
    display: block;
    margin: 20px auto;
}

.projectreraimg h3 {
    font-family: 'Khula', sans-serif;
    font-size: 25px;
    font-weight: 600; 
    margin-top: 30px;
    color: #000;;
    text-align: start;
}

.projectreraimg p {
    font-family: 'Khula', sans-serif;
    font-size: 16px;
    font-weight: 500; 
    text-align: justify;
    line-height: 30px;
    max-height: 90px; 
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.projectreraimg p.show {
    max-height: 1000px; 
}

.read-more-btn {
    color: #ECB51B;
    cursor: pointer;
    font-weight: 600;
    border: none;
    background: none;
    text-align: right;
}
.projectreraimg .btn{
    background: linear-gradient(to right, #ECB51B, #FFD870);
    color: #000;;
    width:  147px;
    height: 35px;
    display: flex;
    margin: auto;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}
.projectreraimg .btn:hover{
    background: linear-gradient(to right, #ECB51B, #FFD870);
    color: #000;;
}

/* Responsive */
@media (max-width: 768px) {
    .projectreraimg {
        max-width: 100%;
        padding: 10px;
    }

    .projectreraimg h3 {
        font-size: 20px;
    }

    .projectreraimg p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* -------------------------Price Css ----------------------------------------*/
.projectprice {
    width: 96.5%;
    margin: auto;
    padding-bottom: 30px;
  }
  
  .projectprice h2 {
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    text-align: start;
    margin-top: 50px;
    position: relative;
    display: inline-block;
  }
  
  .projectprice h2::after {
    content: "";
    position: absolute;
    left: 1%;
    bottom: 1%;
    width: 10%; 
    height: 1px;
    background-color: #ECB51B; 
  }
  
  .price-details {
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    justify-content: center;
  }
  
  .price-box {
    width: 350px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  
  .price-box .label {
    font-size: 25px;
    color: #000;;
    font-weight: 600;
  }
  
  .price-box .amount {
    font-size: 22px;
    font-weight: bold;
    color: #000;;
    margin: 10px 0 15px;
  }
  
  .price-box .price-btn {
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(to right, #ECB51B, #FFD870);
    border: none;
    border-radius: 6px;
    color: #000;;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
  }
  
  .price-box .price-btn:hover {
    transform: scale(1.05);
  }
  
  /* ✅ Responsive for tablets and mobiles */
  @media (max-width: 768px) {
    .price-box {
      flex: 1 1 100%;
    }
  
    .projectprice h2 {
      font-size: 26px;
      text-align: center;
    }
    .projectprice h2 {
        font-size: 20px; 
        text-align: center;
        margin-top: 30px;
    }

    .projectprice h2::after {
        width: 20%; 
        left: 40%; 
    }
  }
  




/*-------------------------------Floor plan -------------------------------*/

.projectfloor {
    width: 96.5%;
    margin: auto;
  }

  .projectfloor h2 {
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    text-align: start;
    margin-top: 50px;
    position: relative;
  }

  .projectfloor h2::after {
    content: "";
    position: absolute;
    left: 1%;
    bottom: 1%;
    width: 10%;
    height: 1px;
    background-color: #ECB51B;
  }

  .projectfloor .swiper {
    padding: 30px 0;
    margin-top: 50px;
  }

  .projectfloor .swiper-slide {
    text-align: center;
    position: relative;
  }

  .projectfloor .swiper-slide img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 5px 4px 6px 5px rgba(0, 0, 0, 0.1);
    height: 250px;
    filter: blur(7px);
  }

  .projectfloor .overlay {
    position: absolute;
    top: 20px;
    right: 10px;
    background: linear-gradient(to right, #ECB51B, #FFD870);
    color: #000;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
  }
  .swiper-pagination-bullet-active {
    background-color: #e9b528 !important;
  }
  

  /* Responsive Styling */
  @media (max-width: 768px) {
    .projectfloor h2 {
      font-size: 20px;
      text-align: center;
      margin-top: 30px;
    }

    .projectfloor h2::after {
      width: 20%;
      left: 40%;
    }

    .projectfloor  .overlay {
      font-size: 14px;
      padding: 8px 12px;
    }
  }



/* -----------------------------------Amenities -----------------------------------------*/

.projectamenities {
    width: 96.5%;
    margin: auto;
    text-align: center;
}

.projectamenities h2 {
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    text-align: start;
    margin-top: 50px;
    position: relative;
   
}

.projectamenities h2::after {
    content: "";
    position: absolute;
    left: 1%;
    bottom: 1%;
    width: 10%; 
    height: 1px;
    background-color: #ECB51B; 
}


.amenities-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 15px;
    padding: 20px;
    justify-items: center;
}


.amenitiesimg {
    padding: 15px;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
}

.amenitiesimg:hover {
    transform: scale(1.05);
}

.amenitiesimg img {
    width: 100px;
    height: 100px;
    transition: transform 0.3s;
    border-radius: 100%;
    border: 1px solid #000;
    padding: 20px;
}

.amenitiesimg:hover img {
    transform: scale(1.1);
    background-color: #FFD870;
    border: 1px solid #ECB51B;
}

.amenitiesimg p {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.amenitiesimg:hover p {
    color: #ECB51B;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .amenities-container {
        grid-template-columns: repeat(3, 1fr); 
    }
}

@media (max-width: 768px) {
    .projectamenities h2 {
        font-size: 20px; 
        text-align: center;
        margin-top: 30px;
    }

    .projectamenities h2::after {
        width: 20%; 
        left: 40%; 
    }
    .amenities-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 480px) {
    .projectamenities h2 {
        font-size: 20px; 
        text-align: center;
        margin-top: 20px;
    }

    .projectamenities h2::after {
        width: 20%; 
        left: 40%; 
    }
    .amenities-container {
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
}


/* -------------------------------------Gallery--------------------------------------------*/


.projectgallery {
    width: 96.5%;
    margin: auto;
    text-align: center;
}

.projectgallery h2 {
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    text-align: start;
    margin-top: 50px;
    position: relative;
   
}

.projectgallery h2::after {
    content: "";
    position: absolute;
    left: 1%;
    bottom: 1%;
    width: 10%; 
    height: 1px;
    background-color: #ECB51B; 
}

.projectgallery .carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: auto;
  }
  
  .projectgallery .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .projectgallery .carousel-slide {
    flex: 0 0 33.3333%; /* 3 per row */
    padding: 10px;
    box-sizing: border-box;
  }
  
  .projectgallery .carousel-slide img {
    width: 100%;
    height: 240px;
    border-radius: 10px;
  }
  
  .projectgallery .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.9);
    border: none;
    color: white;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 10;
    border-radius: 100%;
  }
  
  .projectgallery .prev {
    left: 10px;
  }
  
  .projectgallery .next {
    right: 10px;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .projectgallery .carousel-slide {
      flex: 0 0 50%; 
    }
    .projectgallery h2 {
        font-size: 20px; 
        text-align: center;
        margin-top: 20px;
    }

    .projectgallery h2::after {
        width: 20%; 
        left: 40%; 
    }
  }
  
  @media screen and (max-width: 480px) {
    .projectgallery .carousel-slide {
      flex: 0 0 100%; 
    }
    .projectgallery h2 {
        font-size: 20px; 
        text-align: center;
        margin-top: 20px;
    }

    .projectgallery h2::after {
        width: 20%; 
        left: 40%; 
    }
  }











/* ---------------------------Css of Specification ----------------------------------------*/

.projectspecifications {
    width: 96%;
    margin: auto;
    text-align: center;
}

.projectspecifications h2 {
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    text-align: start;
    margin-top: 50px;
    position: relative;
    
}

.projectspecifications h2::after {
    content: "";
    position: absolute;
    left: 1%;
    bottom: 1%;
    width: 10%; 
    height: 1px;
    background-color: #ECB51B; 
}

/* Specifications Grid */
.specification-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 20px;
    padding: 20px;
    justify-items: start;
}

/* Individual Specification Box */
.specification-item {
    display: flex;
text-align: justify;

    padding: 5px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}



.specification-item i {
    font-size: 24px;
    color: #ECB51B;
    margin-right: 15px;
    transition: transform 0.3s;
}



.specification-item p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
    text-align: start;
}

/* Responsive Design */
@media (max-width: 768px) {
    .projectspecifications h2 {
        font-size: 20px; 
        text-align: center;
        margin-top: 10px;
    }

    .projectspecifications h2::after {
        width: 20%; 
        left: 40%; 
    }
    .specification-container {
        grid-template-columns: repeat(1, 1fr); /* 1 per row */
        padding: 10px;
    }
    .specification-item {
        padding: 0px;
    }
    .specification-item p{
        font-size: 13px;
    }
    .specification-item i {
        font-size: 18px;
    }
}


/* ---------------------------------------Map ---------------------------------*/
.projectmap {
    width: 96%;
    margin: auto;
    text-align: center;        
}


.projectmap  h2 {
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    text-align: start;
    margin-top: 50px;
    position: relative;
    
}

.projectmap  h2::after {
    content: "";
    position: absolute;
    left: 1%;
    bottom: 1%;
    width: 10%; 
    height: 1px;
    background-color: #ECB51B; 
}

.projectmap #map {
    height: 400px; 
    width: 100%;
    margin-top: 10px;
    border: 1px solid #ccc; 
    margin-bottom: 20px;
    z-index: -1;
}

.projectbutton {
    display: flex;
    justify-content: flex-start; 
    align-items: center; 
    gap: 10px; 
    margin-top: 40px;
    
}
.projectbutton button{
    padding: 10px;
    background: linear-gradient(to right, #ECB51B, #FFD870);
    font-weight: 600;
    border: none;
    color: #000;;
    border-radius: 5px;
    cursor: pointer; 
}
.projectbutton input {
    width: 300px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.location-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.location-tabs button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(to right, #ECB51B, #FFD870);
    color: #000;;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    max-width: 232px;
    justify-content: center;
    text-align: center;
    transition: 0.3s;
}

/* Active Button */
.location-tabs button.active {
    background: #FFD700;
    color: #000;;
    font-weight: bold;
    border: 2px solid #ECB51B;
}

.projectlocationcontent {
    font-size: 16px;
    color: #333;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f8f9fa;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
}

.content-item {
    display: none;
    margin: 0;
    font-size: 14px;
}

/* Default Active Content */
.content-item.active-content {
    display: inline-block;
}

.content-item i {
    color: #ECB51B;
    margin-right: 5px;
}
@media (max-width: 768px) {
    .projectmap {
        width: 100%;
        padding: 0 10px; 
        text-align: center;
    }

    .projectmap h2 {
        font-size: 20px; 
        text-align: center; 
        margin-top: 20px;
    }

    .projectmap h2::after {
        width: 20%; 
        left: 40%;
    }

    .projectmap #map {
        height: 250px; 
        margin-bottom: 15px;
    }

    .projectbutton {
      display: flex;
        gap: 10px;
        margin-top: 20px;
    }
    .projectbutton button{
       font-size: 10px !important;
    }

    .projectbutton input {
        width:150px !important; 
        font-size: 10px;
    }

    .location-tabs {
        flex-direction: column; 
        gap: 5px;
    }

    .location-tabs button {
        max-width: 100%; 
        font-size: 12px; 
        padding: 8px;
    }

    .projectlocationcontent {
        font-size: 14px;
        padding: 10px;
        margin-top: 10px;
    }
  
}



/*----------------------About developer -----------------------------------------*/

.projectdeveloper{
    width: 96%;
    margin: auto;
    text-align: center;

          
}


.projectdeveloper  h2 {
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    text-align: start;
    margin-top: 50px;
    position: relative;
    
}

.projectdeveloper h2::after {
    content: "";
    position: absolute;
    left: 1%;
    bottom: 1%;
    width: 10%; 
    height: 1px;
    background-color: #ECB51B; 
    object-fit:fill;
}

.developerlogo {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px;
    border-radius: 8px;
    flex-wrap: wrap;
}

.developerlogo .developer-img {
    width: 200px;
    height: auto;
    max-width: 100%;
}

.developerlogo .developer-content {
    flex: 1;
    font-size: 16px;
    color: #333;
}
.developerlogo .developer-content h3{
   text-align:start;
   font-family: 'Khula', sans-serif;
   color: #000;;
   font-size: 25px;
   font-weight: 600;
   text-align: start;
   margin-top: 50px;
   position: relative;
   
}

.developerlogo .developer-content h3::after {
   content: "";
   position: absolute;
   left: 1%;
   bottom: 1%;
   width: 10%; 
   height: 1px;
   background-color: #ECB51B; 
   object-fit:fill;
}

.developerlogo .short-text{
    text-align: justify;
    font-family: 'Khula', sans-serif;
    color: #000;;
    font-size: 18px;
    line-height: 25px;
}




/* Responsive Styling */
@media (max-width: 768px) {
    .developerlogo {
        flex-direction: column; /* Stack elements vertically */
        text-align: center;
        align-items: center;
        padding: 0px;
    }
    .projectdeveloper h2 {
        font-size: 20px; 
        text-align: center; 
        margin-top: 30px;
    }

    .projectdeveloper h2::after {
        width: 20%; 
        left: 40%;
    }

    .developerlogo .developer-img {
        width: 100px; 
    }

    .developerlogo .developer-content {
        text-align: center; /* Center align text */
    }

    .developerlogo .developer-content h3 {
        text-align: center; 
        margin-top: 0px; 
    }
    .developerlogo .developer-content h3::after{
        width: 20%; 
        left: 40%;
    }

    .developerlogo .short-text {
        font-size: 14px; 
        line-height: 22px;
        padding: 0 10px; 
        text-align: justify;
    }
}



/* -----------------------------------------Similar Project -----------------------------------*/




.similarproject  h2 {
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    text-align: start;
    margin-top: 50px;
    position: relative;
    
}

.similarproject h2::after {
    content: "";
    position: absolute;
    left: 1%;
    bottom: 1%;
    width: 10%; 
    height: 1px;
    background-color: #ECB51B; 
    object-fit:fill;
}


.swiper {
    width: 100%;
    border-radius: 30px;
   
  }
  
  
  
  .card-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px auto;
    
  }

  .card-wrapper .swiper-slide {
    position: relative;
    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;
  }
  .card-wrapper .heart-icon {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}
.card-wrapper .heart-icon.filled {
    color: red;
}


  
  .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: 17px;
  }
  
  .card-list .card-link p {
    color: #000;;
    font-size: 15px;
    font-weight: 600;
    text-align: justify;
  }
  
  .card-list .card-link span {
    font-size: 11px;
    color: #333;
    margin-bottom: 40px;
    padding: 15px;
    position: absolute;
    bottom:-10px;
    display:flex;
    flex-wrap: wrap;
    text-align: justify;
    
}

.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;
}
 
  
  /* Responsive Styles for Mobile Devices */
  @media (max-width: 768px) {
    .similarproject h2 {
        font-size: 20px; 
        text-align: center; 
        margin-top: 30px;
    }

    .similarproject h2::after {
        width: 20%; 
        left: 40%;
    }
    .card-wrapper{
        padding-right: 30px;
    }
  }




  
/*---------------------------------------------------------- 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;
      }
}