/* General Styles */


@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Frank+Ruhl+Libre:wght@300..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400');
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: "Playfair Display", serif;
    color: white;
    text-align: center;
    overflow-x: hidden;
    font-size: 24px;
}



/* Hero Section */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    background: url('./assests/homehero.jpeg') center center no-repeat;
    background-size: cover;
}

/* Dark Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}

/* Ensure all content is above the overlay */
.hero > * {
    position: relative;
    z-index: 2;
}

#header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    height: 8vh;
    font-size: 24px !important;
    background-color: white !important;

}

/* Logo */
#logo img {
    width: 150px;
    height: 130px !important;
}

/* Navigation Links */
#nav-links1 {
    flex: 1;
    text-align: center;
    color: #10acc2 !important;
}

#nav-links1 a {
    position: relative;
    color: #10acc2;
    margin: 0 15px;
    text-decoration: none;
    font-size: 24px !important;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

#nav-links1 a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #88e627; /* Change color if needed */
    transition: width 0.3s ease, left 0.3s ease;
}

#nav-links1 a:hover::after {
    width: 100%;
    left: 0;
    color: #08929e;
}

#nav-links1 a:hover {
    color: #10acc2; /* Optional: Change text color on hover */
}



/* When scrolling, apply a black background */
.scrolled {
    background: black !important;
}

/* Navigation Links */
#nav-links1 a {
    color: #10acc2;
    margin: 0 10px;
    text-decoration: none;
    font-size: 16px;
}

#call-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.flag-icon {
    width: 25px;
    height: auto;
    margin-right: 10px;
}

.call-number {
    margin-right: 10px;
    font-size: 18px;
    color: #10acc2 !important;
    text-decoration: none;
}
/* Centered Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
    padding: 0 3%;
}

/* Default state - Hide elements */
.hero-content, .banner, .hero-title, .sub-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

/* When elements come into view */
.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Banner */
.banner {
    background: #10acc2;
    padding: 10px 10px;
    font-weight: bold;
    border-radius: 5px;
}

/* Headings */
.hero-title {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 0;
    color: white !important;
}

.sub-text {
    font-size: 18px;
    letter-spacing: 5px;
    color: black !important;
}

/* Footer */
.hero-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #10acc2 !important;
    cursor: pointer;

}

.button-50 {
    appearance: button;
    background-color: #000;
    background-image: none;
    border: 1px solid #000;
    border-radius: 4px;
    box-shadow: #fff 4px 4px 0 0,#000 4px 4px 0 1px;
    box-sizing: border-box;
    color: #10acc2;
    cursor: pointer;
    display: inline-block;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    margin: 0 5px 10px 0;
    overflow: visible;
    padding: 12px 40px;
    text-align: center;
    text-transform: none;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
  }
  
  .button-50:focus {
    text-decoration: none;
  }
  
  .button-50:hover {
    text-decoration: none;
  }
  
  .button-50:active {
    box-shadow: rgba(0, 0, 0, .125) 0 3px 5px inset;
    outline: 0;
  }
  
  .button-50:not([disabled]):active {
    box-shadow: #fff 2px 2px 0 0, #000 2px 2px 0 1px;
    transform: translate(2px, 2px);
  }
  
  @media (min-width: 768px) {
    .button-50 {
      padding: 12px 50px;
    }
  }

    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
            font-size: 24px;
            color: #10acc2 !important;
            cursor: pointer;

        }
        #nav-links1 {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 60px;
            right: 0;
            background: black;
            width: 100%;
            text-align: center;
            padding: 10px 0;
        }
        .call-info{
            display: none !important;
        }
        .call-number{
            display: none;
        }
        .call-icon{
            display: none;
        }
        #nav-links1 a {
            display: block;
            padding: 10px;
            color: #10acc2;
            text-decoration: none;
        }
    /* Adjust Hero Content */
    .hero-title {
        font-size: 28px;
    }

    .search-bar {
        flex-direction: column;
        width: 90%;
        max-width: none;
    }

    .city-dropdown, .search-bar input, .search-btn {
        width: 100%;
        margin-bottom: 5px;
    }
}

