/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* --- 1. NAVIGATION BAR --- */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0));
}

.navbar .logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar .logo span {
    font-weight: 300;
    color: #a0dbf0; /* Aquamarine Theme Hint */
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin: 0 15px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c6e63;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-outlook {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outlook:hover {
    background-color: #fff;
    color: #000;
}

.menu-icon {
    font-size: 20px;
    cursor: pointer;
}

/* --- 2. HERO / SLIDER SECTION --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin-top: 50px;
}

.hero-title {
    font-size: 65px;
    font-weight: 700;
    color: #22574e; /* Deep Aquamarine/Teal shade from screenshot */
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .white-text {
    color: #fff;
}

.hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 650px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* --- 3. SEARCH BAR OVERLAY --- */
.search-container {
    width: 100%;
    max-width: 800px;
    background: transparent;
}

/* Main Row */
.search-main-row {
    display: flex;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-type select {
    background: #22574e;
    color: #fff;
    border: none;
    padding: 18px 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.input-wrapper {
    display: flex;
    flex-grow: 1;
    align-items: center;
    padding-right: 20px;
}

.input-wrapper input {
    width: 100%;
    border: none;
    padding: 15px 20px;
    font-size: 14px;
    outline: none;
    color: #333;
    letter-spacing: 0.5px;
}

.search-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    color: #22574e;
    cursor: pointer;
}

/* Filters Row */
.search-filters-row {
    display: grid;
    grid-template-columns: repeat(4, 11fr);
    gap: 10px;
    margin-bottom: 15px;
}

.filter-box select {
    width: 100%;
    background: rgba(34, 87, 78, 0.85); /* Semitransparent Teal */
    color: #fff;
    border: none;
    padding: 12px 15px;
    font-size: 12px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    border-radius: 2px;
}

/* Search Footer Links */
.search-footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.property-types a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    margin-right: 20px;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.property-types a.active, .property-types a:hover {
    opacity: 1;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
}

.advanced-toggle a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}



/* --- 4. EXPLORE PROPERTIES SECTION --- */
.explore-section {
    background-color: #fff;
    color: #333;
    padding: 80px 0 0 0; /* Bottom padding 0 kyunki niche stats bar attach hoga */
}

.explore-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a3a34; /* Dark Teal shade */
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    max-width: 550px;
    margin-bottom: 50px;
}

/* Grid Layout for 7 Columns */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-bottom: 60px;
}

.explore-card {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Text ko bottom par adjust karne ke liye */
    transition: transform 0.4s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 58, 52, 0.9) 10%, rgba(0,0,0,0) 50%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 20px 15px;
    width: 100%;
}

.card-content h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- STATS COUNTER BAR --- */
.stats-bar {
    background-color: #22574e; /* Aquamarine/Teal background as per screenshot */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 50px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    position: relative;
}

/* Vertical divider lines between stats */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #a0dbf0; /* Light tone for labels */
    letter-spacing: 1px;
    padding: 0 10px;
}

/* Responsive adjustments for mobile/tablets */
@media (max-width: 1200px) {
    .explore-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
}





/* --- 5. WHY AQUAMARINE SECTION --- */
.why-aquamarine {
    background-color: #fcfcfc;
    padding: 100px 0;
    color: #333;
}

.why-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Left side broader for graphs */
    gap: 80px;
    align-items: center;
}

