     /* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


#text-font{
      font-family: 'Montserrat', 'sans-serif';
       font-weight: 700; 
}
#para1{
     margin-bottom: 15px;
    color:white;

}
/* #para2 {
     border-radius: 10px;
    height: 400px;
    padding: 15px;
    padding-top: 30px;
    background-image: url("/image/image\ \(2\).png" );
        text-align: center;
} */
    
:root {
    --primary-color: #006D5B;
    --secondary-color: #F5A623;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
    color: var(--light-text);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    /* max-width: 100%; */
    height: 300px;
    display: block;
}
.search-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* Makes it responsive */
  gap: 15px;
  /* margin-bottom: 30px; */
}

.search-toggle {
  display: flex;
  gap: 10px;
}

.search-toggle button {
  background: #00715D;
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.search-toggle button:not(.active) {
  background: #ccc;
  color: #333;
}

.search-bar {
  display: flex;
  flex: 1;
  max-width: 600px;
  gap: 10px;
}

.search-bar input {
  flex: 1;
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid #ccc;
}

.search-bar button {
  background-color: #004A3C;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .search-container {
    flex-direction: column;
    align-items: stretch;
  }

  .search-bar {
    width: 100%;
  }
}

 .search-section {
    padding: 60px 0;
} 

.btn {
   
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    /* transition: var(--transition); */
}

.btn-primary {
    background-color:goldenrod;
    color: var(--white);
    /* border: 2px solid var(--primary-color); */
}

.btn-primary:hover {
    /* background-color: #006d5b; */
    color:white;
}

.btn-secondary {
    background-color:goldenrod;
    color: var(--white);
    /* border: 2px solid var(--secondary-color); */
}

.btn-secondary:hover {
    /* background-color: #006d5b; */
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.center-button {
    text-align: center;
    margin-top: 40px;
}

.highlight-gold {
    color: var(--secondary-color);
}
.highlight-green{
    color: var(--primary-color);
}

.highlight-black {
    color:#333;
}



/* Header Styles */
/* header {
    background-color: var(--white);
     padding: 15px 0; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a.active {
    color: var(--primary-color);
}

.contact-btn .btn {
    padding: 8px 20px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
} */

/* Hero Section */
/* .hero {
    padding: 80px 0;
     background-color: var(--light-bg); 
} */


.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}


.hero-content {
    flex: 1;
}

.hero-content h1 {
 
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}


.hero-buttons {
    display: flex;
    gap: 15px;
}
#image1{
    height: 100%;
}
/* #image2{
    width: 350px;
} */
/* #image3{
    width: 350px;
} */
#image4{
    height: 100%;
}

.hero-images {
    position: relative;
    flex: 1;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    border-radius: 50% 0% / 50% 0% ;
    overflow: hidden;
    height: 500px;
}
.image-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-rows: repeat(2, 1fr); */
    gap: 10px;
    /* border-radius: 50% 0% / 50% 0%  ; */
    overflow: hidden;
     /* height: 500px;  */
}

.image-item {
    overflow: hidden;
    
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-item:hover img {
    transform: scale(1.1);
}

.image-item.large {
    grid-row: span 2;
}

/* Properties Highlight Section */
.properties-highlight {
    color: #006d5b; 
    text-align: center;
    padding: 60px 0;
}

.properties-highlight h2 {
     color: #006d5b; 
    font-size: 32px;
    margin-bottom: 15px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 30px;
}

.logo-item img {
    height: 60px;
    opacity: 0.8;
    transition: var(--transition);
}

.logo-item:hover img {
    opacity: 1;
}

/* Find Home Section */
/* .find-home {
    background-color: var(--light-bg);
} */

.find-home .container {
    display: flex;
    /* align-items: center; */
    gap: 40px;
}

.find-home-content {
    flex: 1;
}

.find-home-content h2 {
    font-size: 45px;
    margin-bottom: 20px;
}

.find-home-image {
    flex: 1;
}

.find-home-image img {
    /* height: 100%; */
    inline-size: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.property-grid1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px; /* Reduced gap for better spacing */
    margin: 40px 0;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}
/* Property Cards in Top Picks */
.property-card1 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    aspect-ratio: 1/1;
    min-height: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 10px; /* Added margin for better spacing */
    width: calc(100% - 20px); /* Account for margin */
}

.property-card1 .property-images {
    width: 100%;
    height: 100%;
}

.property-card1 .property-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card1:hover .property-images img {
    transform: scale(1.1);
}

.property-card1 .property-info1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.property-card1:hover .property-info1 {
    transform: translateY(0);
}

.property-card1 h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: white;
}

.property-card1 p {
    margin: 5px 0 15px;
    font-size: 0.9rem;
    opacity: 0.9;
    color: #eee;
}

/* Special featured property card */
.property-image1 {
    grid-column: span 2;
    grid-row: span 2;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 520px;
}

.property-image1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-image1:hover img {
    transform: scale(1.05);
}

.property-image1 .property-info1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.property-image1 h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.property-image1 p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #eee;
}

