/* .hero-section {
    height: 100vh;
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 90px;
    width: 160px;
}

.navbar-brand img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
} */

/* Base */
:root {
    --sky-top: #78b9d6;
    --sky-bottom: #bde0f5;
    --muted-white: rgba(255, 255, 255, 0.95);
    --glass: rgba(255, 255, 255, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #fff;
}

/* NAVBAR */
.site-header .navbar {
    background: transparent;
    padding: .8rem 0;
}

.site-header {
    z-index: 999;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 72px;
    width: 160px;
}

.navbar-brand img {
    /* max-height: 100%; */
    max-width: 100%;
    object-fit: contain;
}

/* Hero section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    padding-top: 60px;
    /* leave room for navbar */
    background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-top) 55%, var(--sky-bottom) 100%);
    margin-top: -100px;
    overflow: hidden;
}

@media(max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
}

@media(max-width: 576px) {
    .hero-section {
        height: 60vh;
    }
}

/* soft overlay for subtle vignette */
.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(60% 40% at 50% 35%, rgba(0, 0, 0, 0.05), transparent 30%);
}

/* center content */
.hero-inner {
    position: relative;
    z-index: 3;
    padding-top: 100px;
    padding-bottom: 220px;
    /* space for image overlap */
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
}

/* typography */
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.75rem);
    line-height: 1.02;
    font-weight: 600;
    margin: 0 0 0.9rem;
    color: #ffffff;
    text-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}

.hero-sub {
    max-width: 620px;
    margin: 0 auto 1.6rem;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.95);
    opacity: 0.95;
}
.hero-actions{
    display: flex;
    align-items: center;
    justify-content: center;
    
}

/* CTA */
.hero-actions .btn-cta {
    border-radius: 12px;
    padding: 0.72rem 1.25rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 6px 18px rgba(23, 43, 77, 0.12);
    transition: transform .16s ease, box-shadow .16s ease;
}

/* .shery-mouse-follower {
      mix-blend-mode: normal !important;
      background: rgba(255, 255, 255, 0.9) !important;
      color: #111 !important;
      font-size: 18px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    .arrow {
      display: inline-block;
      transition: 0.3s ease;
      position: relative;
    }

    /* Hover par arrow animate hoga */
.btn-cta:hover .arrow {
    animation: exitEnter 0.55s ease forwards;
}

@keyframes exitEnter {
    0% {
        transform: translateX(0);
        /* center */
        opacity: 1;
    }

    40% {
        transform: translateX(-12px);
        /* left ko chala gaya */
        opacity: 0;
    }

    60% {
        transform: translateX(12px);
        /* right se entry */
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        /* dubara center me */
        opacity: 1;
    }
}

*/ .btn-cta .arrow {
    font-size: 1.05rem;
    opacity: 0.9;
}

/* Hero image container placed at bottom center */
.hero-image-wrap {
    position: absolute;
    left: 50%;
    bottom: -3vh;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1500px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
}

/* HOUSE IMAGE ON TOP */
.hero-image {
    width: 82%;
    max-width: 1400px;
    position: relative;
    z-index: 4;
    transform: translateY(6%);
    filter: drop-shadow(0 60px 80px rgba(10, 20, 40, .25));
}

/* ANIMATED IMAGES BEHIND */
.animate-left,
.animate-right {
    position: absolute;
    bottom: 0;
    z-index: 2;
    /* behind house */
    animation: autoFloat 5s ease-in-out infinite;
}

/* LEFT */
.animate-left {
    top: 20%;
    left: -40%;
}

/* RIGHT */
.animate-right {
    top: 20%;
    right: -20%;
}

/* FLOAT EFFECT */
@keyframes autoFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-26px);
    }

    100% {
        transform: translateY(0);
    }
}

.box {
    position: absolute;
    top: 80%;
    height: 120px;
    width: 100vw;
    background-color: #fff;
    z-index: 5;
    /* keep below house */
    /* border-top-left-radius: 20px;
    border-top-right-radius: 20px; */
    overflow: visible;
    pointer-events: all;
}

.box::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 999;
    pointer-events: none;
}

