* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  color: #333;
}

@font-face {
    font-family: 'Jost';
    src: url('https://www.kings-property.com/font/Jost-Italic-VariableFont_wght.ttf') format('truetype'),
         url('https://www.kings-property.com/font/Jost-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 400; /* Default weight */

}

header h1, header .subtitle {
  color: #ffffff;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  font-weight: 700;
  line-height: 1.3;
}

header h1 {
  font-size: 3rem;
  letter-spacing: 1px;
  animation: fadeInDown 1.2s ease-in-out;
}

header .highlight {
  color: #ffcc00;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

header .subtitle {
  font-size: 1.4rem;
  margin-top: 10px;
  font-weight: 400;
  animation: fadeInUp 1.5s ease-in-out;
  font-weight: 500;
}

/* Optional Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.overlay {
  background-color: rgba(117, 99, 99, 0.4);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}



@keyframes revealText {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.highlight {
  color: #ffcc00;
  font-weight: bold;
  border-right: 2px solid #ffcc00; /* typing line */
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  width: 0; /* Start with hidden width */
  animation: typingEffect 2.5s steps(20, end) forwards, blinkCursor 0.8s step-end infinite;
  vertical-align: bottom;
}

@keyframes typingEffect {
  from {
    width: 0;
  }
  to {
    width: 14ch; /* adjust based on number of characters */
  }
}

@keyframes blinkCursor {
  0%, 100% {
    border-color: #ffcc00;
  }
  50% {
    border-color: transparent;
  }
}



@media (max-width: 768px) {
.call-button {display: none !important;}
.header-container .logo {min-width:unset;margin: 0;}


    
}


.place-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
}






.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
}




/* Call Button */
.call-button {
    font-size: 16px;
  background-color:#5fb133 ;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  position: relative;
    
}

.call-button a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.call-icon {
    margin-right: 8px;
    font-size: 18px;
}

.call-button:hover {
    background-color: #e8741f;
}

/* Hamburger Menu */
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}



.nav-menu ul {
    list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.nav-menu ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-menu ul li a:hover {
    color: #5fb133;
    
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        justify-content: space-between;
        align-items: center;
    }

    .call-button {
        font-size: 12px;
        padding: 5px 8px;
    }

    .menu-icon {
        display: block;
        margin-left: 10px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #cda549;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .nav-menu ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu ul li a {
        display: block;
        padding: 10px 10px;
        width: 100%;
        font-size: 16px;
    }

    .nav-menu ul li:last-child {
        border-bottom: none;
    }

    .nav-menu.open {
        display: flex;
        padding-top: 0px;
    }
}














.hero-background {
  position: relative;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: url("https://www.kings-property.com/newsite/images/kings-property-seawoods-eal-estatae-consultant.webp") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  padding: 4.37rem 0;
}


@media (max-device-width: 1024px) {
  .hero-background {
    background-attachment: scroll;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
}


@media screen and (min-width: 1px) and (max-width: 599px) {
  .container {
   padding: 0;
    width: 95% !important;
  }
  
}

headers {
  text-align: center;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 1px) and (max-width: 599px) {
h1 {font-size: 1.5rem !important}
#ccna-section h2{font-size: 1.4rem !important;margin-bottom:20px !important}
.ccna-heading h3{font-size: 1.3rem !important;margin-bottom:20px !important}
.header h2{font-size:25px !important}
.section-header h2{font-size:24px !important}
.properties-section{padding: 60px 15px !important;}
.discover-header h2{font-size:23px !important}
.testimonial-header h2{font-size:23px !important}
.testimonial-header{padding: 60px 20px !important;}
}


h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  margin-top: 20px;
}



.subtitle {
  font-size: 1.3rem;
  margin-bottom: 50px;
  font-weight: 500;
}




.search-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: row;
  position: relative;
}



.search-box input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.3);
}

