* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
    max-width: 100%;
}

/* Navbar */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f9f8f8;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);

}

.nav-container {
    max-width: 1270px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: #1d5bbf;
    font-family: 'Source Sans 3', sans-serif;
}


.nav-menu {
    display: flex;
    gap: 32px;

}

/* .nav-menu a {
    text-decoration: none;
    color: #222;
     
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
} */

.nav-menu a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    font-family: 'Source Sans 3', sans-serif;
}

.nav-menu a:hover {
    color: #1d5bbf;
}


.nav-btn {
    background: #1d5bbf;
    color: #fff;
    border: none;
    width: 135.98px;
    height: 40px;

    border-radius: 10px;

    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-family: 'Source Sans 3', sans-serif;

}


.nav-btn:hover {
    background: #154a9f;
    transform: translateY(-1px);
}


@media (max-width: 768px) {


    .nav-menu {
        display: none;
    }


    .nav-container {
        padding: 17px 15px;
    }

    .nav-logo {
        font-size: 20px;
    }


    .nav-btn {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 8px;
    }
}



/* Hero Section */

.hero {
    position: relative;
    height: 85vh;
    background: url('img/Grih\ sathi.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}


.hero-content {
    position: relative;
    color: #fff;
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;

}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: 'Source Sans 3', sans-serif;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-family: 'Source Sans 3', sans-serif;
}


.btn {
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;

    display: inline-block;
    transition: 0.3s;


}


.primary {
    background: #1d5bbf;
    color: #fff;
}


.outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}


.outline:hover {
    background: #fff;
    color: #000;

}


@media (max-width: 768px) {

    .hero {
        height: auto;

        padding: 60px 15px;
        margin-top: 60px;
    }

    .hero-content {
        max-width: 100%;
        padding: 2px;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 25px;
    }


    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        border-radius: 8px;
    }

    .outline {
        border: 2px solid #fff;
    }

}

@media (max-width: 768px) {
    .desk-br {
        display: none;
    }
}


/* Featured Residential Projects in Pune */


.res-projects {
    background: #f9f8f8;
    padding: 80px 20px;
    text-align: center;
}

.res-container {
    max-width: 1270px;
    margin: auto;
}

.res-title {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
}

.res-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 18px;
    font-family: 'Source Sans 3', sans-serif;
}


.res-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}


.res-card {
    background: #fff;
    width: 386px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: 0.3s;
}


.res-card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}


/* .res-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
} */

.res-img {
    overflow: hidden;
}


.res-img img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.res-card:hover .res-img img {
    transform: scale(1.08);
}


.res-card-body {
    padding: 20px;
}

.res-card-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0px;
    font-family: 'DM Sans', sans-serif;
}

.res-location {
    color: #1d5bbf;
    font-size: 14px;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Source Sans 3', sans-serif;
}

.res-card-body p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Source Sans 3', sans-serif;
}


.res-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.res-tags span {
    background: #f5c86a;
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-family: 'Source Sans 3', sans-serif;
}


.res-btn {
    display: block;
    text-align: center;
    background: #1d5bbf;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-family: 'Source Sans 3', sans-serif;
    height: 40px;
}

.res-btn:hover {
    background: #154a9f;
}

@media (max-width: 768px) {

    .res-cards {
        flex-direction: column;
        align-items: center;
    }

    .res-card {
        width: 100%;

        max-width: 400px;

    }

    .res-title {
        font-size: 36px;
    }

    .res-subtitle {
        font-size: 18px;
    }
}


/* Our Real Estate Sales & Marketing Services */

.services {
    /* background: #e6b857; */
    background: oklch(0.8533 0.1329 85.54);
    padding: 80px 40px 40px 0px;
}


.container {
    max-width: 1220px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}


.left {
    flex: 1;
}

.left h2 {
    font-size: 48px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'DM Sans', sans-serif;
}

.desc {
    color: #5a5a5a;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Source Sans 3', sans-serif;
}


.features {
    list-style: none;
}

