* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: var(--second-font);
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: Lora;
    font-display: swap;
    src: url("../fonts/Lora/Lora-Regular.ttf");
}

@font-face {
    font-family: Rubik;
    font-display: swap;
    src: url("../fonts/Rubik/Rubik-Regular.ttf");
}

:root {
    --primary-theme: #E8541A;
    --primary-hover: #F07845;
    --primary-tint: #FDF1EC;
    --secondary-theme: #1E2B2E;
    --secondary-hover: #2C3E42;
    --text-white: #fff;
    --text-black: #000;
    --first-font: "Lora";
    --second-font: "Rubik";
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
}

input:focus-visible {
    outline: none;
}

textarea:focus-visible {
    outline: none;
}

body {
    background-color: var(--text-white);
}

a {
    text-decoration: none !important;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style-type: none;
}

.animated-price {
    font-weight: bold;
    color: rgb(255, 255, 255);
}

@keyframes colorChange {
    0% { color: rgb(255, 255, 255); }
    50% { color: #F07845; }
    100% { color: rgb(255, 255, 255); }
}

.button {
    background-color: #fff;
    color: var(--secondary-theme);
    font-size: 20px;
    line-height: 24px;
    padding: 10px 25px;
    border-radius: 4px;
    display: inline-block;
    border: 1.5px solid var(--primary-theme);
    transition: background 0.25s, color 0.25s;
    cursor: pointer;
}

.button:hover {
    background-color: var(--primary-theme);
    border-color: var(--primary-theme);
    color: #fff;
}

/* ─── HEADER ─────────────────────────────────────────── */
.header {
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 9999;
    transition: 0.3s;
}

.header.scrolled {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.header.scrolled .navbar-brand img {
    filter: unset;
}

.menu-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    transition: color 0.3s;
}

.menu-btn.scrolled {
    color: rgb(51, 51, 51);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: background-color 0.3s;
}

.hamburger.scrolled div {
    background-color: var(--secondary-theme);
}

.logo img {
    max-width: 150px;
    transition: 0.3s;
    padding: 4px 0px;
}

.header .logo img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(65deg) brightness(97%) contrast(106%);
    max-width: 165px;
}

.header.scrolled a.navbar-brand {
    filter: brightness(0) saturate(100%) invert(20%) sepia(12%) saturate(352%) hue-rotate(148deg) brightness(97%) contrast(87%);
}

.phone-email {
    animation: 1.2s ease 0s infinite normal none running mobile;
}

.phone-email .button {
    background: var(--primary-theme);
    border-color: var(--primary-theme);
    font-size: 14px;
    color: white;
}

.phone-email .button:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
}

.phone-email img {
    height: 34px;
}

.phone-email h4 a {
    color: #F07845;
    margin-left: 5px;
    font-size: 16px;
    font-weight: 600;
}

.phone-email h4 a i {
    filter: invert(0);
}

.phone-email.scrolled h4 a {
    color: var(--secondary-theme);
}

.phone-email.scrolled {
    background: transparent;
    border: none;
}

.phone-email.scrolled img {
    filter: brightness(0);
}

/* ─── SIDEBAR ─────────────────────────────────────────── */
.sidebar {
    position: fixed;
    top: 0px;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--secondary-theme);
    transition: left 0.3s;
    z-index: 9999;
}

.sidebar.open {
    left: 0px;
}

.sidebar .sidebar_logo {
    max-width: 170px;
    position: relative;
    top: 17px;
}

.menu-items {
    list-style: none;
    padding-top: 80px;
}

.menu-items li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.menu-items a {
    display: block;
    color: #fff;
    padding: 20px 30px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.2s, padding-left 0.2s;
}

.menu-items a:hover {
    background-color: var(--secondary-theme);
    color: #fff !important;
    padding-left: 38px;
}

.overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 150;
}

.overlay.show {
    display: block;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 42px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ─── BANNER / SLIDER ─────────────────────────────────── */
.carousel-item img {
    height: 100vh;
    width: 100%;
}

.slider_section {
    position: relative;
}

.slider_section::after {
    content: "";
    position: absolute;
    z-index: 8;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.62) 0%, rgba(1,19,27,0.27) 82%);
    opacity: 1;
    width: 100% !important;
}

