@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* ============================================
   RESET & BASE
   ============================================ */
:root {
    --theme-main2: #6a1d5e;
    --theme-main: #D98908;
    --dark-grey: #3d3d3d;
    --light-bg: #F4F8FF;
    --border-light: #ececec;
    --text-muted: #545454;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a, button, h1, h2, h3, h4, h5, h6, input, label, li, p, select, span, td, textarea, th {
    font-family: "Outfit", sans-serif;
}

.container, .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
}

.container {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.header_warrper .container { padding-left: 5px; padding-right: 5px; }

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-top: var(--bs-gutter-y);
}

.align-items-center { align-items: center !important; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-theme { color: var(--theme-main); }
.fw-light { font-weight: 300; }
.img-fluid { max-width: 100%; height: auto; }
.p-0 { padding: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.justify-content-between { justify-content: space-between; }

.ptb-70 { padding-top: 40px; padding-bottom: 40px; }
.ptb-90 { padding-top: 90px; padding-bottom: 90px; }
.bg-cyan { background: var(--light-bg); }

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--text-muted);
}

/* ============================================
   HEADINGS & DIVIDERS
   ============================================ */
.commonheadingh2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 5px;
    color: #202020;
    position: relative;
    font-weight: 700;
}

.commonheadingh3 {
    color: #282828;
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 500;
}

.pro_title {
    font-weight: 500;
    margin-bottom: 3px;
    font-size: 20px;
    position: relative;
    display: inline-block;
    color: var(--theme-main);
}

.pro_title:before {
    content: "";
    position: absolute;
    top: 14px;
    right: -70px;
    height: 2px;
    width: 60px;
    background-color: var(--theme-main);
}

span.divider {
    display: block;
    background: var(--theme-main2);
    padding: 2px;
    max-width: 100px;
    margin: 20px auto 0;
}

.diviedCenter {
    text-align: center;
    padding-left: 10px;
    margin-bottom: 10px;
}

.diviedmy {
    display: inline-flex;
    background: var(--theme-main);
    width: 100%;
    height: 4px;
    margin: 0 auto 10px;
    max-width: 75px;
}

.diviedmy:before {
    background: #000;
    height: 4px;
    display: inline-block;
    content: "";
    width: 20px;
    left: -30px;
    position: relative;
}

.diviedCenter.white .diviedmy:before { background: #fff; }

/* ============================================
   NEW: SECTION EYEBROW / LEAD / BADGES
   ============================================ */
.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--theme-main);
    margin-bottom: 8px;
    position: relative;
    padding-left: 35px;
}
.section-eyebrow:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 2px;
    background: var(--theme-main);
    transform: translateY(-50%);
}
.text-center .section-eyebrow {
    padding-left: 0;
    display: block;
    text-align: center;
}
.text-center .section-eyebrow:before { display: none; }

.section-lead {
    font-size: 17px;
    max-width: 780px;
    margin: 0 auto 30px;
    text-align: center;
    color: var(--text-muted);
    line-height: 1.7;
}

.badge-pill {
    display: inline-block;
    background: var(--theme-main);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    line-height: 1.4;
}
.badge-pill.muted {
    background: #e8e8e8;
    color: #777;
}

/* ============================================
   HEADER
   ============================================ */
header.header_warrper.fixed {
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 999;
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}

header.header_warrper {
    z-index: 9;
    width: 100%;
    transition: .5s;
}

.header_warrper.header-light {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
}

.headerBoxPo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    gap: 30px;
    border-radius: 7px;
}

.logo_main {
    max-width: 210px;
    margin-bottom: 0;
}

.bestLead, .commonbutton {
    background: var(--theme-main);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    padding: 10px 19px 8px;
    border-radius: 96px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: .5s;
}