.features li {
    font-size: 16px;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    padding-left: 30px;
    font-family: 'Source Sans 3', sans-serif;
}


.features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1d5bbf;
    font-weight: bold;
    font-size: 24px;
}


.right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}


.service-card h3 {
    color: #1d5bbf;
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
}

.service-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Source Sans 3', sans-serif;
}

@media (max-width: 768px) {

    .services {
        padding: 40px 15px;
    }


    .container {
        flex-direction: column;
        gap: 30px;
        margin: 0;

        max-width: 100%;
    }


    .left h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .desc {
        font-size: 14px;
    }

    .features li {
        font-size: 14px;
    }


    .right {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        border-radius: 12px;
        padding: 18px;
    }

}


/* Trusted by Leading Builders in Pune */


.bld-section {
    background: #f9f8f8;
    padding: 80px 20px;
    text-align: center;
}


.bld-container {
    max-width: 1220px;
    margin: auto;
}


.bld-title {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
}

.bld-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 18px;
    font-family: 'Source Sans 3', sans-serif;
}

.bld-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}


.bld-card {
    background: #fff;
    width: 280px;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.bld-card:hover {
    transform: translateY(-5px);
}

.bld-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}



.bld-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
    font-family: 'DM Sans', sans-serif;
}

.bld-card p {
    font-size: 12px;
    color: #777;
    font-family: 'Source Sans 3', sans-serif;
}

@media (max-width: 768px) {

    .bld-section {
        padding: 50px 15px;
    }

    .bld-title {
        font-size: 36px;
    }

    .bld-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }


    .bld-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }


    .bld-card {
        width: 100%;
        padding: 20px 10px;
        border-radius: 12px;

        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        text-align: center;
    }


    .bld-card img {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }


    .bld-card h4 {
        font-size: 13px;
        font-weight: 600;
    }

    .bld-card p {
        font-size: 12px;
    }

}


/* About Grih Sathi */

.about {
    /* background: #e4b44f; */
    background: oklch(0.8533 0.1329 85.54);
    padding: 80px 40px;
}


.container {
    max-width: 1220px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
    padding-bottom: 40px;
}


.about-left {
    flex: 1;
}

.about-box {
    background-color: #C2AA72;
    height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #222;
}

.about-box .icon {
    font-size: 60px;
    margin-bottom: 15px;
    font-family: 'Source Sans 3', sans-serif;
}

.about-box p {
    font-weight: 600;
    font-family: 'Source Sans 3', sans-serif;
}


.about-right {
    flex: 1;
}

.about-right h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
    font-family: 'DM Sans', sans-serif;
}

.desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    font-family: 'Source Sans 3', sans-serif;
}


.points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point {
    display: flex;
    gap: 15px;
}

.point span {
    font-size: 30px;
    font-family: 'Source Sans 3', sans-serif;
}

.point h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #111;
    font-family: 'Source Sans 3', sans-serif;
}

.point p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    font-family: 'Source Sans 3', sans-serif;
}


@media (max-width: 768px) {

    .about {
        padding: 50px 15px;
    }


    .container {
        flex-direction: column;
        gap: 30px;
        max-width: 100%;
    }


    .about-left {
        width: 100%;
    }

    .about-box {
        width: 100%;
        height: 384px;
        border-radius: 12px;
    }

    .about-box .icon {
        font-size: 40px;
    }


    .about-right h2 {
        font-size: 36px;
        line-height: 1.3;
    }

    .desc {
        font-size: 18px;
    }


    .point {
        gap: 12px;
    }

    .point span {
        font-size: 18px;
    }

    .point h4 {
        font-size: 16px;
    }

    .point p {
        font-size: 16px;
    }

}


/* Enquire About Residential Projects */

.enq-section {
    background: #f9f8f8;
    padding: 80px 20px;
    text-align: center;
}

.enq-container {
    max-width: 1220px;
    margin: auto;
    padding-bottom: 70px;
}


.enq-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
}

.enq-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 18px;
    font-family: 'Source Sans 3', sans-serif;
}