/* --- LEFT SIDE: GRAPH DASHBOARD (PURE HTML/CSS) --- */
.analytics-dashboard {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 20px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.dashboard-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dashboard-header .dot.red { background: #ff5f56; }
.dashboard-header .dot.yellow { background: #ffbd2e; }
.dashboard-header .dot.green { background: #27c93f; }

.dashboard-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-left: 10px;
}

/* Top Row: Bars */
.chart-row-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.bar-widget {
    text-align: center;
}

.bar-container {
    background: #f0f0f0;
    height: 140px;
    width: 35px;
    margin: 0 auto 12px auto;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(to top, #163a33, #22574e);
    animation: growBars 2.5s ease-out forwards;
}

/* Custom Heights for each analytic meter */
.expertise-bar { height: 85%; }
.purpose-bar { height: 70%; }
.completion-bar { height: 95%; }

.bar-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.5px;
}

/* Middle Row: Line Graph */
.chart-row-middle {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.graph-heading {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}

.graph-svg {
    width: 100%;
    height: auto;
}

.graph-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #aaa;
    margin-top: 5px;
}

/* Animated Path SVG Line */
.path-animate {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s linear forwards;
}

/* Bottom Row: Mini Widgets */
.chart-row-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mini-widget {
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
}

.widget-num {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #22574e;
}

.widget-txt {
    font-size: 11px;
    color: #777;
    font-weight: 500;
}

/* --- RIGHT SIDE: TEXT SLIDER ANIMATIONS --- */
.slider-text-container {
    position: relative;
}

.slider-section-tag {
    font-size: 11px;
    font-weight: 600;
    color: #b37d4e; /* Premium Gold/Bronze Accent used by White & Co */
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.slides-holder {
    position: relative;
    height: 180px; /* Base height lock to prevent content jumping */
}

.why-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateX(20px);
}

.why-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slide-heading {
    font-size: 32px;
    color: #1a3a34;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Slider Pagination Dots Styles */
.slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.dot-nav {
    width: 8px;
    height: 8px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-nav.active, .dot-nav:hover {
    background-color: #b37d4e;
    transform: scale(1.2);
}

/* Keyframe CSS Animations for Graph */
@keyframes growBars {
    from { height: 0; }
}
@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* Responsive Handling */
@media (max-width: 992px) {
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .slides-holder {
        height: auto;
        position: relative;
    }
    .why-slide {
        position: relative;
        display: none;
    }
    .why-slide.active {
        display: block;
    }
}






/* --- 6. NEWS & UPDATES SECTION --- */
.news-updates-section {
    background-color: #f5f4f0; /* Off-white background from screenshot */
    padding: 100px 0;
    color: #1a3a34;
}

.news-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Left side textual, right side graphic card */
    gap: 80px;
    align-items: center;
}

/* Left Side Slider Container */
.news-slider-container {
    position: relative;
}

.news-section-tag {
    font-size: 11px;
    font-weight: 600;
    color: #b37d4e; /* Premium Bronze accent */
    letter-spacing: 2px;
    display: block;
    margin-bottom: 25px;
}

.news-slides-holder {
    position: relative;
    height: 250px; /* Lock height to avoid layout shift */
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(10px);
}

.news-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.news-heading {
    font-size: 28px;
    color: #0c231f; /* Premium dark shade */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.news-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

/* Footer Controls */
.news-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid #e0dfdb;
    padding-top: 20px;
}

.news-readmore {
    color: #0c231f;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.news-readmore:hover {
    color: #b37d4e;
}

.news-dots {
    display: flex;
    gap: 8px;
}

.news-dot-nav {
    width: 6px;
    height: 6px;
    background-color: #cccbca;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.news-dot-nav.active, .news-dot-nav:hover {
    background-color: #b37d4e;
    transform: scale(1.3);
}

/* --- RIGHT SIDE: PREMIUM CSS BANNER --- */
.news-graphic-banner {
    position: relative;
    height: 520px;
    background: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?q=80&w=600') no-repeat center center;
    background-size: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    overflow: hidden;
}

.banner-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 35, 31, 0.4), rgba(12, 35, 31, 0.85));
    z-index: 1;
}

.banner-inner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner-quote {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
}

.banner-quote em {
    font-family: serif;
    font-style: italic;
}

/* Black Statement Box */
.statement-black-card {
    background: #000000;
    border-radius: 8px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

.card-sub-text {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 5px;
}

.card-main-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
}

.card-main-title .teal-dot {
    color: #a0dbf0;
}

/* Floating White Logo Box on Right */
.card-logo-badge {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: #fff;
    color: #000;
    padding: 12px;
    text-align: center;
    border-radius: 4px;
    width: 80px;
}

.badge-title {
    font-size: 8px;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2px;
}

.badge-number-box {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.badge-number-box .no-text {
    font-size: 11px;
    font-weight: 700;
}

.badge-number-box .num-digit {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .news-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .news-slides-holder {
        height: auto;
        position: relative;
    }
    .news-slide {
        position: relative;
        display: none;
    }
    .news-slide.active {
        display: block;
    }
    .news-graphic-banner {
        height: 450px;
    }
}






/* --- 6. NEWS SECTION STRUCTURAL OVERHAUL --- */
.news-updates-section {
    background-color: #f4f3ee; /* Soft cream tone as requested */
    padding: 120px 0;
}

.news-wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Left Column Carousels */
.news-slider-container {
    display: flex;
    flex-direction: column;
}

.news-section-tag {
    font-size: 11px;
    font-weight: 600;
    color: #c48c5d; /* Light bronze color accent */
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.news-carousel {
    position: relative;
    min-height: 240px; /* Lock safe minimum to contain all texts dynamic */
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.news-heading {
    font-size: 32px;
    color: #0b221e; /* Deep rich corporate navy/teal custom */
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.news-desc {
    font-size: 13.5px;
    color: #555555;
    line-height: 1.7;
}

/* Footer Control Links */
.news-footer-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 25px;
}

.news-readmore {
    color: #0b221e;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.news-readmore:hover {
    color: #c48c5d;
}

.news-dots {
    display: flex;
    gap: 10px;
}

.news-dot-nav {
    width: 7px;
    height: 7px;
    background-color: #d1d0cb;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.news-dot-nav.active, .news-dot-nav:hover {
    background-color: #c48c5d;
    transform: scale(1.2);
}

/* --- RIGHT COLUMN: SHARP BANNER DESIGN --- */
.news-visual-banner {
    position: relative;
    height: 540px;
    border-radius: 4px;
    background: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?q=80&w=600') no-repeat center center;
    background-size: cover;
    padding: 45px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.banner-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 34, 30, 0.3), rgba(11, 34, 30, 0.85));
    z-index: 1;
}

.banner-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.premium-quote {
    color: #ffffff;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.3;
}

.premium-quote em {
    font-family: Georgia, serif;
    font-style: italic;
}

/* Black Statement Box layout matching snapshot */
.dubai-did-card {
    background: #000000;
    border-radius: 12px;
    padding: 35px;
    color: #ffffff;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.card-hint {
    font-size: 14px;
    color: #8c8c8c;
    margin-bottom: 8px;
    font-weight: 300;
}

.card-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.05;
}

.card-title .dot-teal {
    color: #a0dbf0;
}

/* Badge block graphic inside black card */
.floating-badge-no1 {
    position: absolute;
    right: 35px;
    bottom: 35px;
    background: #ffffff;
    color: #000000;
    padding: 10px 14px;
    border-radius: 4px;
    text-align: center;
    min-width: 85px;
}

.badge-brand {
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 3px;
    margin-bottom: 2px;
}

.badge-flex {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.badge-flex .b-no {
    font-size: 11px;
    font-weight: 700;
    margin-right: 1px;
    line-height: 1.3;
}

.badge-flex .b-1 {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

/* Tablet / Mobile view responsive break handlers */
@media (max-width: 991px) {
    .news-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .news-carousel {
        min-height: auto;
    }
    .news-slide {
        position: relative;
        display: none;
    }
    .news-slide.active {
        display: block;
    }
}








/* --- 7. COMMUNITIES DYNAMIC MARQUEE SECTION --- */
.communities-section {
    background-color: #22574e; /* Dark Teal shade from your screenshot */
    padding: 80px 0 0 0; /* Bottom padding 0 taake cards page end tak touch karein */
    overflow: hidden;
    position: relative;
}

.communities-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    margin-bottom: 40px;
}

.header-container {
    max-width: 650px; /* Restricting width exactly like screenshot */
}

.comm-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.comm-subtitle {
    font-size: 13.5px;
    line-height: 1.6;
    color: #cbdad7; /* Muted soft teal text for description */
}

/* --- Marquee Slider Core Layout --- */
.marquee-slider-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
    position: relative;
    padding-bottom: 2px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 35s linear infinite; /* Controls smooth infinite movement */
}

/* Pause animation on hover so user can easily look/click */
.marquee-slider-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    gap: 15px;
    padding-right: 15px; /* Continuous gap maintenance */
}

