@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

  #navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px !important;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
  background-color: white; 
   
}

#navbar.navbar-scrolled {
  background-color: white; 
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}


.logo img {
    max-width: 170px;
    margin: 15px;
    margin-left: 30px;
}


#hamburger-btn{
  margin: 15px;
  width: 100px;
}


.hamburger-icon {
  width: 60px;
  fill: #333;  
  cursor: pointer;
  transition: fill 0.3s ease;
}

#navbar.navbar-scrolled .hamburger-icon {
   fill: #333; 
}











 #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: #000;
  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;
    }


    #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;
    }

   .menu {
    width: 200px;
  }
  .menu ul li a, .menu ul li label {
    padding: 10px;
    font-size: 15px;
  }
  
}

 


  /*---------------------------------- Apply CSS for  Homepage ---------------------------------  */


  #typewriter {
    font-size: 40px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-top: 20px;
  }

  #city {
    border-right: 3px solid white;
    white-space: nowrap;
    display: inline-block;
    animation: blink 0.8s infinite;
  }

  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }

  .homepage {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.homepage video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    margin-top: 80px;
}



.homepage .content {
    display: flex;
    height: 85%;
    z-index: 3;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #ddd;
}
.homepage .projectlist{
  background-color: #09c4cc;
  padding: 15px 61px;
  display: flex;
  gap: 30px;
  border-top-left-radius:40px ;
  border-top-right-radius: 40px;
  width: 100%;
  max-width: 700px;
 
}
.homepage .projectlist a{
  color: #fff;
  text-decoration: none;
}
.homepage .projectlist span{
    font-size: 16px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease-in-out;
    font-weight: 600;
}

.homepage .projectlist span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #e9b528;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}


.homepage .projectlist span:hover::after {
  transform: scaleX(1);
}


.homepage .content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.homepage .search-bar {
    
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 700px;
    background-color: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}







 .divider {
  width: 1px;
  height: 35px;
  background-color: #ccc;
  margin: 0 10px;
}


.search-bar input {
  flex: 1;
  padding: 20px;
  font-size: 14px;
  border: none;
  outline: none;
  position: relative;
  border-bottom-left-radius: 5px;
}


.search-bar button {
  padding: 20px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom-right-radius: 5px;
}
.search-bar button img {
  width: 20px;
}


.search-bar button:hover {
  background-color: #f0f0f0;
}

.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: 1000;
 
 
}

.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;
}



.homepage .search-bar button i {
    font-size: 16px;
}
.homepage .bottom-text {
  position: relative;
  bottom: 0;
  left: 0;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content:space-around;
  align-items: center;
}

.homepage .bottom-text .box1 {
  position: relative;
  padding: 0 90px; 
 
}


.homepage .bottom-text .box1:not(:first-child) {
  border-left: 1px solid white;
}

.homepage .bottom-text .box1 p {
  color: #fff;
  font-size: 18px;
  line-height: 25px;
  display: flex;
}
.homepage .bottom-text .box1 i{
  margin-top: 10px;
  padding-right: 10px;
}

/* Mobile-only styles */
@media (max-width: 768px) {
  .homepage{
    width: 100%;
    height: 600px !important;
  }
  #typewriter {
      font-size: 18px; /* Reduce font size for better fit */
  }



  .homepage .search-bar { 
      width: 95%; 
  }

  .homepage .search-bar input{
     font-size: 11px;
  }
  .homepage .search-bar button {
      padding: 12px;
  }
  

  .homepage .projectlist {
    padding: 10px 20px; 
    gap: 8px; 
    max-width: 95%; 
    flex-wrap: nowrap; 
    overflow-x: auto; 
    justify-content: center; 
  }
  .homepage .projectlist span{
    font-size: 10px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease-in-out;
    font-weight: 600;
}
.homepage .bottom-text {
  flex-wrap: nowrap; 
  overflow-x: auto;
  padding: 10px; 
  justify-content: space-between;
}