.search-btn {
  background: linear-gradient(to right, #ff5a5f, #ff9966);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  width: 150px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 90, 95, 0.4);
  background: linear-gradient(to right, #ff7e5f, #feb47b);
}

@media (min-width: 768px) {
  .search-box {
    flex-direction: row;
  }
  
  
  
}

@media (max-width: 767px) {
  .search-box input {
    width: 83%;
    font-size: 11px;
    text-align: center;
  }
  
  header h1{font-size: 1.5rem}
  header .subtitle{font-size: 1.4rem;margin-top: 20px;}
  
}






/* popular section  */

.popular-places {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 100px 0;
}

.header {
  text-align: center;
  margin-bottom: 60px;
}

.header h1 {
  font-size: 40px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}
.header h2 {
  font-size: 40px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.header p {
  color: #666;
  font-size: 18px;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Default for small devices */
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .places-grid {
    grid-template-columns: repeat(2, 1fr); /* Medium devices */
  }
}

@media (min-width: 1200px) {
  .places-grid {
    grid-template-columns: repeat(4, 1fr); /* Large devices */
  }
}

.place-card {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid #e6e6e6;
  box-shadow: 0 0 8px #0000001a,0 4px 2px #0000000d;
  
}

.place-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.place-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.place-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.place-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.property-count {
  color: #666;
  font-size: 14px;
}

/* property cards */

.property-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 2px solid #e6e6e6;
  box-shadow: 0 2px 6px #d4af37;
  
}

.property-card:hover {
  transform: translateY(-6px);
  border: 2px solid #d4af37; /* classic metallic gold */
  background-color: #fffdf5;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.3);
}

.property-card:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
  z-index: 1;
}


.feature-properties {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.choose-us h2, .feature-properties h2{color:black !important}

.section-header h2 {
  font-size: 39px;
  color: black;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-properties p{color: black !important;} 

.section-header p {
  color: black;
  font-size: 18px;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}



.property-image {
  width: 40%;
  position: relative;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 256px !important;
  object-fit: cover;
  display: block;
}

.property-tags {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 5px;
}

.tag {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.tag-featured {
  background-color: #ff385c;
  color: white;
}

.tag-sale,
.tag-rent {
  background-color: #1f9116;
  color: white;
}

.property-content {
  padding: 20px;
  width: 60%;
  display: flex;
  flex-direction: column;justify-content: space-around;
}

.property-title {
  font-size: 18px;
  font-weight: 600;
  
  color: #333;
}

.property-location {
  display: flex;
  align-items: center;
  
  color: #666;
  font-size: 15px;
  font-weight: 600;
}

.property-location i {
  margin-right: 5px;
  color: #666;
}

.property-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  
}

.detail-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #666;
}

.detail-item i {
  margin-right: 8px;
  width: 16px;
  color: #666;
}

.property-price {
  font-size: 22px;
  font-weight: 700;
  color: #333;
 
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.action-btn:hover {
  background: #e9e9e9;
}

.action-btn.visit-btn:hover,
.action-btn.visit-btn.active {
  color: #007d6f;
}

@media (max-width: 768px) {
  .properties-grid {
    grid-template-columns: 1fr;
  }

  .property-card {
    flex-direction: column;
  }

  .property-image,
  .property-content {
    width: 100%;
  }

  .property-image {
    height: 200px;
  }
}

/* choose us  */
.choose-us {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px 0;
}

.choose-us h2 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 10px;
}

.choose-us p.subtitle {
  color: #777;
  font-size: 16px;
  margin-bottom: 50px;
}

.choose-us .features {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.choose-us .feature-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}


.choose-us .feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #d4af37; /* Gold highlight on hover */
}

.choose-us .feature-box img {
  transition: transform 0.3s ease;
}

.choose-us .feature-box:hover img {
  transform: scale(1.1);
}

.choose-us .feature-box img {
  height: 60px;
  margin-bottom: 20px !important;
  margin: auto;
}

.choose-us .feature-box h3 {
  font-size: 18px;
  font-weight: 600;
}

.choose-us .feature-box p {
  font-size: 16px;
  color: #666;
  font-weight:500;
}

@media (min-width: 768px) {
  .choose-us .features {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for medium devices */
  }
  .choose-us .feature-box {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .choose-us .features {
    grid-template-columns: repeat(5, 1fr); /* 4 columns for large devices */
  }
}

/* discover section  */
.discover-container {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
}

.discover-properties {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 80px 0;
  background: linear-gradient(180deg, #ffb14d 0%, #EDF8FA 56.05%, #FFF 100%);
}
.discover-header {
  text-align: center;
  margin-bottom: 40px;
}

.discover-header h2 {
  font-size: 38px;
  color: black;
  margin-bottom: 10px;
  font-weight: 600;
}

.discover-header p {
  color: black;
  font-size: 16px;
}

.discover-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.discover-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  height: 100%;
  flex-direction: column;
  width: 100%;
  box-shadow: 3px 3px 1px #2eae9c;
}

.discover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.discover-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 250px;
}

.discover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.discover-tags {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 5px;
}

.tag {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.tag-featured {
  background-color: #ff385c;
  color: white;
}


.discover-content {
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 294px;
  justify-content: space-around;
}

.discover-title {
  font-size: 18px;
  font-weight: 600;
  
  color: #333;
}

.discover-location {
  display: flex;
  align-items: center;
  
  color: #666;
  font-size: 14px;
}

.discover-location i {
  margin-right: 5px;
  color: #666;
}

.discover-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  
}



.detail-item i {
  margin-right: 8px;
  width: 16px;
  color: #666;
}

.discover-price {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.action-btn {
  width: 100%;
  padding: 10px 10px;
  background:#d38d33 ;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
  color: white;
  border-radius: 10px;
  font-weight: 600;
}

.action-btn:hover {
  background: #e9e9e9;
}

@media (max-width: 768px) {
  .discover-container {
    width: 95%;
  }
  .discover-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px;
  }
  .discover-image img {
    max-height: 270px;
  }
  .discover-card {
    min-width: 70%;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .discover-card:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}


.container customer {width: 100%;}



.testimonial-section {
  background: linear-gradient(180deg, #ffb14d 0%, #EDF8FA 56.05%, #FFF 100%);
}

.testimonial-header {
  text-align: center;
  padding: 60px;
}

.testimonial-header h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.testimonial-header p {
  color: #6c757d;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 80px;
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
  min-width: 300px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #ff4da6;
}

.testimonial-user h4 {
  margin: 0;
  font-size: 16px;
}

.testimonial-user small {
  color: #777;
}

@media (max-width: 768px) {
  .testimonial-wrapper {
    display: flex;
    flex-direction: column;
  }

  .testimonial-card {
    flex: 0 0 70%;
    margin: auto;
  }
}

/* partners section  */

.partners-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.partners-header h2 {
  font-size: 28px;
  font-weight: bold;
}

.partners-header p {
  color: #6c757d;
  margin-bottom: 30px;
}

.partner-slider {
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.partner-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.logo {
  min-width: 150px;
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}



/* popup css  */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 3px 3px 7px #cda549;
  text-align: center;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  font-weight: bold;
}
.popup-content h2 {
  color: #cda549;
  font-size: 22px;
  margin-bottom: 20px;
  font-family: "Jost", sans-serif;
  padding: 0;
}
.popup-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.popup-content form label {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: #333;
}
.popup-content form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Jost", sans-serif;
}
.popup-content form button {
  background-color: #cda549;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  margin-top: 15px;
  box-shadow: 3px 3px 1px #215657;
}

/* how-it-works serction */
.how-it-works {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  text-align: center;
  padding: 60px 20px;
  
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.steps-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.step:nth-child(1) {
  animation-delay: 0.1s;
}

.step:nth-child(3) {
  animation-delay: 0.3s;
}

.step:nth-child(5) {
  animation-delay: 0.5s;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(45deg);
}

.step-icon-inner {
  transform: rotate(-45deg);
  font-size: 1.8rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step:nth-child(1) .step-icon {
  background: rgba(15, 202, 152, 0.1);
  border: 1px solid rgba(15, 202, 152, 0.3);
  color: #29cf8d !important;
}

.step:nth-child(2) .step-icon {
  background: rgba(255, 143, 0, 0.1);
  border: 1px solid rgba(255, 143, 0, 0.3);
  color: #ff8f00 !important;
}

.step:nth-child(3) .step-icon {
  color: #0d6efd !important;
  background: rgb(13 110 253 / 10%);
  border: 1px solid rgb(13 110 253 / 20%);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.step-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.5rem;
  margin: 0 1rem;
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    gap: 3rem;
  }

  .arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .step {
    min-width: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .step-icon {
    width: 70px;
    height: 70px;
  }

  .step-icon-inner {
    font-size: 1.5rem;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* properties-section */

.properties-section {
  max-width: 100%;
   padding: 60px 20px;
   background: linear-gradient(180deg, #ffb14d 0%, #EDF8FA 56.05%, #FFF 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}



.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.city-card {
  display: flex;
  align-items: center;
  background: white;
  padding: 16px 20px;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: 22%;
  min-width: 260px;
  max-width: 280px;
  position: relative;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background: #fffdf5;
  border: 1px solid #d4af37; /* subtle golden border */
}

.city-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
  flex-shrink: 0;
  border: 2px solid #d4af37;
}

.city-info {
  flex: 1;
}

.city-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.property-count {
  font-size: 0.85rem;
  color: #666;
  margin: 4px 0 0;
}


.step {
  position: relative;
}

.step:not(:last-child)::before {
  content: url(../newsite/images/arrow.png);
  position: absolute;
  background: transparent;
  left: 100%;
  top: 40px;
}

@media (max-width: 768px) {
  .step::before {
    content: none !important;
  }
}

@media (max-width: 768px) {
  .city-card {
    width: 100%;
    max-width: 90%;
    justify-content: flex-start;
  }
}



@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .cities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .city-card {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }
}



.video-testimonials-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(180deg, #ffb14d 0%, #EDF8FA 56.05%, #FFF 100%) ;
}

.video-testimonials-section .section-heading {
    font-size: 30px;
    margin-bottom: 50px;
    font-weight: bold;
    color: #272566;
    padding:0;
}

.videos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1500px;
    margin: 0 auto; 
}

.video-item {
    flex: 0 0 calc(50% - 20px); 
    max-width: 700px;
}

.video-item iframe {
    width: 100%;
    height: 315px; 
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .video-item {
        flex: 0 0 100%; 
    }

    .video-item iframe {
        height: 250px; 
    }
}

.hello-next p{margin-bottom: 25px !important;font-size: 19px !important;}




.customers-head {
  margin-bottom: 40px;
  padding-top: 0;
  font-size: 33px;
  color: #272566;
  text-align: center; }

.slider-container {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1650px;
  margin: auto;
    margin-bottom: auto;
  margin-bottom: 50px;
}

.arrow {
  background-color: black;
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 24px;
  z-index: 1;
  width: auto;border-radius: 5px;box-shadow: 3px 3px 1px #215657;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  margin: 1%;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1%;
}

.slide {
  flex: 0 0 calc(25% - 12px);
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .slide {
    flex: 0 0 100%;
  }
}

.container-new{
position: relative;
  width: 95%;
  margin: 0 auto;
  padding: 0 05px;
  z-index: 1;}


/* Footer Section */
#global-footer {
    background-color: #1C1B3B; /* Dark background color */
    color: #FFFFFF; /* White text */
    padding: 40px 20px;
}

.footer-social-page {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Makes the layout responsive */
    gap: 20px;
}

.footer-box-one {
    flex: 1;
    width: 30%; /* Ensures items stack on smaller screens */
    margin-right: 20px;
}

.location-image-map{width:30%}



.footer-box-one p2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
    color: #99cbc5;
}

.footer-box-one p {
    font-size: 16px;
    line-height: 1.8;
    margin: 10px 0;
    text-align: justify;
    color: #DADADA;
}

.footer-box-page-info a {
    text-decoration: none;
    color: #99cbc5; /* Highlighted color for links */
    transition: color 0.3s ease-in-out;
}

.footer-box-page-info a:hover {
    color: #F58228; /* Hover effect for links */
}

.location-image-map .footer-map iframe {
    border: none;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Disclaimer and Footer Bottom Section */
.footer-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-container .disclaimer {
    font-size: 14px;
    margin-bottom: 10px;
    color: #CCCCCC;
}

.footer-container .footer-right {
    font-size: 14px;
    line-height: 1.5;
    color: #99cbc5;
}

.footer-container .footer-right a {
    text-decoration: none;
    color: #99cbc5;
    font-weight: bold;
}

.footer-container .footer-right a:hover {
    color: #F58228; /* Highlight color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-social-page {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-box-one,
    .location-image-map {
        margin: 0 0 20px 0;
        align-self: center;
    }

    .footer-container {
        text-align: center; margin-bottom: 25px;
        
    }

    .footer-container .disclaimer {
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 1px) and (max-width: 599px) {
  .footer-box-one {
    width: 100% !important;
  }
}
@media screen and (min-width: 1px) and (max-width: 599px) {
  .location-image-map {
    width: 100% !important;
  }
}


/* Site Wrapper */
.site-wrapper {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .site-wrapper {
        max-width: 95%;
        margin-top: 35px;
        
    }
}

#overview-section {
  padding: 0px 0px 80px 0px;
  border-radius: 15px;
}

.section-headings {
  font-size: 40px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  color: #272566;
  background: linear-gradient(90deg, #272566, #ffcc00, #272566);
  -webkit-background-clip: text;
  color: transparent;
  animation: colorShift 4s ease-in-out infinite;
  background-size: 200% 200%; /* Allows the gradient to move */
}


.overview-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  max-width: 1280px;
  margin: 0 auto;
  height: 557px;
}
.overview-image {
  height: 557px;
  flex: 1;
  text-align: center;
}
.overview-image img {
  height: 100%;
  
  border-radius: 15px;
  border: 3px solid #cda549;
  box-shadow: 3px 3px 7px #cda549;
  width: 100%;
}

/* Default styles for .overview-form */
.overview-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px 40px;
  border-radius: 10px;
  height: 557px;
  background: #cda549;
  width: 40%;
  margin-left: 5%;
  margin-right: 5%;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

/* Media query for screen sizes between 900px and 1400px */
@media (min-width: 900px) and (max-width: 1400px) {
  .overview-image {
    height: 450px; /* Adjusting height */
  }

  .overview-form {
    height: 450px; /* Adjusting height */
    padding: 20px 40px; /* Adjusting padding */
  }
  
  #contact-form input, #contact-form textarea {padding: 8px}
  
  h2 {font-size: 35px;}
}

/* Existing media query for mobile devices (max-width: 768px) */
@media (max-width: 850px) {
  .overview-form {
    width: 100% !important;
    height: auto !important;
    padding: 20px 20px !important;
    margin-bottom: 50px;
    margin-left: 0% !important;
    margin-right: 0% !important;
    margin-top: 35px;
  }

  .overview-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  #live-suggestions{width:100% !important;font-size:13px !important}
  
}

/* Additional for column-reverse on small screens */
@media (max-width: 768px) {
  .overview-content {
    flex-direction: column-reverse;
    height: auto;
    align-items: stretch;
  }
}
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

#contact-form label {
    font-size: 0.9rem;
    font-weight: bold;
}

#contact-form input,#contact-form textarea {
  width: 100%;
  padding: 12px;
  
  border-radius: 5px;
  border: 1px solid #cda549;
  box-shadow: 3px 3px 7px rgba(224, 177, 27, 0.4);
  font-size: 1rem;
  background-color: #fff;
  font-family: 'Jost', sans-serif;
}

#contact-form textarea {
    resize: none;
    flex-grow: 1;
}

#contact-form button {
  padding: 10px;
  background-color: #f8dd4b;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 18px;
  box-shadow: 3px 3px 7px #cda549;
  font-family: 'Jost', sans-serif;
  width:100%;
}