/* Individual Card Styling matching screenshot proportions */
.comm-card {
    position: relative;
    width: 240px;
    height: 480px; /* Tall vertical cards exactly like snapshot */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 25px 20px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Premium Card hover lift */
.comm-card:hover {
    transform: scale(1.02);
}

.comm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.comm-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

/* --- KEYFRAMES FOR INFINITE RIGHT-TO-LEFT SCROLL --- */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Moves exactly halfway to switch tracks seamlessly */
    }
}

/* Mobile responsive optimization */
@media (max-width: 768px) {
    .communities-header {
        padding: 0 25px;
    }
    .comm-card {
        width: 180px;
        height: 380px;
    }
}





/* --- 8. PARALLAX CALL TO ACTION SECTION --- */
.parallax-cta-section {
    position: relative;
    height: 450px; /* Perfect height block as per screenshot */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    
    /* --- CORE PARALLAX LOGIC --- */
    background-image: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?q=80&w=1920');
    background-attachment: fixed; /* Keeps image static while page scrolls */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Dark monochrome filter layout match */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Grayscale dark overlay tint */
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.parallax-title {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.parallax-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #dddddd;
    max-width: 650px;
    margin: 0 auto 35px auto;
    font-weight: 300;
}

/* Button Layout Proportions */
.parallax-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-parallax {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 12px 35px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

/* Premium Hover Transitions */
.btn-parallax:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Handler for Mobile Devices (Parallax disables gracefully on mobile browsers for performance) */
@media (max-width: 768px) {
    .parallax-cta-section {
        background-attachment: scroll; /* Fallback for older mobile chipsets */
        height: auto;
        padding: 80px 0;
    }
    .parallax-title {
        font-size: 26px;
    }
    .parallax-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .btn-parallax {
        width: 100%;
        max-width: 280px;
    }
}



/* --- 9. MAIN FOOTER COMPONENT --- */
.main-footer {
    background-color: #f5f4f0; /* Cream background matching exactly */
    color: #1a3a34;
    padding: 60px 0 30px 0;
    border-top: 1px solid #e2e1dc;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* --- Accordion Dropdown Styles --- */
.popular-search-accordion {
    width: 100%;
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #1a3a34;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    letter-spacing: 1px;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px 0;
}

.panel-grid a {
    color: #555;
    text-decoration: none;
    font-size: 12.5px;
    transition: color 0.3s;
}

.panel-grid a:hover {
    color: #b37d4e;
}

/* Dividers */
.footer-divider-top {
    border: 0;
    height: 1px;
    background-color: #e2e1dc;
    margin-top: 10px;
    margin-bottom: 50px;
}

.footer-divider-bottom {
    border: 0;
    height: 1px;
    background-color: #e2e1dc;
    margin-top: 50px;
    margin-bottom: 25px;
}

/* --- Main Footer Grid Layout --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 0.6fr) 1.2fr; /* Perfect columns proportional layout */
    gap: 30px;
}

/* Brand info block handles typography and placeholder space */
.brand-info .footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-txt-logo {
    font-size: 24px;
    font-weight: 700;
    color: #0c231f;
}

.footer-txt-logo span {
    font-weight: 300;
    color: #b37d4e;
}

.company-phone {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.company-address {
    font-size: 12.5px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.get-directions {
    color: #1a3a34;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    border-bottom: 1px solid #1a3a34;
    padding-bottom: 3px;
}

/* Columns Lists Links styling */
.col-title {
    font-size: 12px;
    font-weight: 700;
    color: #0c231f;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #555;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #b37d4e;
}

/* --- Awards Column Grids --- */
.awards-col {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.badge-placeholder {
    background-color: #0c231f; /* Dark tone background matching snapshot badges */
    color: #fff;
    padding: 15px 10px;
    text-align: center;
    border-radius: 2px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.long-badge {
    width: 65px;
    height: 180px;
    display: flex;
    align-items: center;
}

.square-badge {
    width: 80px;
    height: 90px;
    background-color: #db3636; /* Great place to work signature brand color scale */
    display: flex;
    align-items: center;
}

/* --- Footer Bottom Meta Credits Row --- */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #777;
}

.policy-links a {
    color: #777;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.policy-links a:hover {
    color: #1a3a34;
}

/* --- Responsive adjustments --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .panel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .panel-grid {
        grid-template-columns: 1fr;
    }
}





/* --- INTERNAL PAGES HEADER ADJUSTMENT --- */
.internal-page-nav {
    background: #0c231f !important; /* Internal pages par navbar dark background ke sath fix hogi */
    position: relative !important;
}

/* --- INTERNAL HERO BANNER --- */
.internal-hero {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.internal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(12, 35, 31, 0.75);
}

.internal-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.internal-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.internal-hero-content p {
    font-size: 14px;
    opacity: 0.8;
}

/* --- INLINE SEARCH FILTER BAR --- */
.inline-filter-section {
    background: #fdfdfd;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.filter-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.inline-filter-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.inline-filter-form input[type="text"] {
    flex-grow: 1.5;
    padding: 12px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 13px;
}

.inline-filter-form select {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
}

.inline-find-btn {
    background: #22574e;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.inline-find-btn:hover {
    background: #0c231f;
}

/* --- PROPERTIES 3-COLUMN LISTINGS GRID --- */
.listings-section {
    background: #fbfbfb;
    padding: 50px 0;
}

.listings-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.listings-meta-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
}

.properties-3col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-listing-card {
    background: #fff;
    border: 1px solid #eef0ef;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.property-listing-card:hover {
    transform: translateY(-5px);
}

.prop-img-box {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge-purpose {
    position: absolute;
    top: 15px; left: 15px;
    background: #22574e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    letter-spacing: 1px;
}

.prop-card-details {
    padding: 20px;
}

.prop-price {
    font-size: 20px;
    font-weight: 700;
    color: #0c231f;
    margin-bottom: 5px;
}

.prop-title {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prop-loc {
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
}

.prop-icons-row {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #555;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
    margin-bottom: 15px;
}

.prop-icons-row i {
    color: #22574e;
}

.prop-card-actions {
    display: flex;
}

.btn-action-whatsapp {
    width: 100%;
    text-align: center;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.3s;
}

.btn-action-whatsapp:hover {
    background: #20ba5a;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .properties-3col-grid { grid-template-columns: repeat(2, 1fr); }
    .inline-filter-form { flex-wrap: wrap; }
}
@media (max-width: 600px) {
    .properties-3col-grid { grid-template-columns: 1fr; }
}




/* --- 11. BREADCRUMBS DESIGN TRACK --- */
.breadcrumbs-nav-section {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.breadcrumbs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    font-size: 11px;
    color: #888;
    font-weight: 500;
}
.breadcrumbs-container a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumbs-container a:hover {
    color: #22574e;
}
.breadcrumbs-container i {
    font-size: 9px;
    margin: 0 8px;
    color: #ccc;
}

/* --- COLLAPSIBLE TEXT DESCRIPTION PANEL --- */
.collapsible-content {
    display: none;
    transition: max-height 0.3s ease-out;
}

/* --- RANGE SLIDERS STYLING OVERHAUL --- */
.range-group {
    margin-bottom: 25px;
}
.range-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}
.range-label-row span {
    color: #22574e;
    font-weight: 700;
}
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: #e3e8e6;
    outline: none;
    border-radius: 2px;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #22574e;
    cursor: pointer;
    transition: transform 0.2s;
}
.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* --- BOTTOM SAME AREA SECTION MATRIX --- */
.same-area-properties-section {
    background: #fbfbfb;
    padding: 80px 0;
    border-top: 1px solid #eaeaea;
}
.same-area-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.same-area-title {
    font-size: 16px;
    font-weight: 700;
    color: #0c231f;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    text-align: center;
}
.same-area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.area-prop-card {
    background: #ffffff;
    border: 1px solid #eef0ef;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}
.card-img-header {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.carousel-dots-indicator {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.carousel-dots-indicator .dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
}
.carousel-dots-indicator .dot.active {
    background: #ffffff;
    width: 12px;
    border-radius: 4px;
}
.card-body-details {
    padding: 20px;
}
.card-price {
    font-size: 18px;
    font-weight: 700;
    color: #0c231f;
}
.card-title {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin: 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-location {
    font-size: 11.5px;
    color: #777;
    margin-bottom: 12px;
}
.card-specs {
    display: flex;
    gap: 15px;
    font-size: 11.5px;
    color: #555;
    border-top: 1px solid #f9f9f9;
    padding-top: 12px;
    margin-bottom: 15px;
}
.card-wa-btn {
    display: block;
    text-align: center;
    background: #22574e;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.3s;
}
.card-wa-btn:hover {
    background: #0c231f;
}

/* Agent Sidebar Grid Share Buttons Custom Styles */
.share-icons .share-btn {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    color: #444 !important;
    text-decoration: none;
    transition: all 0.3s;
}
.share-icons .share-btn:hover {
    background: #22574e;
    color: #fff !important;
}

/* Responsive Grid adjustment */
@media (max-width: 992px) {
    .same-area-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 650px) {
    .same-area-grid {
        grid-template-columns: 1fr;
    }
}




/* --- REFINE STATS COUNTER BAR --- */
.stats-bar {
    background-color: #22574e; /* Premium Corporate Dark Teal */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Vertical divider lines between stats - Clean & Minimal */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Numbers Typography Configuration */
.stat-number, .stat-number-static {
    font-size: 46px; /* Enhanced slightly for more premium impact */
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px;
    display: inline-block;
}

.stat-plus {
    font-size: 32px;
    font-weight: 600;
    color: #a0dbf0; /* Soft contrast highlighting plus signs */
    margin-left: 2px;
    vertical-align: super;
}

/* Professional & Attractive Heading Layout Match */
.stat-label {
    display: block;
    font-size: 11px; /* Sharp micro typography style */
    font-weight: 600;
    color: #cbdad7; /* Muted corporate grey-teal */
    letter-spacing: 1.5px; /* Elegant tracking look like White & Co */
    line-height: 1.6;
    margin-top: 15px;
    text-transform: uppercase;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 40px 20px;
    }
    .stat-item:not(:last-child)::after {
        display: none; /* Hide vertical dividers on smaller frames */
    }
}

@media (max-width: 480px) {
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .stat-number, .stat-number-static {
        font-size: 38px;
    }
}






/* --- 4. WHY AQUAMARINE SECTION STYLING ENGINE --- */
.why-aquamarine {
    background-color: #fafafa;
    padding: 120px 0;
    color: #333;
}

.why-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr; /* Optimized grid column splitting proportions */
    gap: 80px;
    align-items: center;
}

/* --- LEFT PANEL: MODERN CMS GRAPHICS CARD --- */
.analytics-dashboard-v2 {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(12, 35, 31, 0.04);
    overflow: hidden;
    padding: 25px;
    transition: transform 0.3s ease;
}

.analytics-dashboard-v2:hover {
    transform: translateY(-2px);
}

.dashboard-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f6f7f9;
    padding-bottom: 18px;
    margin-bottom: 25px;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.win-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}
.win-dot.dot-r { background: #ff5f56; }
.win-dot.dot-y { background: #ffbd2e; }
.win-dot.dot-g { background: #27c93f; }

/* Live Pulsing Beacon Animation */
.live-pulse-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-ring {
    width: 6px;
    height: 6px;
    background: #27c93f;
    border-radius: 50%;
    position: relative;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    border-radius: 50%;
    border: 1px solid #27c93f;
    animation: pulseRadar 1.8s infinite ease-out;
}

@keyframes pulseRadar {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}

.dashboard-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #90a09d;
    letter-spacing: 1.2px;
}

/* Row 1: Bars Alignment */
.chart-row-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.bar-container {
    background: #f4f6f5;
    height: 120px;
    width: 30px;
    margin: 0 auto 12px auto;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    border-radius: 30px;
    background: linear-gradient(to top, #0c231f, #22574e);
    transform-origin: bottom;
    animation: barScaleUp 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.expertise-bar { height: 85%; }
.purpose-bar { height: 68%; }
.completion-bar { height: 94%; }

@keyframes barScaleUp {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.bar-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #4a5553;
    letter-spacing: 0.5px;
    text-align: center;
}
.bar-label i { margin-right: 4px; color: #22574e; }

/* Row 2: Fixed Graph Layout Base */
.chart-row-middle {
    background: #fcfdfd;
    border: 1px solid #f0f3f2;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.graph-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.graph-heading {
    font-size: 13px;
    font-weight: 700;
    color: #0c231f;
}

.graph-percentage {
    font-size: 12px;
    font-weight: 700;
    color: #27c93f;
    background: rgba(39, 201, 63, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Container locking path constraints */
.line-graph-canvas {
    width: 100%;
    position: relative;
    padding: 5px 0;
}

.graph-svg {
    width: 100%;
    height: auto;
    overflow: visible; /* Prevents vector node circle cuts on clipping boundaries */
}

.graph-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 600;
    color: #a0a8a6;
    margin-top: 10px;
    padding: 0 5px;
}

/* Row 3: Bottom Cards */
.chart-row-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mini-widget-v2 {
    background: #ffffff;
    border: 1px solid #eef0f1;
    border-radius: 6px;
    padding: 18px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.widget-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #22574e;
    margin-bottom: 2px;
}

.widget-txt {
    font-size: 11px;
    color: #707a78;
    font-weight: 600;
}

/* --- RIGHT SIDE: PREMIUM SYSTEM SLIDERS --- */
.slider-section-tag {
    font-size: 11px;
    font-weight: 600;
    color: #c48c5d; /* Premium Bronze corporate tone */
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.slides-holder {
    position: relative;
    height: 160px; /* Secure wrapper bounds preventing structural jitter on switch */
}

.why-slide {
    position: absolute;
    top: 0; left: 0; width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.why-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slide-heading {
    font-size: 34px;
    color: #0c231f;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.slide-desc {
    font-size: 14px;
    color: #606a68;
    line-height: 1.65;
    font-weight: 400;
}

.slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 35px;
}

.dot-nav {
    width: 6px;
    height: 6px;
    background-color: #d1d5d4;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-nav.active, .dot-nav:hover {
    background-color: #c48c5d;
    transform: scale(1.3);
}

/* Responsive Scaling Frame */
@media (max-width: 992px) {
    .why-wrapper { grid-template-columns: 1fr; gap: 60px; padding: 0 25px; }
    .slides-holder { height: auto; }
    .why-slide { position: relative; display: none; }
    .why-slide.active { display: block; }
}








/* --- 7. LUXURY NEIGHBORHOODS MARQUEE INTERFACE --- */
.communities-section {
    background-color: #112d27; /* Dark elegant emerald background layout match */
    padding: 100px 0 0 0;
    overflow: hidden;
    position: relative;
}

.communities-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    margin-bottom: 50px;
}

.comm-section-tag {
    font-size: 11px;
    font-weight: 600;
    color: #c48c5d; /* Elegant corporate accent gold/bronze */
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.comm-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.comm-subtitle {
    font-size: 14px;
    line-height: 1.65;
    color: #cbdad7;
    max-width: 680px;
}

/* --- Marquee Engine Track Configurations --- */
.marquee-slider-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-bottom: 4px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: infiniteSlideMove 40s linear infinite; /* Controlled fluid movement speed variables */
}

/* Pause sliding animation loop on hover */
.marquee-slider-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

/* --- THE HIGH-CLASS CARD ELEMENT ARCHITECTURE --- */
.comm-card-v2 {
    position: relative;
    width: 280px; /* Locked premium card bounding frame width */
    height: 500px; /* Vertical tall catalog proportions alignment */
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Base Image Layer (Separated to allow clear isolated scale transitions) */
.comm-img-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Multi-Stage Dark Linear Gradient Overlay */
.comm-overlay-v2 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, 
        rgba(17, 45, 39, 0.95) 0%, 
        rgba(17, 45, 39, 0.4) 40%, 
        rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

/* Dynamic Hidden Text Content Wrapper */
.comm-content-box {
    position: relative;
    z-index: 3;
    padding: 35px 25px;
    width: 100%;
    transform: translateY(20px); /* Initially pushed down slightly */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.comm-meta-count {
    font-size: 10px;
    font-weight: 700;
    color: #a0dbf0; /* Soft neon dynamic teal text */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0; /* Hidden by default */
    display: block;
    margin-bottom: 8px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
}

.comm-name-v2 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

/* --- THE EXQUISITE PREMIUM HOVER INTERACTIONS --- */
.comm-card-v2:hover .comm-img-layer {
    transform: scale(1.08) rotate(0.5deg); /* Cinematic smooth zoom with subtle tilt orientation */
}

.comm-card-v2:hover .comm-overlay-v2 {
    background: linear-gradient(to top, 
        rgba(12, 35, 31, 1) 0%, 
        rgba(12, 35, 31, 0.6) 50%, 
        rgba(0, 0, 0, 0.1) 100%); /* Deepens background opacity matrix on mouse entry */
}

.comm-card-v2:hover .comm-content-box {
    transform: translateY(0); /* Lifts up the metadata structure frame cleanly */
}

.comm-card-v2:hover .comm-meta-count {
    opacity: 1; /* Softly reveals 'View Properties' marker label */
    transform: translateY(0);
}

/* --- ANIMATION ENGINE KEYFRAMES FOR INFINITE LOOPING --- */
@keyframes infiniteSlideMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Switch coordinates smoothly across duplicate track borders */
    }
}

/* Responsive Media Controls Layout */
@media (max-width: 768px) {
    .communities-header { padding: 0 25px; }
    .comm-title { font-size: 28px; }
    .comm-card-v2 { width: 220px; height: 400px; }
}







/* --- EXTRA-LUXURY SIDEBAR & SCROLL LOCK ISOLATION SYSTEM --- */

/* Safe hamburger visibility overrides on header layout row */
.menu-icon {
    display: block !important;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.menu-icon:hover {
    color: #a0dbf0;
}

/* Isolated Backdrop Blur Mask Overlays */
.aquamarine-backdrop-veil {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(5, 15, 13, 0.5) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    z-index: 999998 !important; /* Positions strictly beneath drawer layer framework priority */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.aquamarine-backdrop-veil.veil-active-state {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Main Sidebar Drawer Absolute Isolation Box (Screenshot Specs Sync) */
.aquamarine-side-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 380px !important; /* Precise width configuration bounds */
    height: 100vh !important;
    background-color: #f6f5f3 !important; /* Premium cream tint background palette precise match */
    z-index: 999999 !important; /* Locks drawer over everything else */
    padding: 40px !important;
    box-shadow: -10px 0 45px rgba(0, 0, 0, 0.2) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important; /* Safe tracking layout for multiple items overflow scroll */
    transform: translateX(100%) !important; /* Kept out of bounds completely until class injection hits */
    box-sizing: border-box !important;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Injected Class Trigger parameter via Javascript Function openNavDrawer */
.aquamarine-side-drawer.drawer-active-state {
    transform: translateX(0) !important; /* Slides into framework view smoothly */
}

/* Drawer Inner Typography & Controls Headers Grid */
.drawer-header-nodes {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid #e2dfda !important;
    padding-bottom: 25px !important;
    margin-bottom: 30px !important;
    width: 100% !important;
}
.drawer-logo-txt a {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0c231f !important;
    text-decoration: none !important;
    letter-spacing: -0.2px !important;
}
.drawer-logo-txt a span { font-weight: 300 !important; color: #c48c5d !important; }

.drawer-close-trigger {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    font-size: 36px !important;
    font-weight: 300 !important;
    color: #333333 !important;
    cursor: pointer !important;
    line-height: 1 !important;
    transition: color 0.3s;
}
.drawer-close-trigger:hover { color: #e74c3c !important; }

/* Isolated Menu Rows Parameters Preventing Horizontal Row Bleeding */
.drawer-links-stack {
    display: flex !important;
    flex-direction: column !important; /* Force sets strict single vertical lines alignment */
    width: 100% !important;
    text-align: left !important;
}

.dr-menu-item {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2c3e3a !important; /* Elite corporate dark green-grey shade */
    text-decoration: none !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    letter-spacing: 0.2px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dr-menu-item .dr-arrow {
    font-size: 10px !important;
    color: #a0a8a5 !important;
    opacity: 0.7 !important;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Luxury Micro Shift & Contrast Adjustments on Mouse Hover Link Trigger */
.dr-menu-item:hover {
    color: #0c231f !important;
    padding-left: 6px !important; /* Cinematic shift space execution */
}
.dr-menu-item:hover .dr-arrow {
    transform: translateX(3px) !important;
    color: #0c231f !important;
    opacity: 1 !important;
}

/* Highlighting specific real estate anchors precisely */
.dr-menu-item[href="commercial.php"] {
    color: #22574e !important;
}

/* Fluid responsive breakdown framework configuration bounds */
@media (max-width: 480px) {
    .aquamarine-side-drawer {
        width: 100vw !important; /* Full width adaptation on mobile ports */
        padding: 30px 20px !important;
    }
}






/* --- HEADER LOGO BRANDING INTERFACE CONFIGURATIONS --- */
.logo a {
    display: flex !important;
    align-items: center !important;
    gap: 45px !important;
    text-decoration: none !important;
}

.brand-logo-img {
    height: 90px !important; /* Managed height to protect header boundaries layout collapse */
    width: auto !important;
    object-fit: contain !important;
    transition: transform 0.25s ease;
}

.logo a:hover .brand-logo-img {
    transform: scale(1.03);
}

/* ================================================================= */
/* PRO-TIP FOR TEXT VISIBILITY:
   Agar aap chahte hain ke sirf IMAGE logo show ho aur TEXT naam chup jaye,
   toh niche mojud 'display: inline-block !important;' ko badal kar 
   'display: none !important;' kar dein. */
/* ================================================================= */
.logo-fallback-text {
    display: inline-block !important; 
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
}

/* --- MOBILE DRAWER INTERNAL LOGO RULES --- */
.brand-logo-img-drawer {
    height: 85px !important;
    width: auto !important;
    object-fit: contain !important;
}

.logo-fallback-text-drawer {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}