* {
    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: 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-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 -----------------------------------------------------------------*/
.homepage{
    margin-top: 110px;
    justify-content: space-between;
    display: flex;
    margin-bottom: 10px;
}


.homepage p{  
    margin-left: 20px;
    margin-bottom: 0px;
}
.homepage p a{
    text-decoration: none;
    color: #545454;
    
}
.homepage p a:hover{
    color: #09c4cc;
}

.dropdown1 {
    position: relative;
  }
  
  .dropbtn1 {
    padding: 10px 26px;
    background-color: #fff;
    color: black;
    border: none;
    font-weight: 600;
    cursor: pointer;
  }
  
  .dropdown-content1 {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background-color: white;
    min-width: 160px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .dropdown-content1 a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
  }
  
  .dropdown-content1 a:hover {
    background-color: #f1f1f1;
  }
  
@media(max-width:768px){
    .homepage{
        margin-top: 90px;
          margin-bottom: 10px;
    }  
    .dropbtn1{
        padding: 0px 24px;
    }


    .assetform h2 {
        font-size: 10px !important;
        text-align: center;
        display: block;
        padding-bottom: 4px;
    }

     .form-control, button {
        font-size: 13px;
        padding: 10px;
    }
   .custom-checkbox {
        font-size: 12px !important;
    }
}










 .assetform h2 {
    font-weight: 400;
    font-size: 10px;
    margin: 10px auto;
    padding-bottom: 5px;
    border:1px solid #ECB51B;
    padding: 10px;
    border-radius: 5px;
    background-color: #ebd9a8;
    
}
 .assetform h5{
    font-weight: 600;
    font-size: 20px;
}

.assetform form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.assetform .form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid silver;
}

.assetform input[type="checkbox"] {
    display: none; /* Hide default checkbox */
}

.assetform .custom-checkbox {
    display: flex;
    align-items: center;
    font-size: 12px;
    position: relative;
    cursor: pointer;
}

.assetform .custom-checkbox .checkmark {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 2px solid #ECB51B;
    background-color: #fff;
    display: inline-block;
    margin-right: 8px;
    position: relative;
}

.assetform input[type="checkbox"]:checked + .checkmark {
    background-color: #ECB51B;
    border-color: #ECB51B;
 
}

.assetform input[type="checkbox"]:checked + .checkmark::after {
    content: "\2713"; /* Unicode checkmark */
    font-size: 14px;
    color: white;
    position: absolute;
    left: 1px;
    top: -4px;
    font-weight: bold;
}

 .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;
}



/* ----------------------------------New Launch Projeject Listing---------------------------------------------------*/
.projectlisting{
    margin-left: 20px;
  
    display: flex;
    margin-right: 20px;
}

.project-type {
    width: 100%;
    background: #efeeee;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 10px;
    overflow-y: auto;
    
}

/* Filter button */
.projectlisting .filter {
    padding: 12px;
    margin-bottom: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
    transition: background 0.3s;
}

.projectlisting .filter  span i{
    color: #e9b528;
    
}

.projectlisting .filter:hover {
    background: #f5f5f5;
    border-radius: 5px;
}

/* Dropdown Content */
.projectlisting .dropdown-content {
    display: none;
    background: #f9f9f9;
    border: 1px solid #ddd;
    width: 100%;
    padding: 10px 0;
    border-radius: 5px;
}

.projectlisting .dropdown-content span {
    display: inline-block;
    margin: 5px;
    padding: 5px 15px;
    border: 1px solid #6D6E70;
    border-radius: 50px; 
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    font-size: 12px; 
    font-weight: 500;
    color: #6D6E70;
    background: #fff;
    font-family: 'Khula', sans-serif;
}

.projectlisting .dropdown-content span:hover {
    background: #e9b528;
    color: #000;
    border: none;
}



.projectlisting .dropdown-content p:hover {
    background: #ddd;
}

/* Rotate Arrow */
.projectlisting .filter i {
    transition: transform 0.3s ease;
}