#contact-form button:hover {
    background-color: #2a71be;
    color: white;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    


    .overview-image img {
        max-width: 100%;
    }
}

@media screen and (min-width: 1px) and (max-width: 599px) {
  .section-headings {
    font-size: 22px !important;
  }
  
  
  
}







.search-box input {
  padding: 14px 16px;
  width: 400px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-align: center;
  z-index: 2;
  position: relative;
}

.search-btn {
  background: linear-gradient(to right, #ff5a5f, #ff9966);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  width: 150px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#live-suggestions {
  position: absolute;
  top: 58px; /* Just below the input */
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  background-color: white;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#live-suggestions div {
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

#live-suggestions div:hover {
  background-color: #f8f8f8;
}






    /* Property Results Section */
.property-results {
    margin-top: 50px;
}

.property-results h2 {
    text-align: center;
    font-size: 2rem;
}

.property-grid {
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 0px));
    gap: 20px;                           
    margin: 2%;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.property-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s;
    border: 1px solid #cda549;
    
    width: 100%;
    margin: 0 auto;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-card img {
object-fit: cover;
  height: 200px;
  width: 100%;
}

.property-card .info {
    padding: 15px;
    color:black;
}

.property-card .info h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.property-card .info p {
    margin: 5px 0;
}

/* Load More Button */
.load-more {
    display: none;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #cda549;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .property-grid {
        grid-template-columns: 1fr;
    margin: 5% 0 0 0;
    }

    .property-card {
        max-width: 100%;
    }
    
    .property-card img {
  height: 200px;
    width: 100%;
    max-width: 100%;
    object-fit: unset;
}
    
}