.property-image1 .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #F5A623;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.property-image1 .btn:hover {
    background: #e6951a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .property-grid1 {
        /* grid-template-columns: repeat(3, 1fr); */
        gap: 15px;
    }
    
    .property-card1 {
        margin: 8px;
        width: calc(100% - 16px);
    }
    
    .property-image1 {
        grid-column: span 3;
        grid-row: span 1;
        min-height: 400px;
        margin: 15px;
        width: calc(100% - 30px);
    }
}

@media (max-width: 768px) {
    .property-grid1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .property-card1 {
        margin: 6px;
        width: calc(100% - 12px);
    }
    
    .property-image1 {
        grid-column: span 2;
        min-height: 350px;
        margin: 10px;
        width: calc(100% - 20px);
    }
}

@media (max-width: 576px) {
    .property-grid1 {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .property-card1 {
        margin: 8px 0;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .property-image1 {
        grid-column: span 1;
        min-height: 300px;
        width: 100%;
        margin: 10px 0;
    }
}

/* Property Grid Sections */
.property-grid {
    display: grid;
     grid-template-columns: repeat(3, 1fr);
    /* grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); */
    gap: 30px;
    margin-top: 40px;
}


.property-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    isolation: isolate;
    min-height: 400px; /* Ensure enough height for content */
    display: flex;
    flex-direction: column;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    ); */
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.property-card:hover::before {
    opacity: 0.8;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}



.property-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.property-images img {
    position: relative;
    height: 300px;
    overflow: hidden;
    width: 100%;
}


.property-image img {
    /* border-radius: 10px; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color:#006d5b;
    color:white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

  .property-info {
    padding: 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* margin: 10px; */
    border-radius: 8px;
    position: relative;
    z-index: 2;
    margin-top: auto;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
} 
.property-info1{
    text-align: center;
    padding: 15px;
} 

/* .property-info1 {
   
   
    padding: 15px;
    padding-top: 150px;
    background-image: url("/image/image\ \(5\).png" );
        text-align: center;
} */

.property-info h3 {
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 18px;
    margin-bottom: 5px;
}

.property-info p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* About Us Section */
.about-us {
    background-color: var(--light-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.about-content h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--secondary-color);
    bottom: -10px;
    left: 25%;
    border-radius: 3px;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--text-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 60px -15px 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    flex: 1;
    min-width: 200px;
    margin: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item.animated:before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    transition: all 0.5s ease;
    position: relative;
    display: inline-block;
}

.stat-item.animated h3 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 109, 91, 0.2);
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.stat-item:hover p {
    color: var(--primary-color);
}

/* Animation for stats counter */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .about-content p {
        font-size: 1.1rem;
    }
    
    .stat-item {
        min-width: 160px;
        padding: 25px 15px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 80px 0;
    }
    
    .stats {
        margin-top: 40px;
    }
    
    .stat-item {
        min-width: calc(50% - 30px);
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .about-content h2 {
        font-size: 2rem;
    }
    
    .stat-item {
        min-width: 100%;
        margin: 10px 0;
    }
}

/* Testimonials Section */
.testimonials {
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}
.testimonial-avatar>img {
      /* max-width: 100%;  */
    height: 100%; 
    display: block;

}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--white);
}

.testimonial-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.rating {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Video Gallery Section */
.video-gallery {
    text-align: center;
    padding: 80px 0;
    background-color: var(--light-bg);
}

.video-gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.video-gallery p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.video-container {
    position: relative;
    width: 100%;
     max-width: 1400px; 
    margin: 0 auto;
    padding: 0 20px;
}

.video-grid {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.video-grid::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height:100%;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    cursor: pointer;
}

.play-button:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card p {
    padding: 15px 20px;
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Navigation arrows */
.video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    opacity: 0.8;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.video-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.video-nav.prev {
    left: 10px;
}

.video-nav.next {
    right: 10px;
}

/* Responsive adjustments */
/* @media (max-width: 1200px) {
    .video-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .video-gallery {
        padding: 60px 0;
    }
    
    .video-card {
        flex: 0 0 280px;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .video-card {
        flex: 0 0 260px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-gallery h2 {
        font-size: 2rem;
    }
} */

/* Contact Form Section */
/* .contact-form {
    background-color: var(--light-bg);
} */

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-container p {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-container button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-column i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .find-home .container {
        flex-direction: column;
    }
    
    .find-home-content {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
        padding-top: 80px;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links ul li {
        margin: 15px 0;
    }
    
    .fa-bars {
        display: block;
    }
    
    .fa-times {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .image-grid {
        height: 300px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    nav{
        display: none;
    }
    .logo-item{
        display: none;
        
    }
   
    
    /* section {
         padding: 60px 0; 
        
    } */
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .image-grid {
        /* height: 100%; */
        /* grid-template-columns: 1fr; */
        grid-template-rows: repeat(2, 1fr);
        /* border-radius: 10px; */
    }
    
    .image-item.large {
        grid-row: span 1;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
   
}



    .explore{
        padding-left: 200px;
    }


        .explore-buttons
        
        {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }







    .scroll-container {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 20px 0;
}

.partner-logos {
  display: flex;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  margin: 0 20px;
}

.logo-item img {
  height: 200px;
  width: auto;
  object-fit: contain;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}