.project_box {
    position: absolute;
    bottom: 12%;
    left: 2%;
    z-index: 99;
}

.project_box .pro_logo {
    max-width: 300px;
    margin-bottom: 12px;
    filter: invert(1);
}

.invest_in {
    display: none;
}

.project_box h1 {
    font-family: var(--first-font);
    font-size: 58px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    letter-spacing: 2px;
}

.project_box p {
    font-size: 20px;
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
}

.project_box p img {
    filter: invert(1);
    margin-right: 5px;
}

.project_box h4 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.project_box h3 {
    font-size: 26px;
    color: var(--text-white);
    margin-bottom: 14px;
}

.project_box h3 span {
    font-size: 28px;
    margin-top: 8px;
    display: inline-block;
    color: var(--text-white);
}

.project_box ul {
    padding: 0px;
    margin: 0px;
    align-items: center;
}

.project_box ul li {
    font-size: 16px;
    margin-bottom: 5px;
    color: rgb(255, 255, 255);
}

.project_box ul li img {
    max-width: 24px;
    margin-right: 5px;
}

.project_box ul li span {
    display: block;
    font-size: 24px;
    font-weight: 600;
}

.carousel-indicators [data-bs-target] {
    height: 5px;
}

/* ─── SLIDE FORM ─────────────────────────────────────── */
.form_section h6 {
    font-size: 19px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-white);
}

.form_section input {
    width: 100%;
    padding: 8px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--text-white);
    background: transparent;
    border-radius: 0px;
    color: var(--text-white);
}

.form_section input::placeholder {
    color: var(--text-white);
}

.form_section .lg_btn {
    background: rgb(255, 255, 255);
    color: var(--secondary-theme);
}

.form-toggle-btn {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: var(--secondary-theme);
    color: var(--text-white);
    padding: 12px 7px;
    border-radius: 4px 0px 0px 4px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
    writing-mode: vertical-lr;
    letter-spacing: 1px;
    border: 1px solid var(--secondary-theme);
}

.form-toggle-btn:hover {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
    color: white;
}

.slide-form {
    position: fixed;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: var(--secondary-theme);
    padding: 24px;
    border-radius: 20px 0px 0px 20px;
    max-width: 350px;
    width: 100%;
    transition: right 0.4s;
}

.slide-form.active {
    right: 0px;
}

.form-close-btn {
    position: absolute;
    top: -10px;
    right: 9px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 34px;
    cursor: pointer;
}

.carousel-indicators {
    z-index: 999;
}

/* ─── PROJECT HIGHLIGHTS BAR ──────────────────────────── */
.project-highlights {
    background: var(--secondary-theme);
    color: rgb(255, 255, 255);
    position: relative;
    width: 88%;
    display: flex;
    margin: 0px auto;
    top: 10px;
    z-index: 2;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 16px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px !important;
}

.project-highlights ul li b {
    color: var(--primary-hover);
}

/* ─── OVERVIEW ────────────────────────────────────────── */
.overview_section {
    padding: 80px 0px;
}

.section_title {
    font-family: var(--first-font);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    color: var(--secondary-theme);
}

.subheading {
    font-family: var(--second-font);
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
    text-transform: capitalize;
    color: var(--secondary-theme);
    letter-spacing: 1px;
}

.overview_section .para {
    font-size: 16px;
    margin-bottom: 0px;
    text-align: justify;
    text-align-last: center;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 2rem;
    place-items: center;
}

.overview-item {
    text-align: center;
    padding: 1.25rem;
}

.icon {
    font-size: 3rem;
    color: var(--primary-theme);
    margin-block-end: 1rem;
}

.icon img {
    width: 50px;
    height: 50px;
}

