@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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


h1 {font-size: 35px;
  text-align: center;
  font-weight: 700;
  }
  
h2 {font-size: 30px;
  text-align: center;
  font-weight: 700;padding-top: 35px;
  }  
  
  

body {
    font-family: 'Jost', sans-serif;
    font-weight: 400; /* Default weight */

}




#download-brochure-container {
    display: inline-block;
    margin-left: 20px; /* Adjust as needed */
}

#download-brochure-btn {
    background-color: #cda549; /* Style it similarly to the other buttons */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

#download-brochure-btn:hover {
    background-color: #b78b34; /* Darken on hover */
}



/* Rotating border button with animation */
#download-brochure-btn {
  position: relative;
  display: inline-block;
  padding: 10px 10px;
  font-size: 14px;
  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;
}

#download-brochure-btn:hover {
  filter: contrast(1.1);
}

#download-brochure-btn:active {
  filter: contrast(0.9);
}

#download-brochure-btn::before,
#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::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 */
  }
}



.popup-overlay {
    display: none; /* Ensures the popup is hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    position: relative;
    box-shadow: 3px 3px 7px #cda549;
    text-align: center;
}

.popup-content h2 {
    color: #cda549;
    font-size: 24px;
    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;
}

.popup-content form button:hover {
    background-color: #b78b34;
}

.close-popup {
    position: absolute;
  top: 1px;
  right: 20px;
  cursor: pointer;
  font-size: 32px;
  color: #333;
  font-weight: bold;
}




/* Media Query for Mobile (768px and below) */
@media (max-width: 768px) {
    #download-brochure-li {
        height: 50px; /* Set height to 50px for mobile */
        display: flex; /* Ensures proper alignment if needed */
        align-items: center; /* Vertically center the content inside */
        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;
}
}









/* Full-screen loading spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #cda549;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

















.heading {
  display:block;   
  color: white;
  text-align: center;
  padding: 5px 0;
  font-size: 13px;
  line-height: 1;
margin-bottom: 20px;
}

main {
    padding: 0;
}

.filter-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    background: url(/images/try-bg.webp) center center no-repeat;
    background-size: cover;
    flex-direction: column;
}

.filters-wrapper {
    display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  max-width: 1440px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  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;
}

.filter-group {
  text-align: center;
  padding: 10px;
  background: rgba(240, 240, 240, 0.9);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 13%;
}

.filter-group select {
    width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  background: #fff;
}

button {
    background-color: #cda549;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  width: 13%;
  box-shadow: 3px 3px 1px #215657;
}

button:hover {
    background-color: #45a049;
}

.filter-group label {
  display: block;
  margin-bottom: 3px;
  font-weight: bold;
  font-size: 17px;
  color: #333;
}

.hello{background-color: #edf8fA;
  margin-top: 50px;}

/* Mobile Styles */
@media (max-width: 768px) {
    .filters-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        background:linear-gradient(-225deg, var(--primary-08) 48%, var(--secondary-08) 100%) !important;
        width: 100%;
    margin: auto;
    }
    
    .job-guarentee-content-one{font-size: 16px;}
    
    h1{font-size: 25px;}
    h2{font-size: 22px;}
    
    .heading{margin-top: 35px;}
    
    .call-button{display: none !important}
    .whatsapp-button {display: none !important}

.filter-group {
    width: 90%;
    margin-bottom: 15px !important;
    height: auto;
    color: white;
    font-weight: bolder;
    margin: auto;
    margin-bottom: auto;
    padding: 5px 0px 0px 0px;
  }

    .filter-group select {
        width: 100%;
    font-size: 14px;
    padding: 5px;
    }

    button {
        align-self: center;
        width:90%;
    }
    
    .filter-group label{margin-bottom: 3px;font-size: 16px;}
    
    .filter-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  box-shadow: 3px 3px 1px #215657;
  position: relative;
    background-size: auto;
  background-size: cover;
}


}


/* 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, 1fr));
  gap: 20px;
  margin: 2%; /* Centers the grid horizontally */
  padding: 0;
  justify-content: center; /* Aligns items in the center horizontally */
  align-items: center; /* Aligns items in the center vertically */
}