@media (max-width: 992px) {

    /* LEFT */
    .animate-left {
        top: -10%;
        left: -30%;
    }

    /* RIGHT */
    .animate-right {
        top: -25%;
        right: -40%;
    }
}

/* small screen tweaks */
@media (max-width: 768px) {
    .navbar-brand {
        height: 64px;
        width: 130px;
    }

    .hero-content {
        padding: 0 1.25rem;
    }

    .hero-sub {
        font-size: .95rem;
        padding: 0 0.5rem;
    }

    .hero-image {
        width: 100%;
        transform: translateY(8%);
    }

    /* LEFT */
    .animate-left {
        top: -10%;
        left: -20%;
    }

    /* RIGHT */
    .animate-right {
        top: 20%;
        right: 10%;
    }

    .box {
        height: 50px;
    }
}

/* small screen tweaks */
@media (max-width: 500px) {
    .navbar-brand {
        height: 50px;
        width: 80px;
    }

    .hero-content {
        padding: 0 1.25rem;
    }

    .hero-sub {
        font-size: .95rem;
        padding: 0 0.5rem;
    }

    .hero-image {
        width: 100%;
        transform: translateY(8%);
    }

    .box {
        height: 20px;
    }
}

/* optional footer spacing so content below doesn't overlap the image */
main+footer {
    padding-top: 260px;
}


/* Listings section */
.listings-section {
    background: #fff;
    color: #111;
}

.section-title {
    font-size: clamp(1.6rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #111;
    line-height: 1.05;
}

.btn-view-all {
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
    background: #0f1724;
    /* dark */
    color: #fff;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(15, 23, 36, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-view-all:hover {
    transform: translateY(-2px);
}

/* Card layout */
.listing-card {
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(21, 32, 43, 0.06);
    background: #fff;
    transition: transform .18s ease, box-shadow .18s ease;
    /* min-height: 320px; */
}

.listing-card:hover img {
    transform: scale(1.05);
    transition: 0.6s ease;
    box-shadow: 0 18px 40px rgba(21, 32, 43, 0.12);
}

/* image wrapper with rounded corners */
.wrap-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 23, 36, 0.04);
    background: linear-gradient(180deg, #f3f6f8, #ffffff);
}

.wrap-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
    transition: transform .6s ease;
}

/* card body */
.card-body {
    padding: 14px 16px;
}

.listing-title {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
}

.listing-price {
    color: #111;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* meta row */
.listing-meta .meta-item {
    color: #6b7280;
    /* gray-500 */
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing-meta .meta-item i {
    font-size: 1rem;
    color: #9ca3af;
}

/* responsive tweaks */
@media (max-width: 991px) {
    .wrap-img {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .wrap-img {
        height: 160px;
    }

    .listings-head {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-view-all {
        align-self: flex-start;
    }
}


:root {
    --bg: #f2efe1;
    /* pale cream page background */
    --card: #cfdccb;
    /* pale green card */
    --accent: #0e5436;
    /* deep green for headings & text */
    --muted: #274233;
    /* darker green for meta */
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg);
    padding: 48px 24px;
}



.testimonials-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 18px;
}

.testimonials-header .logo {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
}

.testimonials-header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.testimonials-title {
    width: 100%;
    text-align: center;
    font-size: clamp(1.6rem, 3.8vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--accent);
    margin: 6px 0 6px;
    text-transform: uppercase;
}

/* Splide root spacing */
.splide {
    padding: 6px 4px 36px;
}

.testimonial-card {
    background: var(--card);
    border-radius: 6px;
    padding: 32px 28px;
    min-height: 240px;
    box-shadow: 0 6px 18px rgba(10, 15, 12, 0.06);
    position: relative;
    overflow: hidden;
}

.quote-mark {
    position: absolute;
    left: 28px;
    top: 10px;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1;
    font-weight: 800;
    opacity: 0.9;
}

.testimonial-text {
    color: #08321f;
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.93rem;
}

.author-dot {
    width: 10px;
    height: 10px;
    background: var(--muted);
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.splide__arrow {
    background: rgba(10, 20, 10, 0.06);
    border: 0;
    color: var(--accent);
    box-shadow: 0 6px 18px rgba(10, 20, 10, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: none;
}

.splide__arrow:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 84, 54, 0.12);
}

.splide__pagination__page {
    background: rgba(10, 15, 10, 0.08);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
}

.splide__pagination__page.is-active {
    background: var(--accent);
    transform: scale(1.05);
}

.slide-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .testimonial-card {
        padding: 28px 20px;
        min-height: 220px;
    }

    .quote-mark {
        font-size: 44px;
        left: 16px;
        top: 12px;
    }

    .testimonials-section {
        padding: 36px 12px;
    }
}

@media (max-width: 560px) {
    .testimonials-title {
        font-size: 1.1rem;
        text-align: center;
    }

    .testimonials-header {
        justify-content: center;
    }

    .testimonials-header .logo {
        display: none;
    }

    .testimonial-card {
        padding: 20px;
        min-height: 190px;
    }

    .quote-mark {
        display: none;
    }
}

/* Contact / Get In Touch section */
.contact-section {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-image: url('/mnt/data/9e1aa9bf-ede2-4d38-8273-492a65c3b1d1.png');
    background-size: cover;
    background-position: center center;
    filter: saturate(.9) contrast(.98);
    z-index: 0;
}

/* subtle overlay to improve text contrast */
.contact-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(8, 62, 57, 0.55) 0%, rgba(8, 62, 57, 0.35) 35%, rgba(8, 62, 57, 0.18) 100%); */
    /* background: linear-gradient(rgb(255 255 255 / 60%) 0%, rgb(57 97 89 / 45%) 0%, rgb(40 111 32 / 28%) 100%); */
    background-color: lightskyblue;
    z-index: 0;
}