.bestLead:hover, .commonbutton:hover { background: #000; }

img.imgcall { position: relative; top: -1px; }
.banner_formright label, button.mobile_humbarger { display: none; }

.menuList ul li {
    display: inline-block;
    margin-right: 30px;
}
.menuList ul li:last-child { margin-right: 0; }
.menuList ul li a {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #232323;
    padding: 20px 0;
    transition: .5s;
}
.menuList li.active a, .menuList > ul > li:hover > a { color: var(--theme-main); }

.header_warrper.header-light .menuList ul li a { color: #ffffff; }
.header_warrper.header-light .menuList ul li a:hover { color: var(--theme-main); }

/* Dropdown */
ul.dropdown-menu {
    margin-top: 22px;
    position: absolute;
    width: 100%;
    z-index: 1;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-color: #f1f1f1;
    border-radius: 16px;
    pointer-events: none;
    box-shadow: 0 20px 25px 0 rgb(5 5 5 / 31%);
}
li.dropdown:hover ul.dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
li.dropdown > a:after {
    content: "\f107";
    font-family: fontawesome;
    margin-left: 6px;
}
ul.dropdown-menu li { margin: 0; text-align: center; }

/* ============================================
   HERO / BANNER SLIDER
   ============================================ */
.bannerhomeSlider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.slidersbanner {
    margin-bottom: -4px;
    position: relative;
}
.slidersbanner .swiper-wrapper:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.35) 100%);
    top: 0;
    left: 0;
    z-index: 9;
}
.slidersbanner img {
    width: 100%;
    object-fit: cover;
    min-height: 620px;
    max-height: 620px;
}
.slidersbanner .swiper-pagination { z-index: 999; bottom: 30px; }
.bannerhomeSlider span.swiper-pagination-bullet {
    background: #fff;
    width: 10px;
    height: 10px;
}

.banner_content {
    position: absolute;
    top: 50%;
    z-index: 99;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 110px;
    width: 100%;
}
.banner_content h1.title {
    font-size: 44px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.15;
    font-weight: 700;
}
.banner_content .typo {
    padding: 0 0 10px;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
}
.banner_content .locationtext {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
}
.banner_content ul.key_high { margin: 20px 0; }
.banner_content ul.key_high li {
    font-size: 17px;
    color: #fff;
    list-style: none;
    margin-bottom: 21px;
}
.banner_content ul.key_high i { margin-right: 8px; }

.startingprice {
    border-top: 2px solid rgb(238 238 238 / 31%);
    text-align: left;
    padding: 30px 0 0;
}
.startingprice .priceamount {
    font-size: 26px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 600;
}
.startingprice p { margin-bottom: 0; font-weight: 600; }
.startingprice p span.key {
    font-size: 14px;
    border: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0 auto 10px;
    padding: 0;
    display: block;
}
.startingprice span {
    border-top: 1px dashed;
    display: block;
    padding: 10px 0 0;
    font-size: 21px;
}

/* ============================================
   FEATURED PROJECT (About Developer layout)
   ============================================ */
.aboutDeveloper { background: #fff; }

.Developer_boxp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--light-bg);
    align-items: stretch;
}
.leftDeveloperImaghe {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}
.leftDeveloperImaghe img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}
.rightDeveloperbox {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rightDeveloperbox .commonheadingh2 { margin-bottom: 10px; }
.rightDeveloperbox .diviedmy {
    margin-left: 0;
    margin-bottom: 20px;
}
.aboutdeveloper { margin-top: 10px; }
.aboutdeveloper p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.75;
    color: #4a4a4a;
}
.btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.elementor-button {
    background-color: var(--theme-main);
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    border-radius: 7px;
    padding: 13px 24px;
    text-decoration: none;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: .35s;
    min-width: 150px;
    text-align: center;
}
.elementor-button:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}
.elementor-button.outline-btn {
    background: transparent;
    border: 2px solid var(--theme-main);
    color: var(--theme-main);
}
.elementor-button.outline-btn:hover {
    background: var(--theme-main);
    color: #fff;
}