/*section 2*/
.property-solutions {
    text-align: center;
    padding: 60px 20px;
    background-color:white !important;
    color: black;
}
.fas{
    color: #88e627;
   size: 100px !important;
}
#lo{
    color: #10acc2;
}
#fab{
    color: #88e627;
    size: 10;
}
h1{
    color: black !important;
    font-size: xx-large;
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.property-solutions .sub-heading {
    font-size: 20px;
    color: #08929e;
    margin-bottom: 10px;
}
#ln{
    color: #88e627;
}

.property-solutions .sub-heading span {
    font-weight: bold;
}

.solutions-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}
.solution-box {
    text-align: center;
    max-width: 200px;
    border: 2px solid #88e627;
    padding: 10px; /* Adjust padding, as 'auto' is not valid */
    box-shadow: 0 0 10px 2px #10acc2 /* Green glow effect */
}

.solution-box {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 8px;
    padding-bottom: 10px;

    text-align: center;
    max-width: 200px;
    height: 600;
    transition: transform 0.3s ease-in-out;
}

.solution-box:hover {
    transform: scale(1.1);
}

.solution-box img {
    width: 40px;
    height: auto;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 10px;
}

.solution-box h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
   
}

.solution-box p {
    font-size: 14px;
    color: #666;
    padding-left: 6px;
    padding-right: 10px;
    padding-top: 6px;
    padding-bottom: 10px;
}

.contact-btn {
    margin-top: 40px;
}

.contact-btn a {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.contact-btn a:hover {
    background-color: #fff;
    color: #000;
}
.description {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-top: 0%;
        width: 60%;
        margin: 0 auto; /* Centers horizontally */
        text-align: center; /* Centers the text */
        font-size: 18px;
        line-height: 1.6;
}

/* section 3*/


.why-choose {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.why-choose h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 10px 2px #10acc2
    
}

.feature-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.feature-card p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
}


.feature-card {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.3); /* Lighter shade on hover */
    transform: translateY(-10px); /* Moves card up */
}


/* section 4*/

h3{
    color: #10acc2 !important;
}
.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-color: white; /* Light gray background */
    padding: 50px 20px;
    text-align: center;
}

/* Each stat item */
.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
   background-color: white;/* Light gray background */
    padding: 50px 20px;
    text-align: center;
}

/* Each stat item */
.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: rgb(255, 250, 250); /* Light gray background */
    padding: 50px 20px;
    text-align: center;
}

/* Each stat item */
.stat {
    flex: 1 1 200px; /* Responsive width */
    text-align: center;
    max-width: 250px;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.stat h2 {
    font-size: 50px;
    color: #10acc2;
    font-weight: 400;
    margin-bottom: 10px;
}

.stat p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
}

/* Show animation when in view */
.stat.show {
    transform: translateX(0);
    opacity: 1;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .stats-section {
        flex-direction: column; /* Stack items vertically */
        gap: 20px;
    }
}


/*section5*/
.highlighted-projects {
    text-align: center;
    padding: 50px 20px;
    background-color: rgb(255, 255, 255);
}

.highlighted-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.highlighted-description {
    font-size: 1.2rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
    .highlighted-title {
        font-size: 2rem;
    }

    .highlighted-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .highlighted-projects {
        padding: 40px 15px;
    }

    .highlighted-title {
        font-size: 1.8rem;
    }

    .highlighted-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .highlighted-projects {
        padding: 30px 10px;
    }

    .highlighted-title {
        font-size: 1.5rem;
    }

    .highlighted-description {
        font-size: 0.9rem;
    }
}


.advantage-section {
    background-color: #000;
    background-image: url('your-pattern-image.png'); /* Replace with your pattern */
    color: #88e627;
    text-align: center;
    padding: 60px 20px;
}

.advantage-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #10acc2;
}

.advantage-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.advantage-box {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    padding: 20px;
}

.advantage-box i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #88e627;
}

.advantage-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
     color: #10acc2;
}

.advantage-box p {
    font-size: 16px;
    line-height: 1.5;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .advantage-container {
        flex-direction: column;
        align-items: center;
    }
}



/*section 6*/

.snip1533 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #9e9e9e;
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  margin: 35px 10px 10px;
  max-width: 310px;
  min-width: 250px;
  position: relative;
  text-align: center;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border-top: 5px solid #10acc2 ;
}
.snip1533:hover{
    transform: scale(1.1);
}
.snip1533 *,
.snip1533 *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.snip1533 figcaption {
  padding: 13% 10% 12%;
}