.label {
    color: var(--text-black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-block-end: 0.5rem;
}

.value {
    color: rgb(51, 51, 51);
    font-weight: 500;
    font-size: 1.125rem;
}

/* ─── HIGHLIGHT ───────────────────────────────────────── */
.highlight_section {
    padding: 80px 0px;
    position: relative;
    background: url("../img/banner/banner2.webp") 0% 0% / cover no-repeat fixed;
    z-index: 1;
    overflow-x: hidden !important;
}

.highlight_section::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.highlight_section .section_title {
    position: relative;
    z-index: 999;
    color: var(--text-white);
}

.highlight_section .subheading {
    position: relative;
    z-index: 999;
    color: var(--text-white);
    margin-bottom: 30px;
}

.feature-card-wrapper {
    position: relative;
    padding: 3px;
    border-radius: 15px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 20px;
    border: none;
    height: 169px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 2;
    min-height: 150px;
}

.feature-card:hover {
    box-shadow: rgba(0, 0, 0, 0.18) 0px 10px 30px;
    transform: translateY(-4px);
}

.feature-card-wrapper::before,
.feature-card-wrapper::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(30,43,46,0.25);
    z-index: 1;
}

.feature-card-wrapper::before {
    top: 0px;
    left: 0px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 15px;
}

.feature-card-wrapper::after {
    bottom: 0px;
    right: 0px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary-theme);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.feature-icon span {
    color: white;
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-theme);
    margin-bottom: 7px;
}

.feature-description {
    color: var(--secondary-theme);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0px;
    text-transform: capitalize;
}

/* ─── PRICE LIST ──────────────────────────────────────── */
.price_list_section {
    padding: 80px 0px;
    overflow-x: hidden !important;
}

.price_list_section .calling {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.price_box {
    background: var(--text-white);
    padding: 30px 15px;
    box-shadow: rgba(30, 43, 46, 0.18) 0px 5px 24px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 8px;
    border-top: 3px solid rgba(232,84,26,0.35);
    transition: transform 0.3s, box-shadow 0.3s;
}

.price_box:hover {
    box-shadow: rgba(30, 43, 46, 0.28) 0px 14px 36px;
    transform: translateY(-6px);
}

.price_box h5 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-theme);
}

.price_box h6 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-theme);
}

.price_box p {
    font-size: 22px;
    margin-bottom: 15px;
}

.price_box p span {
    font-size: 30px;
    color: var(--primary-theme);
    font-weight: 700;
}

.price_box .button {
    font-size: 18px;
    line-height: 21px;
    padding: 7px 25px;
}

/* ─── AMENITIES ───────────────────────────────────────── */
.amenities_section {
    padding: 80px 0px;
    background: var(--secondary-theme);
    overflow: hidden;
}

.amenities_section ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.amenities_section .amenity_list {
    display: flex;
    flex-direction: column;
}

.amenities_section ul .amenity-box {
    background: rgb(249, 249, 249);
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    margin: 10px;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.amenities_section ul .amenity-box:hover {
    transform: translateY(-4px);
}

.amenity-box .overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(30, 43, 46, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
}

.amenity-box:hover .overlay {
    opacity: 1;
}

.col-4.align-self-center.pe-0.d_view .amenity_list .amenity-box:first-child .overlay {
    opacity: 1;
    pointer-events: none;
}

.amenities_section ul .amenity-box .overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: unset;
}

.amenities_section ul .amenity-box span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    padding-top: 10px;
    color: var(--secondary-theme);
}

.amenity-box .overlay span {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    z-index: 2;
    padding: 5px 10px;
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;
}

/* ─── DECISION CORNER ─────────────────────────────────── */
.decision_corner {
    position: relative;
    padding: 80px 0px;
    overflow: hidden;
}

.decision_corner::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url("../img/banner/banner2.webp") fixed;
    filter: blur(1px);
    z-index: 1;
}

.decision_corner > .container {
    position: relative;
    z-index: 2;
}

.decision_corner::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(30,43,46,0.75), rgba(30,43,46,0.55));
    z-index: 1;
}

.decision_corner .section_title {
    color: var(--text-white);
}

.decision_corner .subheading {
    color: rgba(255,255,255,0.85);
}

.flex_div {
    display: flex;
    justify-content: center;
}

.boxes {
    padding: 15px;
    text-align: center;
}

.title {
    font-size: 17px;
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
    color: var(--text-white);
}

/* ─── FLOOR PLAN ──────────────────────────────────────── */
.floor_section {
    padding: 80px 0px;
}

.floor_section .nav.nav-tabs {
    justify-content: center;
    border-bottom: 0px;
    gap: 20px;
    margin-top: 20px;
}