/* ============================================
   INFO CARD GRIDS (Why Invest / Locations)
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.info-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
    border-color: var(--theme-main);
}
.info-card .card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(217,137,8,0.1);
    color: var(--theme-main);
    font-size: 26px;
    margin-bottom: 18px;
    transition: .35s;
}
.info-card:hover .card-icon {
    background: var(--theme-main);
    color: #fff;
}
.info-card h4 {
    font-size: 19px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 10px;
    line-height: 1.35;
}
.info-card p {
    font-size: 15px;
    color: #6a6a6a;
    margin-bottom: 0;
    line-height: 1.65;
}

/* Dark section card adjustments */
.amenities_warpper .info-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
}
.amenities_warpper .info-card h4 { color: #fff; }
.amenities_warpper .info-card p { color: #d8d8d8; }
.amenities_warpper .info-card .card-icon {
    background: rgba(217,137,8,0.18);
}
.amenities_warpper .info-card:hover {
    border-color: var(--theme-main);
    background: rgba(255,255,255,0.09);
}

.max_para {
    font-size: 17px;
    font-weight: 300;
    margin: 20px auto 20px;
    max-width: 780px;
    color: #d8d8d8;
    text-align: center;
}

/* ============================================
   DEVELOPER STRIP
   ============================================ */
.developer-strip {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 24px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 24px 28px;
    transition: .35s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.developer-strip:hover {
    border-color: var(--theme-main);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}
.developer-strip .dev-mark {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--theme-main) 0%, #b06e00 100%);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}
.developer-strip .dev-body h4 {
    font-size: 22px;
    font-weight: 700;
    color: #202020;
    margin-bottom: 4px;
}
.developer-strip .dev-body p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
    letter-spacing: 0.3px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 32px 26px 26px;
    position: relative;
    transition: .35s;
    height: 100%;
}
.testimonial-card:before {
    content: "\201C";
    position: absolute;
    top: 6px;
    left: 22px;
    font-size: 70px;
    line-height: 1;
    color: rgba(217,137,8,0.18);
    font-family: Georgia, serif;
    font-weight: 700;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
    border-color: var(--theme-main);
}
.testimonial-card .quote {
    font-size: 16px;
    line-height: 1.75;
    color: #3a3a3a;
    font-style: italic;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.testimonial-card .author {
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-main);
    margin-bottom: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-container { margin-top: 20px; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-item:first-child { border-top: 1px solid #ddd; }

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 22px 16px;
    text-align: left;
    font-size: 19px;
    font-weight: 600;
    color: #202020;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
    transition: color .3s;
}
.faq-question:hover { color: var(--theme-main); }
.faq-question .icon {
    font-size: 16px;
    transition: transform 0.3s;
    color: var(--theme-main);
    flex-shrink: 0;
}
.faq-answer {
    padding: 0 16px 18px;
    display: none;
    font-size: 16px;
    color: #333;
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question .icon { transform: rotate(180deg); }
.faq-item.active .faq-answer p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   ENQUIRE SPLIT SECTION
   ============================================ */
.enquire-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: #0b090c;
}
.enquire-split-img {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}
.enquire-split-img:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,9,12,0.55) 0%, rgba(11,9,12,0.15) 100%);
}
.enquire-split-form {
    padding: 70px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.esf-inner { width: 100%; max-width: 480px; }
.esf-inner .commonheadingh2 { margin-bottom: 12px; }
.esf-inner > p { color: #e9e9e9; margin-bottom: 26px; }

/* ============================================
   FORMS (contact + popups)
   ============================================ */
.contactBootom { position: relative; }

.contactBootom label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #3c3c3c;
}

.contactBootom .form-group input,
.contactBootom .form-group select,
.contactBootom .form-group textarea {
    border: 1px solid #a9a9a9;
    width: 100%;
    padding: 12px 14px;
    color: #2c2c2c;
    font-size: 14px;
    border-radius: 6px;
    background: #fff;
    outline: none;
    transition: border-color .3s;
}
.contactBootom .form-group input:focus,
.contactBootom .form-group select:focus,
.contactBootom .form-group textarea:focus {
    border-color: var(--theme-main);
}
.contactBootom .form-group textarea { min-height: 90px; resize: vertical; }
.contactBootom .form-group { margin-bottom: 16px; }

.form-group.contact_number {
    display: grid;
    grid-template-columns: 90px 1fr;
}
.form-group.contact_number .countryCode {
    border: 1px solid #a9a9a9;
    padding: 4px;
    border-right: 0;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    background: #fff;
    font-size: 13px;
}
.form-group.contact_number input {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.send_btn.btn {
    width: 100%;
    display: block;
    background: var(--theme-main);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    padding: 13px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: .35s;
    letter-spacing: 0.3px;
}
.send_btn.btn:hover { background: #000; }

.cta-meta {
    font-size: 13px;
    color: #cfcfcf;
    margin-top: 14px;
    margin-bottom: 0;
    line-height: 1.8;
}
.cta-meta i { color: var(--theme-main); margin-right: 4px; }

/* ============================================
   MODAL POPUP
   ============================================ */
.modal_formPoup.active { display: flex !important; }
.modal_formPoup {
    position: fixed;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 64%);
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal_formPoup .contact_usWith {
    background: #fff;
    height: auto;
    max-width: 700px;
    width: 100%;
    padding: 28px;
    border-radius: 12px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.modal_formPoup .contact_usWith .heading-style-h4 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 13px;
    margin-bottom: 20px;
    font-size: 24px;
    color: #202020;
}
button.close_popup {
    position: absolute;
    right: 20px;
    top: 20px;
    background: 0 0;
    border: 1px solid #9b9b9b;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 0;
    cursor: pointer;
    transition: .35s;
    color: #333;
}
button.close_popup:hover {
    background: var(--theme-main);
    color: #fff;
    border-color: var(--theme-main);
}
.text-end { text-align: right; }

/* ============================================
   SIDE FIX BUTTONS
   ============================================ */
.left-fix, .right-fix {
    position: fixed;
    top: 50%;
    right: -66px;
    z-index: 999;
    transform: rotate(-90deg);
}
.left-fix { left: -69px; right: inherit; }

.verticlebutton {
    background: #000;
    color: #fff;
    min-width: 170px;
    display: inline-block;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: .5s;
    font-weight: 500;
    font-size: 14px;
}
.right-fix a { border-radius: 8px 8px 0 0; }
.verticlebutton:hover { background: var(--theme-main); }

/* ============================================
   SIDEBAR CONTACT WIDGET
   ============================================ */
.sidebar-contact {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    align-items: flex-start;
    transition: .4s;
}
.sidebar-contact .sc-toggle {
    background: var(--theme-main);
    color: #fff;
    writing-mode: vertical-rl;
    padding: 16px 8px;
    border-radius: 8px 0 0 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
}
.sidebar-contact .sc-panel {
    width: 300px;
    background: #fff;
    box-shadow: -8px 0 30px rgba(0,0,0,0.12);
    padding: 22px;
    border-radius: 0 0 0 12px;
    margin-right: -300px;
    transition: margin .4s ease;
}
.sidebar-contact.open .sc-panel { margin-right: 0; }
.sidebar-contact .sc-panel h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #202020;
}
.sidebar-contact .sc-sub {
    font-size: 13px;
    color: #777;
    margin-bottom: 14px;
}
.sidebar-contact form .form-group { margin-bottom: 10px; }
.sidebar-contact form input,
.sidebar-contact form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #c4c4c4;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
}
.sidebar-contact form input:focus { border-color: var(--theme-main); }

/* ============================================
   MOBILE BOTTOM BAR
   ============================================ */
.city-filter-fixedMobile {
    position: fixed;
    bottom: 1px;
    width: 100%;
    z-index: 99999;
    display: none;
}
.city-filter-fixedMobile ul { display: flex; }
.city-filter-fixedMobile ul li {
    width: 100%;
    text-align: center;
    list-style: none;
}
.city-filter-fixedMobile ul li a {
    text-decoration: none;
    background: #525252;
    width: 100%;
    display: block;
    padding: 12px 6px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}
.city-filter-fixedMobile ul li a i { padding-right: 4px; }
.city-filter-fixedMobile ul li.WhatsAppicon a { background: #075e54; }
.city-filter-fixedMobile ul li.callicon a { background: var(--theme-main); }

/* ============================================
   FOOTER
   ============================================ */
footer.footerwarp {
    background: #d1d1d1;
    padding: 60px 30px 24px;
}
footer.footerwarp h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}
footer.footerwarp p {
    color: #2b2b2b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}
footer.footerwarp p a {
    color: #2b2b2b;
    text-decoration: none;
    transition: .3s;
}
footer.footerwarp p a:hover { color: var(--theme-main); }
footer.footerwarp .inner-footer-bottom {
    border-top: 1px solid #bbb;
    padding-top: 20px;
    margin-top: 30px;
}
footer.footerwarp .inner-footer-bottom p {
    font-size: 13px;
    color: #4a4a4a;
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) {
    .container, .container-md, .container-sm { max-width: 720px; }
    .col-md-3 { flex: 0 0 auto; width: 25%; }
    .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
    .col-md-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-md-6 { flex: 0 0 auto; width: 50%; }
    .col-md-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
    .col-md-12 { flex: 0 0 auto; width: 100%; }
}
@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm { max-width: 960px; }
    .col-lg-3 { flex: 0 0 auto; width: 25%; }
    .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
    .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-lg-6 { flex: 0 0 auto; width: 50%; }
    .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl { max-width: 1150px; }
}
@media (min-width: 1350px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl { max-width: 1280px; }
}

@media (max-width: 1299px) {
    .logo_main { max-width: 180px; }
    .menuList ul li { margin-right: 22px; }
    .banner_content h1.title { font-size: 38px; }
}

@media (max-width: 1199px) {
    header.header_warrper {
        z-index: 9999;
        position: relative;
        overflow: hidden;
    }
    .mobile_humbarger {
        width: 60px;
        height: 47px;
        transition-duration: .5s;
        display: block !important;
        position: relative;
        background: 0 0;
        border: none;
        padding: 0;
        margin-right: -10px;
        margin-top: -12px;
    }
    .mobile_humbarger span,
    .mobile_humbarger span:after,
    .mobile_humbarger span:before {
        position: absolute;
        width: 40px;
        height: 4px;
        background-color: #212121;
        transition-duration: .5s;
        left: 0;
        border-radius: 2px;
    }
    .header-light .mobile_humbarger span,
    .header-light .mobile_humbarger span:after,
    .header-light .mobile_humbarger span:before {
        background-color: #ffffff;
    }
    .mobile_humbarger span { top: 22px; }
    .mobile_humbarger span:before { content: ""; top: -12px; }
    .mobile_humbarger span:after { content: ""; top: 12px; }
    .mobile_humbarger.open span { background: 0 0; }
    .mobile_humbarger.open span:before {
        transform: rotateZ(45deg) scaleX(1.1) translate(3px, 9px);
    }
    .mobile_humbarger.open span:after {
        transform: rotateZ(-45deg) scaleX(1.1) translate(9px, -9px);
    }
    .loginHeader {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .menubar {
        position: fixed;
        left: 0;
        width: 100%;
        top: 0;
        height: 100%;
        background: #fff;
        min-height: 100vh;
        padding-top: 90px;
        display: none;
    }
    header.header_warrper.active .menubar { display: block; }
    .menuList ul li { display: block; }
    .menuList ul li a {
        display: block;
        border-bottom: 1px solid #d3d3d3;
        padding: 14px 30px;
        text-align: left;
        color: #232323 !important;
    }
    header.header_warrper.active .logo_main {
        position: fixed;
        z-index: 9;
        left: 30px;
        top: 30px;
    }
    header.header_warrper.active .loginHeader {
        position: fixed;
        right: 30px;
        top: 15px;
    }
    ul.dropdown-menu {
        margin-top: 0;
        position: relative;
        box-shadow: none !important;
        padding: 0;
        left: 0;
        display: none;
        visibility: visible;
        opacity: 1;
    }
    ul.dropdown-menu.grid-box.show { display: block !important; }

    .Developer_boxp { grid-template-columns: 1fr; }
    .leftDeveloperImaghe { min-height: 320px; }
    .rightDeveloperbox { padding: 40px 35px; }
    .enquire-split { grid-template-columns: 1fr; }
    .enquire-split-img { min-height: 320px; }
    .enquire-split-form { padding: 50px 35px; }
    .sidebar-contact { display: none; }
}

@media (max-width: 991px) {
    .banner_content h1.title { font-size: 32px; }
    .banner_content .typo { font-size: 19px; }
    .startingprice p span.key { font-size: 12px; }
    .startingprice .priceamount { font-size: 22px; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
    .developer-strip { grid-template-columns: 80px 1fr; }
    .developer-strip .dev-mark { width: 70px; height: 70px; font-size: 22px; }
    .developer-strip > div:last-child { grid-column: 1 / -1; }
    .developer-strip > div:last-child .elementor-button { width: 100%; }
    .commonheadingh2 { font-size: 30px; }
    .commonheadingh3 { font-size: 26px; }
    .slidersbanner img { min-height: 500px; max-height: 500px; }
    .ptb-70 { padding-top: 50px; padding-bottom: 50px; }
}

@media (max-width: 767px) {
    .slidersbanner img { min-height: 420px; max-height: 480px; }
    .slidersbanner .swiper-wrapper:before {
        background: linear-gradient(to bottom, rgba(0,0,0,0.85) 10%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.35) 100%);
    }
    .banner_content {
        max-width: 100%;
        position: relative;
        top: 0 !important;
        transform: inherit;
        left: 0;
        padding: 40px 0 30px;
    }
    .left-fix, .right-fix { display: none; }
    .banner_content h1.title { font-size: 30px; color: var(--theme-main); }
    .banner_content .typo { color: #2d2d2d; }
    .banner_content .locationtext { color: #121212; font-size: 16px; }
    .banner_content ul.key_high li {
        color: #000;
        background: #e3e3e3;
        padding: 10px 12px;
        border-radius: 6px;
        font-size: 15px;
        margin-bottom: 10px;
    }
    .startingprice { border-top: 2px solid rgb(149 149 149 / 31%); padding: 20px 0 0; }
    .startingprice .priceamount { color: #000; font-size: 22px; }
    .card-grid, .card-grid.cols-4 { grid-template-columns: 1fr; gap: 16px; }
    .developer-strip { padding: 20px; }
    .btn-row { flex-direction: column; }
    .btn-row .elementor-button { width: 100%; }
    .faq-question { font-size: 17px; padding: 18px 10px; }
    .enquire-split-form { padding: 40px 22px; }
    footer.footerwarp { padding: 40px 8px 60px; }
    footer.footerwarp .col-md-4 { margin-bottom: 24px; }
}

@media (max-width: 600px) {
    .commonheadingh2 { font-size: 26px; }
    .commonheadingh3 { font-size: 22px; }
    .bestLead { display: none; }
    .city-filter-fixedMobile { display: block; }
    .developer-strip { grid-template-columns: 1fr; text-align: center; }
    .developer-strip .dev-mark { margin: 0 auto; }
    .section-lead { font-size: 15px; }
    .info-card { padding: 24px 18px; }
    .info-card h4 { font-size: 17px; }
    .testimonial-card { padding: 26px 20px 20px; }
}

@media (max-width: 480px) {
    .slidersbanner img { min-height: 340px; max-height: 400px; }
    .banner_content h1.title { font-size: 26px; }
    .banner_content .typo { font-size: 17px; }
    .banner_content .locationtext { font-size: 14px; }
    .startingprice .priceamount { font-size: 20px; }
    .startingprice span { font-size: 17px; }
    .logo_main { max-width: 200px; }
    .mobile_humbarger { margin-right: -20px; }
    .modal_formPoup .contact_usWith { padding: 20px; }
    .modal_formPoup .contact_usWith .heading-style-h4 { font-size: 20px; }
    button.close_popup { right: 10px; top: 10px; width: 30px; height: 30px; font-size: 18px; }
    .city-filter-fixedMobile ul li a { font-size: 13px; padding: 11px 4px; }
    .city-filter-fixedMobile ul li a i { padding-right: 2px; }
    p { font-size: 15px; }
    footer.footerwarp p { font-size: 13px; }
}

@media (max-width: 350px) {
    .logo_main { max-width: 180px; }
    .banner_content h1.title { font-size: 22px; }
    .commonheadingh2 { font-size: 22px; }
    .city-filter-fixedMobile ul li a { font-size: 12px; }
}