.logo {
    display: flex;
    align-items: center;
    position: relative;
    top:25px;
  
}

.logo img {
    height: 110px;
    width: 110px;
    object-fit: cover;
    /* इमेज को सर्कल के अंदर सही से फिट करने के लिए */
    border-radius: 50%;
    /* सर्कुलर बनाने के लिए */
  border: 2px solid var(--st-theme);
/* थीम कलर की बॉर्डर */
box-shadow: 0 0 6px var(--st-theme), 0 0 12px rgba(194, 223, 147, 0.1);
    /* ग्लोइंग इफेक्ट */
    transition: all 0.3s ease-in-out;
    /* स्मूथ इफेक्ट के लिए */


}

.logo img:hover {
    box-shadow: 0 0 10px var(--st-theme), 0 0 40px var(--st-theme);
    /* होवर करने पर ज्यादा ग्लो */
    transform: scale(1.03);
    /* हल्का सा ज़ूम इफेक्ट */
}


.logo-foot {
    display: flex;
    align-items: center;
  
  
}

.logo-foot img {
    height: 110px;
    width: 110px;
    object-fit: cover;
    /* इमेज को सर्कल के अंदर सही से फिट करने के लिए */
    border-radius: 50%;
    /* सर्कुलर बनाने के लिए */
  border: 2px solid var(--st-theme);
/* थीम कलर की बॉर्डर */
box-shadow: 0 0 6px var(--st-theme), 0 0 12px rgba(194, 223, 147, 0.1);
    /* ग्लोइंग इफेक्ट */
    transition: all 0.3s ease-in-out;
    /* स्मूथ इफेक्ट के लिए */


}

.logo-foot img:hover {
    box-shadow: 0 0 10px var(--st-theme), 0 0 40px var(--st-theme);
    /* होवर करने पर ज्यादा ग्लो */
    transform: scale(1.03);
    /* हल्का सा ज़ूम इफेक्ट */
}


.offcanvas__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* optional center */
}

.offcanvas__logo img {
    height: 100px;
    width: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--st-theme);
    box-shadow: 0 0 10px var(--st-theme), 0 0 20px rgba(194, 223, 147, 0.2);
    transition: all 0.3s ease-in-out;
}