.property-card {
    background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s;
  border: 1px solid #cda549;
  box-shadow: 0 0 2px 1.5px #5959c8;
  max-width: 352px; /* Ensures the card doesn't stretch */
  margin: 0 auto; /* Ensures the card is centered within its grid item */
}



.property-card:hover {
    transform: translateY(-5px);
}

.property-card img {
    max-width: 352px;
  object-fit: cover;
  height: 400px;
}

.property-card .info {
    padding: 15px;
}

.property-card .info h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.property-card .info p {
    margin: 5px 0;
}

.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;
}




.simple-header {
    background-color: black;
    color: white;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky; 
    top: 0; /* Sticks to the top of the viewport */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensures it stays on top of other elements */
    width: 100%; /* Makes sure it spans the full width */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1250px;
}

/* Logo */
.logo img {
    height: 50px;
    cursor: pointer;
}

/* Call Button */
.call-button {
    font-size: 16px;
  background-color: #F58228;
  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;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
  justify-content: space-evenly;
  font-size: 18px;
  width: 50%;
}

.nav-menu ul {
    list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #F58228;
}

/* 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;
    }
}


.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #cda549; 
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    font-size: 14px;
    margin: 10px 0;
}

.whatsapp-button a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.whatsapp-icon {
    margin-right: 8px;
    font-size: 18px;
}

.whatsapp-button:hover {
    background-color: #1DA851; /* Darker WhatsApp green on hover */
}

/* 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;
    }
}


.job-guarentee-info {
  width: 100%;
  padding: 70px 0px 10px 0px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.job-guarentee-box-one {
  width: 49%;
  padding: 10px 10px 10px 10px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: white;
  margin-bottom: 2%;
  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 -2px 0px inset;
  position: relative;
}

@media screen and (min-width: 1920px) {
  .job-guarentee-item-one {
    width: fit-content;
  }
}
.job-guarentee-item-one {
  width: 45%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.job-guarentee-item-one img {
  max-width: 100%;
  border-radius: 5px;
  
}
.job-guarentee-section-one {
  width: 53%;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  padding-left: 15px;
}
.job-guarentee-box-one.popularkia .job-guarentee-item-two {
  width: 90%;
}

@media screen and (min-width: 1750px) and (max-width: 4000px) {
  .job-guarentee-content {
    font-size: 18px;
    padding-top: 20px;
  }
}
.job-guarentee-content {
  font-size: 18px;
  color: #373737;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 10px;
}
.job-guarentee-duration {
  width: 100%;
  padding: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
.duration-box-one {
  padding: 5px 0px 5px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 1750px) and (max-width: 4000px) {
  .job-guarentee-content-one {
    font-size: 18px;
  }
}
.job-guarentee-content-one {
  font-size: 18px;
  color: #373737;
  margin-left: 0px;
}
.duration-box-three {
  padding: 5px 0px 5px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.job-guarentee-placement {
  width: 100%;
  padding: 5px 0px 5px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.placement-item-one {
  width: 60%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.placement-item-one p {
  padding-top: 0px;
}
.place-content {
  font-weight: 800;
  color: #007d6f;
  margin-left: 0px;
}
@media screen and (min-width: 1200px) and (max-width: 4000px) {
  .cta {
    width: 36%;
    height: 30px;
  }
}
.cta {
  display: flex;
  padding: 5px;
  text-decoration: none;
  color: white;
  background: #cda549;
  border-radius: 5px;
  transition: 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27%;
  height: 36px;
  z-index: 101;
  margin: 0 2px;
  
}
.cta2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
}
.cta span {
  font-size: 15px;
  
  font-weight: bold;
}
.inner-box::before {
  background: #cda549;
}
.inner-box::before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  top: -11px;
  right: 40px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}
.popular-tag {
  background: #cda549;
}
.popular-tag {
  position: absolute;
  top: 24px;
  right: -25px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 800;
  color: black;
  padding: 5.5px 12px;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-90deg);
  border-radius: 0px 0px 7px 0;
  box-shadow: 3px 3px 1px #106264;
}
.popular-tag::before {
  background: #cda549;
}
.popular-tag::before {
  position: absolute;
  content: '';
  width: 14px;
  height: 16px;
  left: -13px;
  top: 0px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 0%);
}
.popular-tag::after {
  background: #cda549;
}
.popular-tag::after {
  position: absolute;
  content: '';
  width: 14px;
  height: 16px;
  left: -13px;
  bottom: 0px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}
.container {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 1px) and (max-width: 599px) {
  .job-guarentee-box-one {
    flex: 0 0 90%;
    width: 100%;
    flex-direction: column;
    margin-right: 20px;
    margin-left: 2px;
    z-index: 1002;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1px) and (max-width: 599px) {
  .job-guarentee-item-one {
    width: 100%;
  }
  .section-headings{font-size: 22px !important;}
  
  .footer-box-one{width:100% !important}
  .location-image-map{width:100% !important}
  
}
@media screen and (min-width: 326px) and (max-width: 599px) {
  .job-guarentee-item-one {
    height: 227px;
  }
}
@media screen and (min-width: 1px) and (max-width: 599px) {
  .job-guarentee-section-one {
    width: 100%;
    padding-left: 5px;
    height: 150px;
  }
  
  .hello-next p {text-align:left}
  
}
@media screen and (min-width: 1px) and (max-width: 599px) {
  .job-guarentee-box-one.popularkia .job-guarentee-item-two {
    width: 100% !important;
  }
}
@media screen and (min-width: 1px) and (max-width: 599px) {
  .content {
    padding-top: 10px !important;
    font-size: 20px !important;
  }
}
.content {
  font-size: 22px;
  font-weight: 600;
}
@media screen and (min-width: 1px) and (max-width: 599px) {
  .placement-item-one {
    width: 55%;
  }
}
@media screen and (min-width: 1px) and (max-width: 599px) {
  .cta {
    width: 37%;
    height: 30px;
  }
}
@media screen and (min-width: 1px) and (max-width: 599px) {
  .job-guarentee-info {
    padding-top: 40px;
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
}

.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 */
  }
}