.homepage .bottom-text .box1 {
  padding: 0 10px; 
  white-space: nowrap; 
}

.homepage .bottom-text .box1 p {
  font-size: 10px; 
  line-height: 15px;
}

.homepage .bottom-text .box1 i {
  font-size: 10px !important; 
  padding-right: 5px;
}
  
}




/* ------------------------------------Clustered Collection ---------------------------------------  */

/* 
.cluster {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #f9f9f9;
  padding: 20px 0;
  margin-top: 30px;
}
.cluster h1{
  text-align: center;
}
.cluster h1 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  position: relative;
  margin: auto;
}

.cluster h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 17%;
  height: 2px;
  background-color: #e9b528;
  transform: translateX(-50%);
}
.cluster p{
  text-align: center;
}

.cluster-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  margin: 30px;
  
}


.cluster-box {
  box-sizing: border-box;
  position: relative;
  display: flex;
  margin: auto;
  justify-content: center;
}

.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;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  z-index: 2; 
}


.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;

}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;

  padding: 10px 15px;
  border-radius: 4px;
  z-index: 1;
}

.hover-square {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  z-index: 0;
  border: 1px solid white;
  transition: all 0.5s ease-in-out;
}

.image-wrapper:hover .hover-square {
  width: 80%;
  height: 80%;
  border-radius: 8px;
  z-index: 1;
}


@media (max-width: 768px) {
  .cluster-box {
      flex: 0 0 100%;
  }
} */


  /*---------------------------------------- Property types-------------------------------------- */
  .swiper {
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
    box-sizing: border-box;
    
  }
  
  .swiper h2 {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    position: relative;
    margin: auto;
  }
  
  .swiper h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 17%;
    height: 2px;
    background-color: #e9b528;
    transform: translateX(-50%);
  }

 
  
  
  .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;
}
 
  
  /* Responsive Styles for Mobile Devices */
       
  @media (max-width: 768px) {
    .swiper h2{
      font-size: 20px;
    }
  }


/* -----------------------------------------Project Cities----------------------------------------  */

.cities {
  width: 100%;
  margin-top: 10px;
}

.cities h2 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  position: relative;
  margin: auto;
}

.cities h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 12%;
  height: 2px;
  background-color: #e9b528;
  transform: translateX(-50%);
}

.cities-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.city {
  position: relative;
  text-align: center;
}
.city:hover{
  color: #333;
}

.city img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 5px;
  display: block;
}

.city .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(to right, #ECB51B, #FFD870);
  border: none;
  padding: 3px 20px;
  font-size: 25px;
  font-weight: 600;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}



/* Responsive Design */
@media (max-width: 768px) {
  .cities h2{
    font-size: 20px;
  }
  .cities-container {
    flex-direction: column; 
    align-items: center;
  }

  .city {
    width: 90%; 
    max-width: 680px;
  }

  .city .btn {
    font-size: 20px; 
    padding: 2px 15px;
  }


}





















  

  /* ----------------------------------------------------Testimonials--------------------------------------------- */

 .testimonial_heading{
     margin-top: 110px;
 }

  .testimonial_section {
    display: block;
    overflow: hidden;
    padding-top: 30px;
    width: 96%;
    display: flex;
    justify-content: center;
    margin: auto;
   
  }