.property-card a
{width:100%;
    text-decoration: none;
}

.call-button:after {
  animation: moveBorder 3s infinite -1.5s linear;
}

.call-button:before, .call-button:after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px solid #cda549;
  transition: all 0.5s;
  animation: moveBorder 3s infinite linear;
  border-radius: 10px;
}

/* Animation for moving the border */
@keyframes moveBorder {
  0%, 100% {
    clip-path: inset(0 0 98% 0); /* Starting at the top */
  }
  25% {
    clip-path: inset(0 98% 0 0); /* Moving to the right */
  }
  50% {
    clip-path: inset(98% 0 0 0); /* Moving to the bottom */
  }
  75% {
    clip-path: inset(0 0 0 98%); /* Moving to the left */
  }
}

#download-brochure-container {
    display: inline-block;
    margin-left: 20px; /* Adjust as needed */
}


#download-brochure-btn-new:hover{
   transition: transform 0.10s ease; 
    transform: scale(1.05);
}

#download-brochure-btn:hover {
    background-color: #b78b34; /* Darken on hover */
}



/* Rotating border button with animation */
#download-brochure-btn-new,#download-brochure-btn {
  position: relative;
  display: inline-block;
  padding: 10px 10px;
  font-size: 13px;
  font-weight: 600;
  color: black;
  text-decoration: none;
  background-color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: filter 0.3s ease;
  width:100%;
  font-family: 'Jost', sans-serif;
  border:none;
}