.floor_section .nav-tabs .nav-link {
    background-color: #f4f4f4;
    border-radius: 4px;
    width: 230px;
    color: var(--secondary-theme) !important;
    padding: 10px 30px !important;
    border: 1px solid #ccc !important;
    font-weight: 500;
    transition: background 0.25s;
}

.floor_section .nav-tabs .nav-link.active {
    background-color: var(--secondary-theme);
    border-color: var(--secondary-theme) !important;
    box-shadow: rgba(30,43,46,0.3) 1px 1px 9px;
    color: rgb(255, 255, 255) !important;
}

.floor_section .tab-content {
    margin-top: 30px;
}

.floor_section .tab-content h5 {
    font-size: 20px;
    margin-bottom: 0px;
    text-align: center;
    background: var(--secondary-theme);
    padding: 14px 0px;
    color: var(--text-white);
    border-radius: 4px;
}

.floor_section .floor_image {
    background: var(--text-white);
    padding: 20px;
    border-radius: 20px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.13) 4px 4px 10px 4px;
    margin-top: 10px;
}

.floor_section .floor_image span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    cursor: pointer;
    background: var(--secondary-theme);
    padding: 10px 12px;
    color: var(--text-white);
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.25s;
}

.floor_section .floor_image span:hover {
    background: var(--secondary-hover);
}

/* ─── LOCATION ────────────────────────────────────────── */
.location_section {
    padding: 80px 0px 40px;
    background: var(--secondary-theme);
    position: relative;
    overflow: hidden;
}

.location-container {
    position: relative;
    max-width: 1200px;
    margin: 0px auto;
    height: 550px;
}

.central-logo {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 25px;
    z-index: 10;
}

.location-point {
    position: absolute;
    padding: 12px 0px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 5;
    width: 255px;
}

.location-point img {
    max-width: 16px;
    filter: invert(1);
}

.location-point.left {
    text-align: right;
    left: 0px;
    color: white;
}

.location-point.right {
    text-align: left;
    right: 0px;
    color: white;
}

.location-name {
    display: block;
    margin-bottom: 2px;
}

.location-time {
    font-size: 16px;
    font-weight: bold;
    color: rgba(255,255,255,0.75);
}

.connecting-line {
    position: absolute;
    border-top: 2px dotted rgba(255,255,255,0.2);
    z-index: 1;
}

.vertical-line {
    position: absolute;
    border-left: 2px dotted rgba(255,255,255,0.2);
    z-index: 1;
}

.location-1 { top: 60px; left: 0px; }
.location-2 { top: 180px; left: 158px; }
.location-3 { top: 320px; left: 161px; }
.location-4 { top: 450px; left: 137px; }
.location-5 { top: 65px; right: 115px; }
.location-6 { top: 185px; right: 100px; }
.location-7 { top: 329px; right: 49px; }
.location-8 { top: 454px; right: 67px; }

.line-1 { top: 92px; left: 285px; width: 210px; }
.line-2 { top: 220px; left: 285px; width: 200px; }
.line-3 { top: 362px; left: 286px; width: 210px; }
.line-4 { top: 492px; left: 283px; width: 185px; }
.line-5 { top: 92px; left: 702px; width: 210px; }
.line-6 { top: 220px; left: 727px; width: 189px; }
.line-7 { top: 362px; left: 703px; width: 213px; }
.line-8 { top: 492px; left: 700px; width: 222px; }

.v-line-left { left: 500px; top: 92px; height: 400px; }
.v-line-right { right: 500px; top: 92px; height: 400px; }

/* ─── GALLERY ─────────────────────────────────────────── */
.gallery_section {
    padding: 80px 0px 120px;
    position: relative;
    overflow: hidden;
}

.center-slider .gallery-card {
    background-color: var(--secondary-theme);
    border-radius: 10px;
    padding: 3px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.center-slider .gallery-card span {
    position: absolute;
    bottom: 10px;
    right: 2%;
    font-size: 10px;
    color: var(--text-white);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 5px;
}

.center-slider .gallery-card img {
    width: 100%;
    border-radius: 10px;
    height: 320px;
    object-fit: cover;
}

.center-slider .slick-slide {
    margin: 0px 10px;
}

.slide-arrow6.prev-arrow6,
.slide-arrow6.next-arrow6 {
    position: absolute;
    bottom: -50px;
    z-index: 10;
    background: var(--secondary-theme);
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
    height: 44px;
    width: 44px;
    text-align: center;
}

.slide-arrow6.prev-arrow6 { right: 70px; }
.slide-arrow6.next-arrow6 { right: 10px; }

.slide-arrow6:hover {
    background: var(--secondary-theme);
}

/* ─── ABOUT BUILDER ───────────────────────────────────── */
.about_builder {
    padding: 80px 0px;
    background-image: url("../img/about_builder.webp");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;
    overflow-x: hidden !important;
}

.about_builder::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(30, 43, 46, 0.78);
    z-index: -1;
}