.snip1533 figcaption:before {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: #88e627;
  content: "\f10e";
  font-family: 'FontAwesome';
  font-size: 32px;
  font-style: normal;
  left: 50%;
  line-height: 60px;
  position: absolute;
  top: -30px;
  width: 60px;
}

.snip1533 h3 {
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  margin: 10px 0 5px;
}

.snip1533 h4 {
  font-weight: 400;
  margin: 0;
  opacity: 0.5;
}

.snip1533 blockquote {
  font-style: italic;
  font-weight: 300;
  margin: 0 0 20px;
}


body {
    background-color: #212121;
    text-align: center;
  }

  /*section 7*/

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}
.testimonial{
    background-color: white !important;
}
/* Styling */
.ourpartners {
    background:white !important;
    padding: 20px 0;
}

.slider {
    background: black;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
    height: 200px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1700px;
}

.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slide {
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}

.slide img:hover {
    filter: grayscale(0%);
}
/*section 8*/

/* Section Styling */

/* Glow Effect */

.version-launch {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(90deg, #000, #222); /* Subtle gradient background */
    color: white;
}

.launch-text {
    font-size: 2rem; /* Default font size */
    font-weight: bold;
    margin: 0;
    position: relative;
    display: inline-block;
}

.launch-text span {
    display: block;
    font-size: 1rem; /* Smaller size for the "Launching Soon" text */
    font-weight: normal;
    color: #10acc2; /* Accent color */
    margin-top: 10px;
}

/* Responsive Design */

/* For Tablets */
@media (max-width: 768px) {
    .launch-text {
        font-size: 2rem; /* Adjust font size */
    }

    .launch-text span {
        font-size: 1.3rem; /* Adjust span size */
    }
}

/* For Mobile Devices */
@media (max-width: 480px) {
    .launch-text {
        font-size: 1.8rem; /* Smaller size for smaller screens */
    }

    .launch-text span {
        font-size: 1.1rem; /* Smaller span size */
    }
}


/*footer*/

  /* Social Media Section */
  .footer-social {
    max-width: 2100px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #10acc2;
    color: white;
  }
  
  .footer-social .social-icons a {
    color: white;
    margin: 0 0px;
    font-size: 2-px;
    transition: 0.3s;
    padding-right: 30px;
  }
  
  .footer-social .social-icons a:hover {
    color: #88e627;
    padding-right: 10px !important;
  }
  
  /* Footer Links */
  .footer-links {
    padding: 40px 20px;
  }
  
  .footer-container {
    max-width: 1500px;
    margin: auto;
  }
  
  .footer-row {
   
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;

  }
  
  .footer-col h6 {
    font-weight: bold;
    text-transform: uppercase;
    color: #88e627;
    letter-spacing: 2px;
  }
  
  .footer-col hr {
    width: 50px;
    height: 2px;
    background-color:#10acc2;
    margin: 10px auto;
  }
  
  .footer-col p {
    margin: 5px 0;
    color: white;
  }
  
  .footer-col a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
    color: white;
  }
  
  .footer-col a:hover {
    color: #10acc2;
  }
  .footer-col i{
    color: #88e627;
  }
  
  /* Footer Copyright */
  .footer-copyright {
    background-color: rgb(37, 37, 37);
    padding: 15px;
    color: whitesmoke;
  }
  
  .footer-copyright a {
    color: wheat;
    text-decoration: none;
  }
  
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-social {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-row {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-col {
      margin-bottom: 30px;
    }
  }
  .card-section {
    padding: 20px;
    background-color: #10acc2;
    color: white;
}

.card-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #10acc2;
}

.card-section h2 {
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1300px; /* Ensures proper alignment */
    margin: 0 auto;
}

.card {
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #10acc2;
    transition: transform 0.3s ease-in-out;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.card:hover {
    transform: scale(1.05);
}

/* Responsive Styling */
@media (max-width: 1300px) {
    .card-container {
        gap: 15px;
    }
}

@media (max-width: 900px) {
    .card {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        height: auto;
    }
}