#download-brochure-btn-new:hover,#download-brochure-btn:hover {
  filter: contrast(1.1);
}

#download-brochure-btn-new:active,#download-brochure-btn:active {
  filter: contrast(0.9);
}

#download-brochure-btn-new::before,#download-brochure-btn::before,
#download-brochure-btn-new::after,#download-brochure-btn::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px solid #cda549; /* Dark blue border */
  transition: all 0.5s;
  animation: moveBorder 3s infinite linear;
  border-radius: 10px;
}

#download-brochure-btn-new::after,#download-brochure-btn::after {
  animation: moveBorder 3s infinite -1.5s linear; /* Delay for smoother effect */
}

/* Animation for moving the border */
@keyframes moveBorder {
  0%, 100% {
    clip-path: inset(0 0 98% 0); /* Starting at the top */
  }
  25% {
    clip-path: inset(0 98% 0 0); /* Moving to the right */
  }
  50% {
    clip-path: inset(98% 0 0 0); /* Moving to the bottom */
  }
  75% {
    clip-path: inset(0 0 0 98%); /* Moving to the left */
  }
}



  /* Sticky Buttons Container */
.sticky-buttons-custom {
    position: fixed;
    bottom: 20px; /* Adjust spacing from the bottom */
    right: 20px; /* Adjust spacing from the right */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Spacing between buttons */
    z-index: 1000; /* Ensure it is above other elements */
}