.about_builder h5 {
    font-size: 35px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-white);
    text-align: left;
}

.about_builder p {
    font-size: 17px;
    margin-bottom: 0px;
    text-align: justify;
    color: rgba(255,255,255,0.9);
}

.about_builder .footer_form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 28px;
    max-width: 450px;
    border-radius: 12px;
    margin-left: auto;
    backdrop-filter: blur(6px);
}

.about_builder .footer_form h6 {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
    color: white;
}

.about_builder .footer_form input {
    width: 100%;
    padding: 8px 10px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    background: transparent;
    color: white;
}

.about_builder .footer_form input::placeholder {
    color: rgba(255,255,255,0.6);
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
    padding: 70px 0px;
    background: #f9f6f4;
}

footer .disclaimer p {
    color: var(--text-black);
    font-size: 13px;
    margin-bottom: 10px;
}

footer .disclaimer .moreless-button {
    color: var(--secondary-theme);
    font-size: 13px;
    font-weight: 500;
}

footer .rera_details p {
    color: var(--text-black);
    font-size: 13px;
    margin: 10px 0px;
}

footer .rera_details a {
    color: var(--secondary-theme);
}

footer .rera_details a:hover {
    text-decoration: underline !important;
}

/* ─── MODAL ───────────────────────────────────────────── */
.modal .modal-header {
    border-bottom: 1px solid rgba(30,43,46,0.2);
}

.modal .btn-close {
    opacity: 1;
}

.modal .modal-header h6 {
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
    color: var(--secondary-theme);
}

.modal input {
    width: 100%;
    padding: 8px 10px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0px;
    border-bottom: 1px solid var(--secondary-theme);
    height: 40px;
}

.modal .form-control:focus {
    color: rgb(33, 37, 41);
    background-color: var(--text-white);
    border-color: var(--secondary-theme);
    outline: 0px;
    box-shadow: none;
}

.modal input::placeholder {
    color: rgb(0, 0, 0);
}

.modal .inp-box {
    margin-bottom: 12px;
}

/* ─── FIXED ICONS ─────────────────────────────────────── */
.fixedIcons {
    position: fixed;
    z-index: 99;
    bottom: 15px;
    padding: 5px;
    background: rgb(255, 252, 241);
    border-radius: 50%;
    animation: 1.25s cubic-bezier(0.66, 0, 0, 1) 0s infinite normal none running pulse;
    box-shadow: rgba(41, 167, 26, 0) 0px 0px 0px 0px;
}

.fixedIcons.whatsapp { left: 15px; }
.fixedIcons.phone { right: 15px; background: var(--text-white); }
.fixedIcons img { width: 40px; padding: 5px; }

/* ─── MOBILE FOOTER BAR ───────────────────────────────── */
.mobile-section-footer {
    display: none;
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    background: var(--secondary-theme);
    color: var(--text-white);
    padding: 5px 0px;
}

.d_view { display: block; }
.m_view { display: none; }

.project_box .all_inc {
    font-size: 16px;
}

.price_list_section .subheading_inclu {
    font-size: 18px;
    text-align: center;
    margin-bottom: 0px;
}

#carouselExampleIndicators1 .carousel-item img {
    height: unset;
}

/* ─── SECTION TITLE OVERRIDES ─────────────────────────── */
.overview_section .section_title,
.overview_section .subheading,
.gallery_section .section_title,
.gallery_section .subheading,
.floor_section .section_title,
.floor_section .subheading,
.price_list_section .section_title,
.price_list_section .subheading {
    color: var(--secondary-theme);
}

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes pulse {
    100% {
        box-shadow: rgba(255, 232, 160, 0) 0px 0px 0px 20px;
    }
}

