@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    /* color: #1F2B45; */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo img {
    height: 100px;
    object-fit: contain;
    display: block;
}

/* Nav Links */
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links ul li a {
    text-decoration: none;
    color: #1F2B45;
}

.lastlink {
    display: none;
}

/* Buttons */
.nav-buttons {
    display: flex;
    gap: 10px;
}

.btn-primary,
.btn-secondary {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.98rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #1F2B45;
    color: #fff;
    border: none;
}

.btn-secondary {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    color: #1F2B45;
    border: 1px solid #1F2B45;
    transition: color 0.3s ease-in-out;
}

.btn-secondary:hover {
    color: #fff;
    z-index: 2;
}

.btn-secondary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #1F2B45;
    z-index: -1;
    border-radius: 8px;
    transition: width 0.5s ease-in-out;
}

.btn-secondary:hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    height: 10px;
    width: 40px;
    background-color: #1F2B45;
    border-radius: 2px;
    transition: all 0.4s ease;
}


.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 14px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -14px);
}




.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
    background: #f7f8fc;
}

.hero-text {
    max-width: 600px;
}

small {
    color: #1F2B45;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1F2B45;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #1F2B45;
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.search-bar input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    flex: 1;
    font-size: 16px;
}

.search-bar button {
    padding: 12px 24px;
    background: #1F2B45;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

.hero img {
    width: 500px;
    border-radius: 10px;
    object-fit: cover;
}

.section-one {
    padding: 60px;
    background: white;
}

.section-one h2 {
    color: #1F2B45;
    font-size: 32px;
    margin-bottom: 10px;
}

.section-one p {
    color: #555;
    margin-bottom: 30px;
}

.filter-buttons button {
    border: 1px solid #1F2B45;
    padding: 10px 18px;
    margin-right: 10px;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: #1F2B45;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.property-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 15px;
}

.property-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.property-card h3 {
    color: #1F2B45;
    margin: 15px 0 5px;
    font-size: 18px;
}

.property-card p {
    font-size: 14px;
    color: #666;
}

.price {
    font-weight: 700;
    margin-top: 10px;
}

.property-card button {
    background: #1F2B45;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
    cursor: pointer;
}


.section-two {
    padding: 60px;
    background: white;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.Insights-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-left {
    border: 1px solid #7C7D7F;
    height: 30px;
    width: 30px;
    border-radius: 50px;
    background-color: transparent;
    cursor: pointer;
    color: #888888;
}

.icon-left:active {
    background-color: #1F2B45;
    color: #fff;
}

.icon-right:active {
    background-color: #1F2B45;
    color: #fff;
}

.icon-right {
    border: 1px solid #7C7D7F;
    height: 30px;
    width: 30px;
    border-radius: 50px;
    background-color: transparent;
    cursor: pointer;
    color: #888888;
}


.Insights {
    font-size: 30px;
    color: #858182;
    margin-bottom: 10px;
}

.uncover {
    color: #1F2B45;
    font-size: 28px;
}

.innovation-container {
    display: flex;
    gap: 30px;
    padding: 20px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.innovation-container::-webkit-scrollbar {
    height: 0;
}

.innovation-cards {
    flex: 0 0 350px;
    /* background-color: #fff; */
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08); */
    padding: 16px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.innovation-cards:hover {
    transform: translateY(-5px);
}

.innovation-cards img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.innovation-cards span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #1F2B45;
    margin-top: 8px;
}

.things {
    margin-top: 2px;
    color: #1F2B45;
    font-weight: 700;
    font-size: 14px;
}

.innovation-details {
    display: flex;
    align-items: center;
    margin-top: 15px;
    justify-content: space-between;
}

.innovation-info {
    color: #1c263b;
    line-height: 22px;
}

.by {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.innovation-details button {
    background-color: #1F2B45;
    border-radius: 6px;
    color: #fff;
    padding: 8px 16px;
    font-size: 12px;
    border: none;
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Property Partners Section */
.property-partners {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1c263b;
    margin-bottom: 60px;
}

.partners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partners-text {
    padding-right: 40px;
}

.company-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c263b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.partners-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1c263b;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-image {
    position: relative;
}

.partners-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 1.5rem;
}

.feature-icon.verified {
    background-color: #e8f5e8;
}

.feature-icon.lightning {
    background-color: #fff3e0;
}

.feature-icon.support {
    background-color: #e3f2fd;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1F2B45;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: sans-serif;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #1F2B45;
}

.faq-description {
    text-align: center;
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
}

.all-faq {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.faq-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.faq-item {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s ease;
    color: #1F2B45;
    align-self: flex-start;
}

.faq-item.active {
    background-color: #f9f9f9;
    border-color: #000;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.faq-answer {
    margin-top: 10px;
    display: none;
    font-size: 14px;
    color: #333;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
    max-height: 300px;

}

.faq-icon {
    font-weight: bold;
    font-size: 20px;
}

.newsletter-section {
    background-color: #f0f0f0;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.newsletter-content {
    flex: 1;
    max-width: 500px;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.email-form {
    display: flex;
    gap: 0;
    position: relative;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    background-color: white;
}

.subscribe-btn {
    position: absolute;
    top: 3px;
    right: 3px;
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    margin-left: 60px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.footer-section {
    background-color: white;
    padding: 60px 0 40px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    max-width: 300px;
}




.footer-brand p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: #333;
    color: #333;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2B45;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #333;
}

.contact-info {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 20px auto;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #7C7D7F;
    color: #888888;
    font-size: 18px;
    background-color: transparent;
    border-radius: 50%;
}

/* .contact-info p {
    margin-bottom: 15px;
} */

.footer-bottom {
    border-top: 1px solid #eee;
    padding: 30px 0;
    background-color: white;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #333;
}

html {
    scroll-behavior: smooth;
}

#propert-partners,
#about,
#project {
    scroll-margin-top: 200px;
}








@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .partners-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .partners-text {
        padding-right: 0;
        text-align: center;
    }

    .company-logo {
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        text-align: center;
    }

    .faq-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: sans-serif;
    }

    .faq-section h2 {
        text-align: center;
        font-size: 32px;
        margin-bottom: 10px;
        color: #1F2B45;
    }

    .faq-description {
        text-align: center;
        font-size: 16px;
        color: #444;
        margin-bottom: 40px;
    }

    .all-faq {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .faq-grid {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }


    .faq-item {
        width: 100%;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 20px;
        cursor: pointer;
        background-color: #fff;
        transition: all 0.3s ease;
        color: #1F2B45;
        align-self: flex-start;
    }

    .faq-item.active {
        background-color: #f9f9f9;
        border-color: #000;
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
    }

    .faq-answer {
        margin-top: 10px;
        display: none;
        font-size: 14px;
        color: #333;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
        display: block;
        max-height: 300px;

    }

    .faq-icon {
        font-weight: bold;
        font-size: 20px;
    }

    .newsletter-section {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px;
    }

    .newsletter-content {
        max-width: 100%;
    }

    .hero-image {
        max-width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }

    .email-form {
        flex-direction: column;
        align-items: stretch;
    }

    .subscribe-btn {
        position: static;
        margin-top: 10px;
        width: 100%;
    }
}



@media (max-width: 600px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .company-logo {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 10px;
    }

    .partners-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .newsletter-content h2 {
        font-size: 1.8rem;
    }

    .newsletter-content p {
        font-size: 0.95rem;
    }

    .email-input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .subscribe-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
}


@media (max-width: 992px) {
    .hero {
        flex-direction: column-reverse;
        align-items: center;
        padding: 60px 30px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero img {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-bottom: 30px;
    }

    .search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-bar input,
    .search-bar button {
        width: 100%;
        font-size: 16px;
    }

    .search-bar button {
        margin-top: 10px;
    }

    .section-one {
        padding: 40px 30px;
        text-align: center;
    }

    .section-one h2 {
        font-size: 28px;
    }

    .section-one p {
        font-size: 15px;
    }

    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
    }

    .filter-buttons button {
        margin: 0;
        flex: 1 1 auto;
        min-width: 120px;
    }

    .property-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .property-card img {
        height: 160px;
    }

    .property-card h3 {
        font-size: 16px;
    }

    .property-card p {
        font-size: 13px;
    }

    .property-card button {
        width: 100%;
    }

    .section-two {
        padding: 40px 30px;
    }

    .Insights-icon {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .Insights-uncover {
        text-align: left;
    }

    .Insights {
        font-size: 26px;
    }

    .uncover {
        font-size: 24px;
    }

    .btn-icons {
        align-self: flex-end;
    }

    .innovation-cards {
        flex: 0 0 300px;
    }

    .innovation-cards img {
        height: 160px;
    }

    .innovation-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .innovation-details button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero {
        padding: 40px 20px;
    }

    .section-one {
        padding: 30px 20px;
    }

    .section-one h2 {
        font-size: 24px;
    }

    .property-card img {
        height: 150px;
    }

    .filter-buttons button {
        font-size: 14px;
        padding: 8px 12px;
    }

    .property-card button {
        font-size: 14px;
        padding: 10px;
    }

    .section-two {
        padding: 30px 20px;
    }

    .Insights-icon {
        align-items: center;
        text-align: center;
    }

    .Insights-uncover {
        text-align: center;
    }

    .Insights {
        font-size: 22px;
    }

    .uncover {
        font-size: 20px;
    }

    .btn-icons {
        justify-content: center;
    }

    .innovation-cards {
        flex: 0 0 260px;
    }

    .innovation-cards img {
        height: 140px;
    }

    .things {
        font-size: 13px;
    }

    .innovation-info {
        font-size: 13px;
    }

    .innovation-details button {
        font-size: 13px;
        padding: 10px 14px;
    }

}



@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .lastlink {
        display: block;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .partners-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partners-text {
        padding-right: 0;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
        color: #1F2B45;
    }

    .faq-section {
        padding: 30px 15px;
    }

    .faq-section h2 {
        font-size: 26px;
    }

    .faq-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer {
        font-size: 13px;
    }

    /* .newsletter-section {
        display: flex;
        flex-direction: column=column-reverse;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-image {
        margin-left: 0;
        margin-top: 40px;
    } */

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 20px;
    }
}