/* Individual Buttons */
.button-custom {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-left: 7px;
}

/* Call Button */
.call-button {
    background-color: #5fb133; /* Bright orange */
}

/* WhatsApp Button */
.whatsapp-button {
    background-color: #25D366; /* WhatsApp green */
}

/* Email Button */
.email-button {
    background-color: #3B3B98; /* Dark blue */
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 10px; /* Space between icon and text */
}

/* Email Icon */
.email-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

/* Hover Effects */
.email-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}




/* Main Button Container */
.circular-call-button {
    position: relative;
    width: 60px; /* Set button size */
    height: 60px;
    border-radius: 50%; /* Circular button */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}

/* Phone Icon */
.circular-call-icon {
    width: 25px; /* Icon size */
    height: 25px;
}

/* Revolving Border */
.circular-call-button::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 3px solid transparent;
  border-top-width: 3px;
  border-top-style: solid;
  border-top-color: transparent;
  border-right-width: 3px;
  border-right-style: solid;
  border-right-color: transparent;
  border-top: 3px solid #cda549;
  border-right: 3px solid #cda549;
  border-radius: 50%;
  animation: revolveBorderCircular 1.5s linear infinite;
  pointer-events: none; /* This allows click to pass through */
}

.circular-call-button a {
  position: relative;
  z-index: 1;
  display: inline-block;
}