/* inner content sits above bg */
.contact-inner {
    position: relative;
    z-index: 2;
    /* padding: 48px 16px; */
    /* max-width: 1200px; */
}

.contact-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 6px;
}

/* optional logo in top-right */
.contact-logo {
    width: 96px;
    height: 96px;
    display: block;
}

.contact-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.95;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.25));
}

/* content column */
.contact-title {
    font-size: clamp(2.0rem, 4.6vw, 3.6rem);
    font-weight: 800;
    margin: 6px 0 18px;
    letter-spacing: 0.6px;
    color: #fbf9f2;
    text-transform: uppercase;
}

/* labels and links */
.muted-label {
    display: inline-block;
    color: #bde58a;
    /* greenish label */
    font-weight: 600;
    margin-right: 6px;
}

.contact-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    /* border-bottom: 1px dashed rgba(255, 255, 255, 0.12); */
}

.contact-link:hover {
    opacity: 0.95;
    /* text-decoration: underline; */
    color: #ccc;
}

/* social icons */
.social-row {
    margin-top: 8px;
}

.social-icons {
    display: inline-flex;
    gap: 10px;
    margin-left: 10px;
    align-items: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    transition: transform .12s ease, background .12s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
}


/* CTA phrase */
.contact-cta {
    margin-top: 26px;
    font-size: clamp(1.05rem, 1.6vw, 1.45rem);
    font-weight: 700;
    color: #ffffff;
}

/* Ensure header row places logo and heading on same line */
.contact-header-row {
    width: 100%;
    margin-bottom: 10px;
}

/* Logo styling */
.contact-logo {
    width: 130px;
    height: auto;
}

.contact-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

/* Title */
.contact-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.7px;
}

/* Responsive: Stack logo + title on small screens */
@media (max-width: 768px) {
    .contact-header-row {
        flex-direction: column-reverse;
        align-items: flex-start !important;
        gap: 10px;
    }

    .contact-logo {
        width: 100px;
    }
}

/* responsive adjustments */
@media (max-width: 992px) {
    .contact-inner {
        /* padding-left: 20px; */
        /* padding-right: 20px; */
    }

    .contact-logo {
        /* width: 72px; */
        /* height: 72px; */
    }
}

@media (max-width: 640px) {
    .contact-title {
        font-size: 1.6rem;
        text-align: left;
    }

    .contact-cta {
        font-size: 1rem;
    }

    .contact-bg::after {
        background: linear-gradient(180deg, rgba(8, 62, 57, 0.6) 0%, rgba(8, 62, 57, 0.45) 50%, rgba(8, 62, 57, 0.28) 100%);
    }
}