@keyframes mobile {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scale3d(1.05, 1.05, 1.05); }
}

.about_builder input {
    overflow: hidden;
}

.about_builder .iti__country.iti__standard.iti__highlight,
.about_builder .iti .iti__selected-dial-code{
    color: white;
}

.amenities_section .section_title,
.amenities_section .subheading,
.location_section .section_title,
.location_section .subheading
{
    color: white;
}

/* ─── 1480px ──────────────────────────────────────────── */
@media (max-width: 1480px) {
    .project_box {
        bottom: 16%;
        left: 4%;
    }

    .project_box h1 {
        font-size: 38px;
        letter-spacing: 1px;
    }

    .value {
        font-size: 20px;
    }
}

/* ─── 1366px ──────────────────────────────────────────── */
@media (max-width: 1366px) {
    .slick-slide img {
        max-width: 350px;
    }

    .line-5 { left: 617px; }
    .line-6 { left: 640px; }
    .line-7 { left: 613px; }
    .line-8 { left: 610px; }

    .fixedIcons.phone { right: 10px; }
    .fixedIcons img { width: 40px; }

    .amenities_section ul .amenity-box {
        padding: 25px;
        margin: 10px 5px;
        min-width: 160px;
    }
}

.slide-arrow6.next-arrow6 img,
.slide-arrow6.prev-arrow6 img{
    filter:brightness(0.5) invert(1)
}