.hello-next {
    background-color: #edf8fA; /* Light grey background */
    padding: 50px 0px;
    text-align: left; /* Ensures text alignment for content */
    
    line-height: 1.8; /* Improves readability */
}

.hello-next h3 {
    font-size: 21px;
    font-weight: bold;
    color: #272566; /* Matches theme color */
    margin-bottom: 20px;
    text-align: center; /* Center-align heading */
}

.hello-next p {
    font-size: 17px;
  color: black;
  margin-bottom: 15px;
  text-align: center;
  line-height: 2;
}

.hello-next .container {
    max-width: 1250px;
    margin: 0 auto; /* Centers the content */
 
}
/* 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;
    }
}
.site-wrapper {
  max-width: 90%;
  margin: 0 auto;
    margin-top: 0px;
  margin-top: 50px;
}

#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%;
  object-fit: cover;
  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;
  }
}

/* Additional for column-reverse on small screens */
@media (max-width: 768px) {
  .overview-content {
    flex-direction: column-reverse;
    height: auto;
  }
}
#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%;
    }
}

/* 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;
        
    }
}



#contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

#contact-form label {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

#contact-form textarea {
    resize: none;
    flex-grow: 1;
}

#contact-form button:hover {
    background-color: #0056b3;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .overview-content {
        flex-direction: column;
        align-items: stretch;
        
    }

    .overview-image img {
        max-width: 100%;
    }
}


/* Sticky buttons for PC */
.sticky-buttons {
    position: fixed;
    bottom: 120px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Individual button styling */
.sticky-buttons .button {
    width: 55px;
  height: 42px;
  background-color: #272566;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.sticky-buttons .button:hover {
    background-color: #1e1e4f;
}

/* Sticky buttons hidden on mobile */
@media (max-width: 768px) {
    .sticky-buttons {
        display: none;
    }
}


/* Section Styling */
#ccna-section {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
  box-sizing: border-box;
}

/* Heading Section */
.ccna-heading h6 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.ccna-heading p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* Container for Buttons */
.ccna-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* Individual Buttons */
.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;
}

/* Adjust Button Width */
.ccna-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  gap: 10px;
}

.ccna-btn {
  flex: 0 0 calc(20% - 10px); /* For 5 buttons in one line */
  max-width: 250px;
}

/* Mobile Responsiveness */
@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}
  
}