.project-type.dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    text-align: center;
    font-family: 'Khula', sans-serif;
}

.dropdown-content label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

input[type="range"] {
    width: 90%;
    -webkit-appearance: none;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    margin: 10px 0;
}


.project-type input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #e9b528;
    border-radius: 50%;
    cursor: pointer;
}

#budgetValue {
    font-size: 16px;
    font-weight: bold;
    color: #6D6E70;
}


@media (max-width: 768px) {
   .project-type input[type="range"] {
        width: 100%;
    }

    #budgetValue {
        font-size: 14px;
    }
}


.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #6D6E70;
    font-family: 'Khula', sans-serif;
}


.checkbox-container input {
    display: none;
}


.checkbox-container .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #6D6E70;
    border-radius: 4px;
    display: inline-block;
    margin-right: 8px;
    position: relative;
}

.checkbox-container input:checked + .checkmark {
    background-color: #6D6E70;
}

.checkbox-container input:checked + .checkmark::after {
    content: "✔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}




@media (max-width: 768px) {
   
    .projectlisting .col-3 {
        width: 100%;
    }
    .project-type {
        position: static;
        width: 100%;
        height: auto;
    }

    .projectlisting .filter {
        font-size: 14px;
        padding: 10px;
    }

    .projectlisting .dropdown-content {
        font-size: 14px;
        padding: 10px;
    }
    .dropdown-content {
        width: 100%;
    }

    .checkbox-container {
        font-size: 12px;
    }

    .checkbox-container .checkmark {
        width: 16px;
        height: 16px;
    }
}



/* -----------------------------------------Project display ------------------------------------------*/
.projectlisting .col-9{
    padding-left: 30px;
 }

 
 


 .col-9 h2{
    font-size: 36px;
    font-family: 'khula',sans-serif;
    font-weight: 600;
 }

.projectlisting .project-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 10px;
    margin-right: 10px;
}


.projectlisting .project-image-container {
    position: relative;
    width: 50%;
}
.projectlisting .project-image-container img{
   position: relative;
}

/* .projectlisting .project-image-container .threeimg {
    position: absolute;
    bottom: 0;
    left: 0;
    
   
}
.projectlisting .project-image-container .threeimg img{
    width: 110px;
    height: ;
    margin: 0px;
    padding: 0px;
    gap: 0;
    display: inline-flex;
} */


.projectlisting .new-launch {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(to right, #ECB51B, #FFD870);
    color: #000;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
}

.projectlisting .heart {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
}

.heart.active {
    color: red; 
    transform: scale(1.2);
}

.projectlisting .project-image {
    width: 100%;
    height: auto;
    border-radius: 20px 0 0 20px;
}

.projectlisting .project-details {
    width: 80%;
    padding-left: 15px;
    padding: 10px;
}

.projectlisting .project-details h3 {
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 25px;
    font-weight: 600;
}

.projectlisting .project-details p {
    font-size: 14px;
    margin: 5px 0;
     font-weight: 500;
}



.project-details .info-row1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
   
}
.project-details .info-row2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.project-details .info-row{
    display: flex;
}
.project-details .info-row p {
    margin: 0;
    flex: 1;
    font-family: 'Khula', sans-serif;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;

}

.project-details .info-row p:not(:first-child) {
    border-left: 1px solid #6F6B6B; 
    display: flex;
    justify-content: center; 
    align-items: center;
    
}


.rera-checkbox {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid green; 
    border-radius: 3px;
    background-color: green;
    position: relative;
    cursor: pointer;
}


.rera-checkbox:checked::after {
    content: "✔";
    position: absolute;
    left: 2px;
    top: -2px;
    color: white; 
    font-size: 12px;
    font-weight: bold;
}

.projectlisting .buttons {
   display: flex;
    justify-content: space-between; /* Aligns items properly */
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    animation: fadeIn 0.5s ease-in-out /* Animation effect */
}


.projectlisting .buttons p,
.projectlisting .btn {
    position: relative;
    padding: 0 15px; 
    font-weight: 600;
}