/* Border Animation */
@keyframes revolveBorderCircular {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hover Effect */
.circular-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

/* Sticky buttons for mobile at the bottom */
.sticky-bottom {
    display: none !important;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #cda549;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    z-index: 1005;
}

/* Mobile buttons */
.sticky-bottom .button {
    flex: 1;
    margin: 0 10px;
    padding: 5px;
    text-align: center;
    color: black;
    background-color: #cda549;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    align-content: center;
}

.sticky-bottom .button:hover {
    background-color: white;
}

/* Show sticky buttons on mobile */
@media (max-width: 768px) {
    .sticky-bottom {
        display: flex !important;
    }
}

@media (max-width: 768px) {
  .sticky-buttons-custom,.sticky-left-button {
    display: none !important;
  }
}



.linked-cards{
  text-decoration: none;
}



.our-teams{
  display: flex;
  justify-content: center;
  align-items: center;
 

}
.our-teams picture{
  height: 70vh;
  width: 80%;
  margin: auto;
   margin: 80px 0;
}
.our-teams picture img{
  width: 100%;
  height: 100%;
}


#ccna-section {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
  box-sizing: border-box;
}

.ccna-btn {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  background-color: #0078ff;
  color: white;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.ccna-btn:hover {
  background-color: #005fcc;
  color: #fff;
}

.ccna-btn {
  flex: 0 0 calc(20% - 10px);
  margin-bottom: 10px;
}

.all-para{max-width: 85%;
  margin: auto;
  text-align: center;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 25px;
}

.all-para strong{color: #84600f;font-weight: bold;}

.all-para p{color: black;font-size: 20px}

#ccna-section h2,.ccna-heading h3, .ccna-heading h6, .video-testimonials-section h5, .customers-head, .faq-head h5 {margin-bottom: 40px;padding-top: 0;font-size: 33px;color: #272566;text-align: center;}

.ccna-heading p {
  margin-bottom: 30px;color: black;
  font-size: 20px;
}

.ccna-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  gap: 10px;
}

.ccna-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}


@media (max-width: 768px) {
    #download-brochure-li {
        height: 50px; 
        display: flex; 
        align-items: center; 
        align-self: center;
    }

    .popup-content {
        width: 90%;
    }

    #download-brochure-btn {
        font-size: 12px;
        padding: 8px 12px;
    }

    #download-brochure-container{
        margin-right:0px;
        margin-left: 20px;
    }

    .features-list {

    grid-template-columns: none;
}

.all-para{max-width: 95% !important;}

.juhi-image-gallery h3,.project-features h4, .responsive-gallery h4, #configurations-section h4, .amenities-container h4, #project-highlights h4, #project-highlights h5, #location-advantages h5, .site-wrappe h5, .hello-next h5 {margin-bottom: 20px;padding-top: 0;font-size: 23px;color: #272566;text-align: center;}

}

@media (max-width: 768px) {
  .ccna-container {
    flex-direction: column;
    align-items: center;
  }
  .ccna-btn {
    flex: 0 0 calc(100% - 40px);
    max-width: 300px;
    margin: 10px 0;
  }
  .projects-section{padding: 0px !important}
  .project-details{height: 340px !important}
  .image-container{height: 365px !important}

  .sticky-buttons-custom{display:none !important}

}

.ccna-btn-1 {
  flex: 0 0 calc(50% - 10px);
  margin-top: 20px;
}
.ccna-btn-1 {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  background-color: #0078ff;
  color: white;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease-in-out;
}


