.offcanvas__logo img:hover {
    box-shadow: 0 0 20px var(--st-theme), 0 0 40px var(--st-theme);
    transform: scale(1.03);
    /* thoda aur smooth zoom */
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(var(--color-1-rgb, 180, 130, 80), 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.faq-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

/* Deco ornament */

/* FAQ accordion items */
.faq-accordion-item {
    border-top: 1px solid rgba(198, 169, 108, 0.25);
    transition: border-color 0.3s ease;
}

.faq-accordion-item:last-child {
    border-bottom: 1px solid rgba(198, 169, 108, 0.25);
}

.faq-accordion-item.active {
    border-color: rgba(198, 169, 108, 0.55);
}

.faq-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
}

.faq-accordion-header:hover .faq-acc-question {
    color: var(--color-1, #c6a96c);
}

.faq-acc-question {
    font-size: 19px;
    font-weight: 550;
    color: var(--color-black, #1c1a14);
    line-height: 1.55;
    transition: color 0.25s;
    flex: 1;
}

.faq-acc-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(198, 169, 108, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    color: var(--color-1, #c6a96c);
    transition: all 0.35s ease;
    user-select: none;
}

.faq-accordion-item.active .faq-acc-icon {
    background: var(--color-1, #c6a96c);
    border-color: var(--color-1, #c6a96c);
    color: #fff;
    transform: rotate(45deg);
}

.faq-acc-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-acc-body.open {
    max-height: 300px;
}

.faq-acc-answer {
    font-size: 15px;
    color: var(--color-p, #6b6660);
    line-height: 1.85;
    padding: 0 52px 22px 20px;
    border-left: 2px solid var(--color-1, #c6a96c);
    margin-left: 0;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s 0.08s, transform 0.3s 0.08s;
}

.faq-acc-body.open .faq-acc-answer {
    opacity: 1;
    transform: translateY(0);
}

/* Bottom dots deco */
.faq-bottom-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.faq-deco-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-1, #c6a96c);
    opacity: 0.4;
}

.faq-deco-dot.mid {
    width: 7px;
    height: 7px;
    opacity: 1;
}

@media (max-width: 576px) {
    .faq-acc-question {
        font-size: 14px;
    }

    .faq-acc-answer {
        padding-right: 10px;
        font-size: 13px;
    }
}

.about-img {
    width: 100%;
    max-width: 600px;
    height: 500px !important;
    object-fit: cover;
    border-radius: 10px;
}

/* Tablet */
@media (max-width: 992px) {
    .about-img {
        height: 400px !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-img {
        height: 250px !important;
    }
}

.client-img {
    height: 80px;
    /* apne according change kar sakte ho */
    width: 80px;
    border-radius: 50%;
    /* circular */
    object-fit: cover;
    /* image stretch nahi hogi */
    border: 2px solid #fff;
    /* optional border */
}

.team-box-image-4 {
    height: 350px;
    overflow: hidden;
}



.propertie-box-image {
    position: relative;
    width: 100%;
    height: 280px;
    /* apni need ke hisaab se change karo */
    overflow: hidden;
    border-radius: 10px;
    /* optional */
}

.propertie-box-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.project-image-2 {
    position: relative;
    width: 100%;
    height: 300px;
    /* apni need ke hisaab se change karo */
    overflow: hidden;

}

.project-image-2 img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fixed-icons {
    position: fixed;
    left: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fixed-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

/* WhatsApp */
.whatsapp {
    background: #25D366;
}

/* Call */
.call {
    background: #007bff;
}

/* Hover Effect */
.fixed-icons a:hover {
    transform: scale(1.1);
}

/* 🔥 Pulse Effect */
.fixed-icons a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.6;
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


.theme-btn {
  font-size: 17px;
  padding: 10px 16px;
}

/* Split Layout */
.faq-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.propertie-image {
  height: 500px;
  w /* apni height yaha set karo */
}

.propertie-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* ---------- LEFT SIDE ---------- */
.faq-img-side {
    position: sticky;
    top: 100px;
}

.faq-img-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.faq-img-box img {
  height:650px;
  width:600px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.faq-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.faq-img-badge p {
    margin: 0 0 4px;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-img-badge h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Stats Row */
.faq-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.faq-stat-pill {
    background: #f7f7f5;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
}

.faq-stat-pill span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.faq-stat-pill small {
    font-size: 11px;
    color: #888;
}

/* ---------- RIGHT SIDE ---------- */
.faq-accordion-side {
    display: flex;
    flex-direction: column;
}

.faq-accordion-item {
    border-bottom: 1px solid #ebebeb;
}

.faq-accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
    text-align: left;
}

.faq-acc-question {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    flex: 1;
    padding: 10px;
}

.faq-acc-icon {
    font-size: 22px;
    font-weight: 300;
    color: #999;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.faq-accordion-header[aria-expanded="true"] .faq-acc-icon {
    transform: rotate(45deg);
    /* your brand gold — change as needed */
}

.faq-acc-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.faq-acc-answer {
    font-size: 14px;
   
    
   color: #666; line-height: 1.8;
    padding: 0 0 18px;
    margin: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .faq-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-img-side {
        position: static;
    }
    .faq-img-box {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 480px) {
    .faq-stats-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }
    .faq-stat-pill span {
        font-size: 15px;
    }
}

.section {
    padding: 70px 0;
}

.sec-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.sec-sub {
    text-align: center;
    font-size: 16px;
    color: #777;
    margin-bottom: 40px;
}

/* Steps Layout */
.steps {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

/* Single Step Box */
.step {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Step Hover */
.step:hover {
    transform: translateY(-8px);
}

/* Step Number Circle */
.step-num {
    width: 60px;
    height: 60px;
    background:#288811;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Heading */
.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

/* Text */
.step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
@media (max-width: 768px) {

    .steps {
        flex-direction: column;
        gap: 20px;
    }

    .step {
        width: 100%;
    }

    .sec-title {
        font-size: 24px;
    }

}
.localities-section {
    padding: 70px 0;
}

.localities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Card Style */
.locality-card {
    display: block;
    padding: 18px 25px;
    background: #4cb233;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    text-align: center;
    min-width: 180px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Hover */
.locality-card:hover {
    background: #ff5a3c;
    color: #fff;
    transform: translateY(-5px);
}
@media (max-width: 768px) {

    .locality-card {
        width: 100%;
    }

}



.how-it-works {
    padding: 70px 0;
}

.sec-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

.sec-sub {
    text-align: center;
    color: #777;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    width: 300px;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-num {
    width: 55px;
    height: 55px;
    background: #288811;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -55px auto 15px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 15px;
    color: #666;
}
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        width: 100%;
        max-width: 320px;
    }
}


/* FAQ Responsive */
.faq-split-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Image */
.faq-img-side {
    width: 50%;
}

.faq-img-box {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.faq-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Content */
.faq-accordion-side {
    width: 50%;
}

/* Accordion */
.faq-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
}

.faq-acc-body {
    padding: 0 20px 15px;
}

/* 📱 Tablet */
@media (max-width: 992px) {
    .faq-split-layout {
        flex-direction: column;
        gap: 30px;
    }

    .faq-img-side,
    .faq-accordion-side {
        width: 100%;
    }

    .faq-img-box {
        height: 300px;
    }
}

/* 📱 Mobile */
@media (max-width: 576px) {

    .section-title h2 {
        font-size: 22px;
    }

    .faq-img-box {
        height: 220px;
    }

    .faq-accordion-header {
        font-size: 14px;
        padding: 12px 15px;
    }

    .faq-acc-answer {
        font-size: 13px;
    }

    .faq-ornament {
        margin: 10px 0 30px;
    }
}



  .about-btn {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px; /* left-right margin */
}

.option-btn {
    flex: 0 1 auto; /* auto width */
    min-width: 260px; /* chota size */
    text-align: center;
    padding: 10px 15px; /* height kam ki */
    font-size: 24px;
    border-radius: 28px;
    transition: 0.3s;
}

/* Hover */
.option-btn:hover {
    transform: translateY(-4px);
}

/* Icon spacing */
.option-btn i {
    margin-left: 6px;
    font-size: 20px;
}


@media (max-width: 768px) {

    .about-btn {
        flex-direction: column;
        padding: 0 15px; /* mobile margin */
    }

    .option-btn {
        width: 100%;
        font-size: 15px;
        padding: 10px;
    }

}

  
        /* ── Search Bar Section ── */
        .bs-search-section {
            position: relative;
            z-index: 10;
            margin-top: 50px;
            margin-bottom: 0;
            margin-bottom: 90px;
        }

        .bs-search-card {
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
            padding: 28px 32px 24px;

            margin: 0 auto;
        }

        .bs-search-card .bs-search-label {
            font-size: 15px;
            font-weight: 600;
            color: #157f06;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .bs-search-card .bs-search-label i {
            font-size: 15px;
        }

        .bs-search-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr auto;
            gap: 12px;
            align-items: end;
        }

        .bs-search-field label {
            display: block;
            font-size: 16px;
            font-weight: 600;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 6px;
        }

        .bs-search-field select,
        .bs-search-field input {
            width: 100%;
            height: 48px;
            border: 1.5px solid #e8e8e8;
            border-radius: 8px;
            padding: 0 14px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            color: #333;
            background: #fafafa;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            cursor: pointer;
        }

        .bs-search-field select:focus,
        .bs-search-field input:focus {
            border-color: #157f06;
            box-shadow: 0 0 0 3px rgba(227, 87, 45, 0.1);
            background: #fff;
        }

        .bs-search-field input {
            background-image: none;
        }

        .bs-search-field input::placeholder {
            color: #bbb;
        }

        .bs-search-btn-wrap {
            display: flex;
            align-items: flex-end;
        }

        .bs-search-btn {
            height: 48px;
            padding: 0 28px;
            background: #157f06;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            transition: background 0.2s, transform 0.15s;
        }

        .bs-search-btn:hover {
            background: #157f06;
            transform: translateY(-1px);
        }

        .bs-search-btn i {
            font-size: 15px;
        }



        .bs-filter-label {
            font-size: 12px;
            font-weight: 600;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-right: 20px;
            white-space: nowrap;
        }

        .bs-filter-row {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .bs-filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border-radius: 50px;
            border: 1.5px solid #ddd;
            background: #fff;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            color: #444;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s;
        }

        .bs-filter-btn i {
            font-size: 15px;
            color: #157f06;
            transition: color 0.2s;
        }

        .bs-filter-btn:hover,
        .bs-filter-btn.active {
            background: #157f06;
            border-color: #157f06;
            color: #fff;
            box-shadow: 0 4px 16px rgba(227, 87, 45, 0.25);
            transform: translateY(-2px);
            text-decoration: none;
        }

        .bs-filter-btn:hover i,
        .bs-filter-btn.active i {
            color: #fff;
        }

        .bs-filter-btn .bs-filter-count {
            font-size: 11px;
            background: rgba(0, 0, 0, 0.07);
            border-radius: 20px;
            padding: 1px 8px;
            font-weight: 500;
            transition: background 0.2s;
        }

        .bs-filter-btn:hover .bs-filter-count,
        .bs-filter-btn.active .bs-filter-count {
            background: rgba(255, 255, 255, 0.25);
            color: #fff;
        }

        /* ── Responsive ── */
        @media (max-width: 991px) {
            .bs-search-section {
                margin-top: -20px;
            }

            .bs-search-row {
                grid-template-columns: 1fr 1fr;
            }

            .bs-search-btn-wrap {
                grid-column: 1 / -1;
            }

            .bs-search-btn {
                width: 100%;
                justify-content: center;
            }

            .bs-search-card {
                padding: 22px 20px 20px;
                border-radius: 10px;
            }
        }

        @media (max-width: 575px) {
            .bs-search-section {
                margin-top: 0;
                margin-bottom: 20px;
            }

            .bs-search-row {
                grid-template-columns: 1fr;
            }

            .bs-search-card {
                border-radius: 0;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            }

            .bs-filter-label {
                display: none;
            }

            .bs-filter-btn {
                padding: 9px 16px;
                font-size: 13px;
            }
        }
   .value-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.value-box:hover {
    transform: translateY(-8px);
}

.value-box .icon {
    font-size: 35px;
    color: #288811;
    margin-bottom: 15px;
}

.value-box h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.value-box p {
    font-size: 14px;
    color: #666;
}


.emi-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.emi-box label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.emi-box input {
    height: 45px;
    border-radius: 8px;
}

.emi-result h4 {
    font-size: 22px;
    font-weight: 600;
}

#emiResult {
    color: #ff5a3c;
}




.why-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.why-box:hover {
    transform: translateY(-8px);
}

.why-box .icon {
    font-size: 35px;
    color: #288811;
    margin-bottom: 15px;
}

.why-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 14px;
    color: #666;
}

/* Outer Card */
.list-property-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 1400px;
    margin: auto;
}

/* Heading */
.list-property-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Sub Text */
.sub-text {
    font-size: 15px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Inner Cards */
.list-point-card {
    background: #f9f9f9;
    padding: 25px 20px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
}

.list-point-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Icon */
.list-point-card i {
    font-size: 28px;
    color: #288811;
    margin-bottom: 10px;
}

/* Title */
.list-point-card h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* Text */
.list-point-card p {
    font-size: 14px;
    color: #666;
}

/* 📱 Tablet */
@media (max-width: 992px) {
    .list-property-card {
        padding: 40px 20px;
    }

    .list-property-card h2 {
        font-size: 26px;
    }
}

/* 📱 Mobile */
@media (max-width: 576px) {

    .list-property-card {
        padding: 30px 15px;
    }

    .list-property-card h2 {
        font-size: 22px;
    }

    .sub-text {
        font-size: 14px;
    }

    .list-point-card {
        padding: 20px 15px;
    }

    .list-point-card h5 {
        font-size: 16px;
    }

    .list-point-card p {
        font-size: 13px;
    }
}


/* Card */
.step-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.step-card:hover {
    transform: translateY(-8px);
}

/* Step Number */
.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff5a3c;
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    font-weight: bold;
}

/* Icon */
.step-card .icon {
    font-size: 32px;
    color: #288811;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Title */
.step-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Text */
.step-card p {
    font-size: 14px;
    color: #666;
}

/* 📱 Tablet */
@media (max-width: 992px) {
    .step-card {
        padding: 25px 15px;
    }
}

/* 📱 Mobile */
@media (max-width: 576px) {

    .section-title h2 {
        font-size: 22px;
    }

    .step-card {
        padding: 20px 15px;
    }

    .step-card h4 {
        font-size: 16px;
    }

    .step-card p {
        font-size: 13px;
    }
}


/* Card */
.assure-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    transition: 0.3s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    height: 100%;
}

.assure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Icon Circle */
.assure-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255, 90, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assure-card .icon i {
    font-size: 26px;
    color:#288811;
}

/* Title */
.assure-card h5 {
    font-size: 17px;
    margin-bottom: 10px;
}

/* Text */
.assure-card p {
    font-size: 14px;
    color: #666;
}

/* 📱 Tablet */
@media (max-width: 992px) {
    .assure-card {
        padding: 25px 15px;
    }
}

/* 📱 Mobile */
@media (max-width: 576px) {

    .section-title h2 {
        font-size: 22px;
    }

    .assure-card h5 {
        font-size: 15px;
    }

    .assure-card p {
        font-size: 13px;
    }
}


/* Card */
.tip-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 14px;
    transition: 0.3s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Icon */
.tip-card .icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 90, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.tip-card .icon i {
    font-size: 24px;
    color: #288811;
}

/* Title */
.tip-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

/* Text */
.tip-card p {
    font-size: 14px;
    color: #666;
}

/* 📱 Tablet */
@media (max-width: 992px) {
    .tip-card {
        padding: 20px 15px;
    }
}

/* 📱 Mobile */
@media (max-width: 576px) {

    .section-title h2 {
        font-size: 22px;
    }

    .tip-card h4 {
        font-size: 15px;
    }

    .tip-card p {
        font-size: 13px;
    }
}
/* Background Box */
.stats-box {
background: linear-gradient(135deg, #11998e, #38ef7d);
    padding: 50px 30px;
    border-radius: 15px;
    color: #fff;
}

/* Numbers */
.stat-item h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Text */
.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* 📱 Tablet */
@media (max-width: 992px) {
    .stat-item h2 {
        font-size: 32px;
    }
}

/* 📱 Mobile */
@media (max-width: 576px) {

    .stats-box {
        padding: 30px 15px;
    }

    .stat-item h2 {
        font-size: 26px;
    }

    .stat-item p {
        font-size: 14px;
    }
}