.projects-section {
  max-width: 1400px;
  margin: auto;
  padding: 20px;
  color: #333;
  padding-bottom: 70px;
}
.projects-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}
.show-more {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 5px 10px;
  margin-bottom: 20px;
  cursor: pointer;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  overflow-x: visible;
}
@media (max-width: 768px) {
  .projects-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 30px;
  }
  .project-card {
    flex: 0 0 calc(100% - 40px);
    scroll-snap-align: start;
    margin-right: 10px;
  }
  .projects-grid::-webkit-scrollbar {
    height: 8px;
  }
  .projects-grid::-webkit-scrollbar-thumb {
    background: #cda549;
    border-radius: 4px;
  }
  .projects-grid::-webkit-scrollbar-track {
    background: #f5f5f5;
  }
}
.project-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
  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 -2px 0px inset;
}
.project-card:hover {
  transform: translateY(-5px);
}
.image-container {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.image-container img {
  width: 100%;
  height: 100%;
  display: block;
}
.rera-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  color: black;
  padding: 5px 10px;
  font-size: 13px;
  border-radius: 4px;
  background: aliceblue;
  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 -2px 0px inset;
  font-weight: 600;
}
.project-details {
  padding: 15px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-details h3 {
  font-size: 20px;
  margin: 0 0 5px;
  color: #333;
}
.project-details p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
  font-weight: 500;
}
.project-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.project-meta div {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  font-weight: 500;
}
.project-meta div strong {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  color: black;
}
.project-price {
  font-size: 18px;
  color: black;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.project-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #333;
}
.icon-btn:hover {
  color: #007bff;
}
.project-actions label {
  font-size: 14px;
  color: #555;
  cursor: pointer;
}
.project-actions input[type="checkbox"] {
  margin-right: 5px;
}
.ribbon {
  position: absolute;
  top: 21px;
  left: -45px;
  background: #cda549;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 40px;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(-45deg);
  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 -2px 0px inset;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-link:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 8px;
}




	    /* 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: #E66A44; /* 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: 3px solid #cda549; /* Gold revolving border */
    border-right: 3px solid #cda549;
    border-radius: 50%;
    animation: revolveBorderCircular 1.5s linear infinite;
}

/* 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);
}











#our-services h2 {margin-top: 55px;
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #272566;
  padding-top: 0;}

/* Service Cards Wrapper */
.services-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px;
  position: relative;
  max-width: 1600px;
  margin: auto;margin-top: 35px;
  margin-bottom: 65px;
}

/* Individual Cards */
.service-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 0 0 23%; /* For Desktop */
  text-align: center;
  scroll-snap-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #272566;
  font-weight: bold;
}

.service-card p {
  font-size: 16px;
  color: black;
}

/* Fix for Divider/Animation */
.services-wrapper:before,
.services-wrapper:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #cda549;
  top: 50%; /* Adjust this to align properly */
  left: 0;
  z-index: -1; /* Send it behind the cards */
}

.service-card:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #cda549;
  top: 50%; /* Adjust to match */
  left: -20px;
  z-index: -1; /* Send it behind the cards */
}

.service-card:first-child:before {
  display: none;
}

/* Mobile Styling */
@media (max-width: 768px) {
  .services-wrapper {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .service-card {
    flex: 0 0 90%; /* Show 1 full card and a portion of the next */
    margin-right: 10px;
  }
}

.juhi-image-gallery {
    text-align: center;
    padding: 20px;
}

.juhi-gallery-wrapper {
    overflow: hidden;
    width: 90%;
    margin: auto;
}

.juhi-gallery {
    display: flex;
    transition: transform 0.5s ease-in-out;
    justify-content: space-around;
    margin: auto;
}

.juhi-gallery-img {
    width: 100%;
    max-width: 400px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease;
    height: 600px;
}

.juhi-gallery-img:hover {
    transform: scale(1.05);
}

/* Image Modal */
.juhi-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.juhi-modal-content {
    max-width: 80%;
    max-height: 80%;
}

.juhi-close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .juhi-gallery {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        display: flex;
        white-space: nowrap;
        gap: 5px;
    }

    .juhi-gallery-img {
        flex: 0 0 90%;
        max-width: none;
        scroll-snap-align: start;
    }

    .juhi-gallery-wrapper::-webkit-scrollbar {
        display: none;
    }
}