.testimonial_heading h2 {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    position: relative;
    margin: auto;
    margin-bottom: 40px;
  }
  
  .testimonial_heading  h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 16%;
    height: 2px;
    background-color: #e9b528;
    transform: translateX(-50%);
  }
  
  .testimonial_section:after {
    display: block;
    clear: both;
    content: "";
  }
  .testimonial_section .about_content {
   background:linear-gradient(to right, #ECB51B, #FFD870);
    padding-top: 77px;
    padding-right: 210px;
    padding-bottom: 62px;
    position: relative;
  }
  .testimonial_section .about_content .background_layer {
    background-color: #000;
    width: auto;
    margin-left: -200px;
    right: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
  }
  .testimonial_section .about_content .layer_content {
    position: relative;
    z-index: 9;
    height: 100%;
  }
  .testimonial_section .about_content .layer_content .section_title {
    margin-bottom: 24px;
    position: relative;
  }
  .testimonial_section .about_content .layer_content .section_title:after {
    display: block;
    clear: both;
    content: "";
  }
  .testimonial_section .about_content .layer_content .section_title h5 {
    color: #fff;
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: #818a8f;
    margin-top: -5px;
    margin-bottom: 6px;
  }
  .testimonial_section .about_content .layer_content .section_title h3 {
    font-family: "Titillium Web";
    font-weight: 300;
    font-size: 45px;
    line-height: 50px;
    padding-bottom: 51px;
    margin-bottom: 0px;
    color: #fff;
  }
  .testimonial_section .about_content .layer_content .section_title h2 strong {
    font-weight: 600 !important;
    width: 100%;
    display: block;
  }
  .testimonial_section .about_content .layer_content .section_title .heading_line {
    position: relative;
  }
  .testimonial_section .about_content .layer_content .section_title .heading_line span {
    transition: all 0.5s ease-in-out 0s;
    position: relative;
  }
  .testimonial_section .about_content .layer_content .section_title .heading_line span:after {
    content: "";
    right: auto;
    left: 69px;
    position: absolute;
    bottom: 28px;
    width: 17px;
    margin-left: 0;
    border-bottom-width: 3px;
    border-bottom-color: #cacaca;
    border-bottom-style: solid;
  }
  .testimonial_section .about_content .layer_content .section_title .heading_line:after {
    content: "";
    left: 1%;
    margin-left: 0;
    position: absolute;
    bottom: 28px;
    width: 59px;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-bottom-color: #e9b528;
  }
  .testimonial_section .about_content .layer_content .section_title p {
    color: #fff;
    margin: 0 0 15px;
  }
  .testimonial_section .about_content .layer_content a {
    color: #fff;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
  }
  .testimonial_section .about_content .layer_content a i {
    font-size: 18px;
    vertical-align: middle;
   
  }
  .testimonial_section .about_content .layer_content a{
    color: #e9b528;
    border: 1px solid #e9b528;
    padding: 10px 20px;
    border-radius: 5px;
  }
  .testimonial_section .about_content .layer_content a:hover {
    color: #000;
    background-color: #fff;
    border: none;

  }
  .testimonial_section .testimonial_box {
    margin-top: 60px !important;
    position: relative;
  }
  .testimonial_section .testimonial_box .testimonial_container {
    background-color: #e9b528;
    margin-left: -170px !important;
    position: relative;
  }
  .testimonial_section .testimonial_box .testimonial_container .background_layer {
    background-color: #edf9f9;
    width: auto;
    margin-right: -200px;
    right: 0;
    background-image: url(../images/map.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
  
  }
  .testimonial_section .testimonial_box .testimonial_container .layer_content {
    position: relative;
    z-index: 9;
    height: 100%;
    font-family: "poppins",sans-serif;
  }
  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel {
    display: block;
    position: relative;
  }
  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
    margin: 10px 0 10px 0;
    padding: 62px 0px 72px 50px;
    position: relative;
    text-align: center;
    font-family: "poppins",sans-serif;
    
  }
  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);
    margin-left: 10px;
    margin-top: 69px;
    padding: 45px 40px 45px 40px;
    z-index: 1;
    position: relative;
    background-color: #fff;
    transition: all 0.5s ease-in-out 0s;
    font-family: "poppins",sans-serif;
    border-radius: 10px;
    overflow: hidden;
  }
  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption {
    margin-bottom: 15px;
    position: relative;
  }
  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption:after {
    content: "";
    width: 30px;
    display: block;
    height: 2px;
    text-align: center;
    left: 46%;
    margin-top: 6px;
    background-color: #09c4cc;
    position: absolute;
  }
  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption h6 {
    padding-top: 0;
    margin-bottom: -5px;
    font-size: 19px;
    font-weight: 600;
    line-height: 24px;
    color: #020d26;
    font-family: "poppins",sans-serif;
  }
  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption span {
    font-size: 12px;
    color: #9f9f9f;
    margin: 0;
    font-family: "poppins",sans-serif;
  }
  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content p {
    padding: 0;
    margin: 0;
    padding-top: 10px;
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
    color: #5d6576;
    font-family: "poppins",sans-serif;
  }
  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
    border: none;
    position: absolute;
    top: 0;
    left: 5px;
    top: 5px;
  }
  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img img {
    border: 5px solid #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    width: 35%;
  }
  .testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev {
    position: absolute;
    top: 165px;
    right: 42px;
    border-radius: 0;
    background: #09c4cc;
    display: block;
    outline: 0;
    width: 34px;
    line-height: 34px;
    height: 34px;
    color: #fff;
    font-size: 23px;
    margin-top: -20px;
    transition: all 0.3s ease-in-out;
  }
  .testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev:hover {
    background: #000;
  }
  .testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
    position: absolute;
    top: 165px;
    right: 5px;
    border-radius: 0;
    display: block;
    background: #09c4cc;
    outline: 0;
    width: 34px;
    text-align: center;
    line-height: 34px;
    height: 34px;
    color: #fff;
    font-size: 23px;
    margin-top: -20px;
    transition: all 0.3s ease-in-out;
  }
  .testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:hover {
    background: #000;
  }
  
  @media (max-width: 768px) {
    .testimonial_heading  h2{
      font-size: 20px;
    }
    .testimonial_section .about_content {
      padding-right: 15px !important;
    }
    .testimonial_section .about_content .background_layer {
      width: 200% !important;
    }
    .testimonial_section .testimonial_box {
      margin-top: 0 !important;
    }
    .testimonial_section .testimonial_box .background_layer {
      width: 200% !important;
      margin-left: -200px;
    }
    .testimonial_section .testimonial_box .about_content {
      padding-left: 15px !important;
      padding-right: 15px !important;
      margin-top: 28% !important;
    }
    .testimonial_section .testimonial_box .testimonial_container {
      margin-left: -15px !important;
    }
    .testimonial_section .testimonial_box .testimonial_container .testimonials {
      margin: 0px 0 20px 0;
     
    }
    .testimonial_section .testimonial_box .testimonial_container .testimonials .testimonial_content {
      margin-left: -36px !important;
    }
    .testimonial_section .testimonial_box .testimonial_container .testimonials .images_box {
      display: block;
     
    }
    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
      border: none;
      position: absolute;
      left: 55px;
      top: 0px;
    }
    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img img {
      width: 80%;
    }
  }


 


/*---------------------------------------- Builder name -----------------------------------*/

.slider-text {
  margin-top: 50px;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}


.slider-text h2 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  position: relative;
  margin: auto;
  margin-bottom: 40px;
}

.slider-text h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 16%;
  height: 2px;
  background-color: #e9b528;
  transform: translateX(-50%);
}


.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}


.slider-track {
  display: flex;
  gap: 20px;
  animation: scroll 15s linear infinite;
  width: calc(150px * 10);
  align-items: center;
}

/* Image Styling */
.slider-track img {
  height: 150px;
  width: auto;
  border: 1px solid #000;
  border-radius: 100px;
  padding: 10px;
  background-color: #fff;
  transition: transform 0.3s ease-in-out;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


@media (max-width: 768px) {
  .slider-text h2 {
    font-size: 20px;
  }

  .marquee {
    padding-top: 20px;
  }

  .slider-track {
    animation: scroll 12s linear infinite; /* Faster for smaller screens */
  }

  .slider-track img {
    height: 100px; /* Reduce image size */
    padding: 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;
      }
}