.projectlisting .btn {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease-in-out; 
}

.projectlisting .btn.contact {
    border: 1px solid #000;
    color: #000;
    padding: 8px 17px;
}
.projectlisting .btn.contact:hover{
    background: linear-gradient(to right, #ECB51B, #FFD870);
    color: #000;
    border: none;
}

.projectlisting .btn.brochure {
    background: linear-gradient(to right, #ECB51B, #FFD870);
    color: #000;
}

.projectlisting .btn:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {

    .projectlisting {
        display: flex;
        flex-direction: column; 
        align-items: center;
        justify-content: center;
        align-items: center;
    }
    .projectlisting h2 {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    .projectlisting .col-9{
        width: 100%;
        padding-left: 0px;
        margin-left: auto;
        margin-right: auto;
      }

    .projectlisting .project-card {
        display: flex;
        flex-direction: column; 
        width: 100%;
        max-width: 500px; 
        text-align: center;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); 
        border-radius: 20px;
        background: #fff;
        overflow: hidden; 

    }

    .projectlisting .project-image-container {
        width: 100%;
    }

    .projectlisting .project-image-container img {
        width: 100%; 
        height: auto;
        border-radius: 8px 8px 0 0; 
    }

    .projectlisting .project-details {
        width: 100%;
        padding: 15px;
        text-align: center;
    }
    .projectlisting .project-details h3 {
        font-family: 'Khula', sans-serif;
        color: #000;
        font-size: 20px;
        font-weight: 600;
        text-align: left;
    }

    .project-details .info-row {
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }
    .project-details .info-row p {
        width: 100%;
        text-align: center;
        font-size: 10px; 
        line-height: 1.4;
        color: #333;
    }
    .projectlisting .project-details p {
        font-size: 10px;
        margin: 5px 0;
    }

    .projectlisting .buttons {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .projectlisting .btn {
        padding: 5px 13px;
        font-size: 10px;
    }
    .projectlisting .btn.contact {
        padding: 5px 13px;
        font-size: 10px;
    }
    @media (max-width: 768px) {
        .favorite-message {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            padding: 10px 8px;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap; /* Ensures text stays in one line */
            text-align: center;
        }
    
        .message-icon {
            width: 18px; /* Adjusted size for mobile */
            height: 18px;
        }
    }
    
   
}



@media (max-width: 568px) {
    .projectlisting .buttons {
        display: flex;
        align-items: center;
        gap: 7px;
        width: 100%;
    }
    .projectlisting .btn {
        padding: 5px 6px;
        font-size: 10px;
    }
    .projectlisting .btn.contact {
        padding: 5px 6px;
        font-size: 10px;
    }
    .projectlisting .buttons p{
         font-size: 7px;
    }
    .project-details .info-row {
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }
    .project-details .info-row p {
        width: 100%;
        text-align: center;
        font-size: 10px; 
        line-height: 1.4;
        color: #333;
    }
    
}


/*---------------------------Pagination--------------------------------------------*/


.pagination {
    display: flex;
    list-style: none;
    padding-right: 50px;
    padding-bottom: 20px;
    justify-content: end;
    margin-top: 20px;
}

.pagination .page-item {
    margin: 0 2px;
}

.pagination .page-link {
    background: linear-gradient(to right, #ECB51B, #FFD870);
    border: none;
    padding: 8px 12px;
    margin: 2px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
    font-weight: bold;
    color: #000;
}

.pagination .page-link:hover {
    background: #09c4cc;
    color: #000;
    font-weight: 600;
}

.pagination .active .page-link {
    background: #09c4cc;
    color: #000;
    font-weight: 600;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0px;
        padding-bottom: 0px;
    }

    .pagination .page-item {
        margin: 3px;
    }

    .pagination .page-link {
        padding: 6px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0px;
        padding-bottom: 0px;
    }

    .pagination .page-item {
        margin: 2px;
    }

    .pagination .page-link {
        padding: 5px 8px;
        font-size: 12px;
    }
}






 
/*----------------------------------------- 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;
      }
}