.enq-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}


.enq-form-box {
    flex: 2;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding-bottom: 55px;
}

.enq-form-box label {
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    font-family: 'Source Sans 3', sans-serif;
}

.enq-form-box input,
.enq-form-box select,
.enq-form-box textarea {
    width: 100%;
    height: 49px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e2e2e2;
    margin-bottom: 20px;
    font-size: 18px;
    background: #f3f4f6;
     
    transition: all 0.3s ease;
    font-family: 'Source Sans 3', sans-serif;
}

.enq-row {
    display: flex;
    gap: 20px;
}

.enq-row div {
    flex: 1;
}


.enq-form-box textarea {
    height: 120px;
    resize: none;
}

.enq-form-box button {
    width: 100%;
    background: #1d5bbf;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}


.enq-form-box button:hover {
    background: #154a9f;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.enq-info-box {
    flex: 1;
    /* background: #eebd53; */
    background: oklch(0.8533 0.1329 85.54);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    padding-bottom: 55px;
    max-width: 375px;
    min-height: 605px;
}

.enq-info-box h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-family: 'DM Sans', sans-serif;
}


.enq-info {
    margin-bottom: 20px;
}

.enq-info p {
    font-weight: 500;
    margin-bottom: 25px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
}

.enq-info span {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Source Sans 3', sans-serif;
}

.enq-form-box input:focus,
.enq-form-box select:focus,
.enq-form-box textarea:focus {
    outline: none;
    border: 2.5px solid #154a9f;

}


@media (max-width: 768px) {

    .enq-section {
        padding: 50px 15px;
    }

    .enq-container {
        max-width: 100%;
    }


    .enq-wrapper {
        flex-direction: column;
        gap: 25px;
    }


    .enq-form-box {
        width: 100%;
        padding: 20px;
        border-radius: 12px;
    }


    .enq-row {
        flex-direction: column;
        gap: 0;
    }


    .enq-info-box {
        width: 100%;
        padding: 20px;
        border-radius: 12px;
    }


    .enq-title {
        font-size: 36px;
    }

    .enq-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }


    .enq-form-box input,
    .enq-form-box select,
    .enq-form-box textarea {
        font-size: 14px;
        padding: 10px;
    }


    .enq-form-box button {
        padding: 12px;
        font-size: 15px;
    }

}


/* footer */


.ft {
    background: oklch(0.8533 0.1329 85.54);
    padding: 70px 20px 30px;
}


.ft-container {
    max-width: 1220px;
    margin: auto;
}


.ft-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}


.ft-col {
    flex: 1;
}


.ft-logo {
    color: #1d5bbf;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'DM Sans', sans-serif;
}


.ft-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}


.ft-col p {
    color: #444;
    font-size: 14px;
    line-height: 1.7;
    font-family: 'Source Sans 3', sans-serif;
}


.ft-col ul {
    list-style: none;
    padding: 0;
}

.ft-col ul li {
    margin-bottom: 20px;
    color: #444;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Source Sans 3', sans-serif;
}

.ft-col ul li:hover {
    color: #000;
}


.ft-divider {
    margin: 40px 0 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}


.ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.ft-bottom p {
    font-size: 14px;
    color: #444;
    font-family: 'Source Sans 3', sans-serif;
}


.ft-built {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.ft-built strong {
    font-weight: 700;
    color: #000;
}



@media (max-width: 768px) {

    .ft {
        padding: 50px 15px 20px;
    }

    .ft-container {
        max-width: 100%;
    }


    .ft-top {
        flex-direction: column;
        gap: 30px;
    }


    .ft-col {
        width: 100%;
    }


    .ft-logo {
        font-size: 20px;
    }


    .ft-col h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }


    .ft-col p {
        font-size: 13px;
    }


    .ft-col ul li {
        margin-bottom: 10px;
        font-size: 13px;
    }


    .ft-divider {
        margin: 30px 0 15px;
    }


    .ft-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .ft-bottom p {
        font-size: 13px;
    }

}