/* ─── 767px (mobile) ──────────────────────────────────── */
@media (max-width: 767px) {
    .d_view { display: none; }
    .m_view { display: block; }

    .invest_in {
        display: block;
        font-size: 25px;
        color: var(--secondary-theme);
        margin-bottom: 6px;
        font-family: var(--first-font);
        font-weight: 700;
    }

    .carousel-indicators { z-index: 9; }

    .menu-items { padding-top: 40px; }

    .logo img {
        max-width: 140px;
        width: 100% !important;
    }

    .header .menu-btn span { display: none; }

    .navbar-brand {
        padding-top: 0px;
        padding-bottom: 0px;
        margin-right: 0px;
    }

    .nav-item .nav-link {
        margin-bottom: 0px;
        text-align: center;
    }

    .phone-email { display: none !important; }

    .navbar-toggler:focus { box-shadow: none; }

    .carousel-inner img {
        min-height: 305px;
    }

    .carousel-item img {
        height: auto;
        width: 100%;
        object-fit: cover;
        min-height: 305px;
    }

    .slider_section .project_box {
        position: unset;
        padding: 20px 0px;
        text-align: center;
    }

    .carousel-indicators { bottom: 58%; }

    .slider_section .form_section {
        position: unset;
        width: 100%;
        border-radius: 0px;
        transform: unset;
        max-width: 100%;
    }

    .slider_section::after {
        background: none;
        width: unset;
        position: unset;
    }

    .project_box h1 {
        font-size: 25px;
        margin-bottom: 10px;
        color: var(--secondary-theme);
    }

    .project_box p {
        margin-bottom: 8px;
        color: var(--secondary-theme);
        font-size: 18px;
    }

    .project_box h3 {
        color: var(--secondary-theme);
        font-size: 27px;
    }

    .project_box h3 span {
        font-size: 25px;
        color: var(--secondary-theme);
    }

    .project_box h3 span .animated-price {
        color: var(--primary-theme);
    }

    .project_box p img { filter: unset; }

    .project_box ul li {
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 3px;
        color: var(--secondary-theme);
        text-align: left;
        display: flex;
        align-items: start;
        justify-content: start;
    }

    .project_box ul {
        width: 85%;
        margin: 0px auto;
    }

    .project_box ul li img {
        width: 18px;
        filter: unset;
    }

    .feature-description {
        color: var(--secondary-theme);
        font-size: 13px;
        font-weight: 600;
        line-height: 1.6;
        margin-bottom: 0px;
    }

    .form-close-btn { display: none; }
    .form-toggle-btn { display: none; }

    .section_title {
        font-size: 22px;
    }

    .subheading {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .overview_section { padding: 50px 0px; }

    .overview-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0rem;
    }

    .overview-item {
        text-align: center;
        padding: 8px 4px;
        width: 50%;
    }

    .label {
        font-size: 0.75rem;
        letter-spacing: 0px;
    }

    .highlight_section { padding: 50px 0px; }

    .feature-card {
        padding: 14px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        display: flex;
        text-align: center;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .price_box {
        max-width: 350px;
        margin: 0px auto 20px;
    }

    .price_list_section { padding: 50px 0px; }

    .amenities_section { padding: 50px 0px; }

    .amenities_section ul {
        min-height: 330px;
        overflow-y: scroll;
        height: 330px;
    }

    .amenities_section ul .amenity-box {
        padding: 7px;
        margin: 7px;
        min-width: unset;
        width: 150px;
        z-index: 9;
    }

    .amenities_section ul .amenity-box img { max-width: 50px; }
    .amenities_section ul .amenity-box .overlay img { max-width: 100%; }

    .amenities_section ul .amenity-box span {
        font-size: 16px;
        color: var(--secondary-theme);
    }

    .col-12.m_view ul .amenity-box:first-child .overlay {
        opacity: 1;
        pointer-events: none;
    }

    .amenities_section ul .amenity-box .overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        filter: unset;
    }

    .amenity-box .overlay span {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 18px;
        font-weight: 600;
        color: rgb(255, 255, 255);
        z-index: 2;
        padding: 5px 10px;
        border-radius: 6px;
        text-align: center;
        white-space: nowrap;
    }

    .floor_section { padding: 50px 0px; }

    .floor_section .nav.nav-tabs {
        margin-top: 10px;
        gap: 15px;
    }

    .floor_section .nav-tabs .nav-link {
        width: 140px;
        padding: 10px !important;
    }

    .floor_section .floor_image { margin-bottom: 15px; }

    .floor_section .tab-content h5 { padding: 8px 0px; }

    .decision_corner { padding: 50px 0px; }

    .decision_corner .subheading { font-size: 13px; }

    .title { font-size: 12px; }

    .gallery_section { padding: 50px 0px 80px; }

    .slide-arrow6.next-arrow6 { right: 36%; }
    .slide-arrow6.prev-arrow6 { right: 51%; }

    .about_builder { padding: 50px 0px; }

    .about_builder h5 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .about_builder p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .form_section.slide-form .button { padding: 10px 40px; }

    footer { padding: 50px 0px 70px; }

    .footer_form .button { padding: 10px 40px; }

    .location_section { padding: 50px 0px; }

    .location-container { height: auto; }

    .central-logo {
        position: unset;
        transform: unset;
        width: 100%;
        box-shadow: none;
        border-radius: 0px;
    }

    .central-logo img { border-radius: 0px !important; }

    .location-point {
        position: unset;
        text-align: left;
        z-index: 999;
        padding: 0px 0px 10px;
        width: 100%;
    }

    .location-point.left {
        text-align: left;
        display: flex;
        justify-content: space-between;
    }

    .location-point.right {
        text-align: left;
        display: flex;
        justify-content: space-between;
    }

    .location-name { margin-bottom: 0px; }

    .connecting-line { display: none; }

    .fixedIcons { bottom: 45px; }
    .fixedIcons img { width: 35px; }

    .mobile-section-footer {
        display: flex;
        gap: 0px 5px;
        justify-content: space-around;
        z-index: 999;
    }

    .mobile-section-footer a {
        display: block;
        font-size: 14px;
        padding: 6px 8px;
        color: rgb(255, 255, 255);
        border-radius: 5px 0px;
    }

    .decision_corner .button {
        background-color: var(--secondary-theme);
        color: var(--text-white);
        font-size: 16px;
        padding: 10px;
    }

    .icon { font-size: 2rem; }

    .project_box h4 { color: var(--secondary-theme); }

    .header { background: rgba(30, 43, 46, 0.4); }

    .about_builder .footer_form h6 { font-size: 20px; }

    .modal .modal-header h6 {
        font-size: 17px;
        margin-bottom: 0px;
    }

    .project_box .all_inc {
        text-align: left;
        font-size: 16px;
        padding-left: 20px;
    }

    .project-highlights {
        width: 100%;
        margin: 10px auto 0px;
        bottom: 0px;
        border-radius: 15px;
    }

    .project-highlights li {
        padding: 10px 0px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        border-right: 0px !important;
    }
}