/* Dharti Acres - Makaan Real Estate Theme & Framer Homy 3D System */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    --primary: #0099e5; /* Dharti Acres Sky Blue from Logo */
    --primary-dark: #0084c7;
    --primary-light: #38bdf8;
    --primary-bg: #e6f4ff;
    --dark: #0f172a; /* Deep Slate from Logo Cursive */
    --dark-surface: #1e293b;
    --light-bg: #f0f8ff;
    --card-bg: #ffffff;
    --heading-font: 'Outfit', 'Inter', sans-serif;
    --body-font: 'Heebo', sans-serif;
    --radius-lg: 16px;
    --radius-md: 10px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 153, 229, 0.08);
}

html {
    overflow-x: clip !important;
    max-width: 100vw;
}

body {
    font-family: var(--body-font);
    background-color: #f8fafc;
    color: #475569;
    overflow-x: clip !important;
    max-width: 100%;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--dark);
}

/* Master Header Sticky Wrapper */
.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1050 !important;
    width: 100% !important;
    background: #ffffff !important;
    box-shadow: 0 4px 25px rgba(15, 23, 42, 0.1) !important;
}

.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 999999 !important;
    background: #ffffff !important;
}

/* Header Top Bar - Dharti Executive Navy Gradient */
.top-bar {
    background: linear-gradient(135deg, #0f172a 0%, #0284c7 100%);
    color: #e2e8f0;
    font-size: 0.875rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative !important;
    z-index: 999999 !important;
}

.top-bar a {
    color: #f1f5f9;
    text-decoration: none;
    transition: all 0.2s ease;
}

.top-bar a:hover {
    color: #38bdf8;
}

/* Makaan Navbar */
.makaan-navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 10px 0 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 999999 !important;
}

.makaan-navbar .nav-link {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.makaan-navbar .nav-link:hover, .makaan-navbar .nav-link.active {
    color: var(--primary);
    background: var(--primary-bg);
}

/* Navbar Dropdown Styling & Desktop Hover */
@media (min-width: 992px) {
    .makaan-navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .makaan-navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
        margin-top: 4px !important;
        position: absolute !important;
        z-index: 9999999 !important;
        background: #ffffff !important;
        border: 1px solid #cbd5e1 !important;
        box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25) !important;
    }
}

.makaan-navbar .dropdown-menu .dropdown-item {
    transition: all 0.2s ease;
}

.makaan-navbar .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-bg);
    transform: translateX(4px);
}


/* Makaan Hero Section */
.hero-makaan {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%), url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 110px 0 80px;
    position: relative;
    z-index: 1 !important;
}

.hero-search-container {
    background: var(--primary);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.search-input-box {
    background: white;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    border: none;
}

/* Category Property Type Boxes (Makaan Style) */
.cat-type-card {
    background: white;
    border: 1px dashed var(--primary);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.cat-type-card:hover {
    background: var(--primary);
    border-style: solid;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 153, 229, 0.25);
}

.cat-type-card:hover h5, .cat-type-card:hover span {
    color: white !important;
}

.cat-type-card .icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.cat-type-card:hover .icon-box {
    background: white;
    color: var(--primary);
}

/* Homy 3D Property Card (Makaan Layout + 3D Tilt) */
.homy-3d-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.homy-3d-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -8px rgba(0, 153, 229, 0.30);
    border-color: var(--primary);
    z-index: 10;
}

.homy-3d-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.homy-3d-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.homy-3d-card:hover .card-img-wrapper img {
    transform: scale(1.12);
}

.badge-price {
    background: var(--primary);
    color: white;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.badge-status {
    background: var(--dark);
    color: white;
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    max-width: 130px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
}

/* Buttons in Primary Logo Sky Blue */
.btn-makaan-primary {
    background: var(--primary);
    color: white;
    font-family: var(--heading-font);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 153, 229, 0.3);
}

.btn-makaan-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 153, 229, 0.4);
}

.btn-makaan-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--heading-font);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-makaan-outline:hover {
    background: var(--primary);
    color: white;
}

/* Groww Calculator Styling */
.groww-calculator-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.calc-slider-input {
    accent-color: var(--primary);
    height: 8px;
    border-radius: 4px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    font-size: 32px;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Section Subtitle Badge */
.section-subtitle {
    color: var(--primary);
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 8px;
}

/* ==========================================================================
   Dharti Acres - 3D Real Estate Preloader Premium Styling
   ========================================================================== */
/* ==========================================================================
   Dharti Acres - 3D Light Architectural Preloader Experience
   ========================================================================== */
/* ==========================================================================
   Dharti Acres - Executive Minimalist Light Glassmorphism Preloader
   ========================================================================== */
/* ==========================================================================
   DHARTI ACRES MEDIUM MUZLI PAGE-FLIPPING ("PATTA BADLAY") GEOPIN PRELOADER
   ========================================================================== */
#dharti-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8fafc; /* Pristine Light Surface Background */
    transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body:not(.preloader-finished) .site-header {
    opacity: 0 !important;
    pointer-events: none !important;
}

body.preloader-finished .site-header {
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: opacity 0.5s ease-in-out !important;
}

#dharti-preloader.preloader-hidden {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.preloader-light-map-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 45%, rgba(0, 153, 229, 0.14) 0%, rgba(251, 191, 36, 0.06) 50%, rgba(248, 250, 252, 0.98) 85%);
    pointer-events: none;
}

.preloader-vector-map-roads {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 153, 229, 0.08) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(0, 153, 229, 0.08) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
    pointer-events: none;
}

.preloader-center-stage {
    position: relative;
    z-index: 10;
    max-width: 440px;
    width: 90vw;
}

/* Rounded App Card Showcase (Identical to Medium Muzli Screenshot) */
.muzli-geopin-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 32px 28px 28px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12), 0 10px 30px rgba(0, 153, 229, 0.15);
    border: 1.5px solid rgba(0, 153, 229, 0.2);
    animation: cardFloatGently 4s ease-in-out infinite alternate;
}

@keyframes cardFloatGently {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.card-map-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 153, 229, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 153, 229, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.card-dharti-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* 3D Page-Flipping ("Patta Badlay") GeoPin Stage & Animation */
.geopin-flipping-stage {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 120px;
    margin: 0 auto;
}

.geopin-book-flip-container {
    position: relative;
    width: 100px;
    height: 120px;
    margin: 0 auto;
    perspective: 1000px;
}

.pin-leaf {
    transform-origin: 50px 50px;
    transform-style: preserve-3d;
    animation: leafPageFlip 1.4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.pin-leaf.leaf-1 { animation-delay: 0s; }
.pin-leaf.leaf-2 { animation-delay: 0.12s; }
.pin-leaf.leaf-3 { animation-delay: 0.24s; }
.pin-leaf.leaf-4 { animation-delay: 0.36s; }
.pin-leaf.leaf-5 { animation-delay: 0.48s; }
.pin-leaf.leaf-6 { animation-delay: 0.60s; }

@keyframes leafPageFlip {
    0% {
        transform: rotateY(0deg);
        opacity: 1;
    }
    40% {
        transform: rotateY(-180deg);
        opacity: 0.9;
    }
    50% {
        transform: rotateY(-180deg);
        opacity: 0.8;
    }
    90% {
        transform: rotateY(0deg);
        opacity: 1;
    }
    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

.geopin-main-svg {
    filter: drop-shadow(0 12px 20px rgba(0, 153, 229, 0.25));
}

.geopin-shadow-blur {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 12px;
    background: rgba(15, 23, 42, 0.15);
    border-radius: 50%;
    filter: blur(4px);
    animation: muzliShadowPulse 3s ease-in-out infinite;
}

@keyframes muzliShadowPulse {
    0%, 50%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    25%, 75% { transform: translateX(-50%) scale(0.6); opacity: 0.2; }
}

.card-royal-badge {
    display: inline-block;
    background: #f8fafc;
    border: 1px solid #bae6fd;
    box-shadow: 0 4px 12px rgba(0, 153, 229, 0.1);
    color: #0f172a;
    font-family: var(--heading-font);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 6px 18px;
    border-radius: 30px;
}

.card-bar-wrap {
    width: 100%;
    max-width: 260px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.card-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0099e5 0%, #fbbf24 50%, #ff4757 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 153, 229, 0.6);
    transition: width 0.15s ease-out;
}

.card-percent-num {
    font-family: var(--heading-font);
    font-size: 1.15rem;
    font-weight: 900;
    color: #0099e5;
}

.card-status-text {
    font-family: var(--heading-font);
    font-size: 0.825rem;
    font-weight: 700;
    color: #475569;
}

/* Real-Estate Background Skyline Silhouette & 3D Building Floor */
.preloader-skyline-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 38vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.preloader-skyline-bg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 -5px 20px rgba(0, 153, 229, 0.25));
}

/* 3D Architectural CAD Perspective Floor Grid */
.blueprint-perspective-grid {
    position: absolute;
    bottom: -150px;
    left: -50%;
    width: 200%;
    height: 600px;
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(600px) rotateX(72deg);
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 70%);
    animation: gridScroll 15s linear infinite;
    z-index: 1;
}

@keyframes gridScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 500px; }
}

/* Floating 3D Skyscraper Silhouette Pillars (Left & Right) */
.floating-building-3d {
    position: absolute;
    width: 90px;
    height: 320px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 0 30px rgba(0, 153, 229, 0.15);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 20px 0;
    pointer-events: none;
}

.floating-building-3d.building-left {
    left: 8%;
    bottom: 0;
    transform: perspective(800px) rotateY(25deg) translateY(20px);
    animation: floatLeftBuilding 6s ease-in-out infinite alternate;
}

.floating-building-3d.building-right {
    right: 8%;
    bottom: 0;
    transform: perspective(800px) rotateY(-25deg) translateY(20px);
    animation: floatRightBuilding 6s ease-in-out 1s infinite alternate;
}

@keyframes floatLeftBuilding {
    0% { transform: perspective(800px) rotateY(25deg) translateY(20px); }
    100% { transform: perspective(800px) rotateY(20deg) translateY(0px); }
}

@keyframes floatRightBuilding {
    0% { transform: perspective(800px) rotateY(-25deg) translateY(20px); }
    100% { transform: perspective(800px) rotateY(-20deg) translateY(0px); }
}

.building-window-glow {
    width: 55px;
    height: 40px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px dashed rgba(56, 189, 248, 0.3);
    border-radius: 4px;
    position: relative;
}

.building-window-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 50%;
    transform: translate(-50%, -50%);
    background: rgba(56, 189, 248, 0.3);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
    border-radius: 2px;
    animation: windowFlicker 3s infinite alternate;
}

@keyframes windowFlicker {
    0% { opacity: 0.3; }
    50% { opacity: 0.9; }
    100% { opacity: 0.4; }
}

/* Mobile View Responsive & Horizontal Overflow Prevention */
@media (max-width: 768px) {
    html, body {
        overflow-x: clip !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }

    .site-header {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 1050 !important;
        width: 100% !important;
        background: #ffffff !important;
        box-shadow: 0 4px 25px rgba(15, 23, 42, 0.12) !important;
    }

    .container, .container-fluid {
        max-width: 100% !important;
        overflow-x: hidden;
    }

    #featured-projects-section {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    #projects-slider {
        max-width: 100% !important;
    }

    #projects-slider > div {
        min-width: 285px !important;
        max-width: 285px !important;
    }

    .hero-makaan {
        padding: 50px 0 40px;
    }

    .hero-search-container {
        padding: 20px 15px;
        margin-top: 0;
    }

    /* Mobile Typography & Card Spacing Polish */
    h1.display-4, h1.display-5 {
        font-size: clamp(1.65rem, 6vw, 2.5rem) !important;
        line-height: 1.25 !important;
    }

    h2.display-6 {
        font-size: clamp(1.45rem, 5vw, 2rem) !important;
        line-height: 1.3 !important;
    }

    .card, .vs-search-container, .founder-glass-card {
        padding: 18px !important;
    }

    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* ==========================================================================
   VITALSPACE-INSPIRED MODERN INTERACTIVE REAL ESTATE DESIGN SYSTEM
   ========================================================================== */

/* Glassmorphism & Search Wrapper */
.vs-search-container {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
    border-radius: 20px;
    padding: 24px 28px;
    margin-top: -50px;
    position: relative;
    z-index: 100;
}

.vs-tab-nav {
    display: inline-flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.vs-tab-btn {
    border: none;
    background: transparent;
    padding: 8px 22px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.875rem;
    color: #64748b;
    transition: all 0.25s ease;
    cursor: pointer;
}

.vs-tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 153, 229, 0.35);
}

/* Locality Quick Chips */
.vs-locality-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed #e2e8f0;
}

.vs-locality-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    background: #f0f9ff;
    color: #0284c7;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #bae6fd;
    transition: all 0.2s ease;
    cursor: pointer;
}

.vs-locality-chip:hover, .vs-locality-chip.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 153, 229, 0.25);
}

/* Verified Badges & Cards */
.vs-verified-badge {
    background: rgba(14, 165, 233, 0.15);
    color: #0284c7;
    border: 1px solid rgba(14, 165, 233, 0.3);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vs-price-badge {
    background: #0f172a;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.vs-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vs-card:hover {
    transform: translateY(-12px) rotateX(3deg) rotateY(-2deg) scale(1.01) !important;
    box-shadow: 0 30px 60px rgba(0, 153, 229, 0.22), 0 10px 20px rgba(15, 23, 42, 0.12) !important;
    border-color: #38bdf8 !important;
}

/* 3D Global Perspective & Card Animations */
section, .container {
    perspective: 1200px;
}

.homy-3d-card, .card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease !important;
    transform-style: preserve-3d;
}

.homy-3d-card:hover, .card:hover {
    transform: translateY(-10px) rotateX(2deg) scale(1.01) !important;
    box-shadow: 0 25px 50px rgba(0, 153, 229, 0.2) !important;
    border-color: #38bdf8 !important;
}

/* Footer 3D Interactive Hover Effects */
footer a, footer button, footer .btn {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

footer a.hover-primary:hover {
    color: #0099e5 !important;
    transform: translateX(6px) scale(1.02) !important;
}

footer .bg-light.border:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(0, 153, 229, 0.18) !important;
    border-color: #0099e5 !important;
}

/* Locality Section Filter Tabs */
.vs-locality-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 24px;
    scrollbar-width: none;
}

.vs-locality-tabs::-webkit-scrollbar {
    display: none;
}

.vs-locality-tab {
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    cursor: pointer;
}

.vs-locality-tab:hover, .vs-locality-tab.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

/* SEO Quick Links Grid */
.vs-seo-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    height: 100%;
}

.vs-seo-card h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.vs-seo-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vs-seo-link-list li {
    margin-bottom: 10px;
}

.vs-seo-link-list a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.vs-seo-link-list a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

/* FAQ Accordion Styling */
.vs-faq-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 14px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.vs-faq-accordion .accordion-button {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    background: #ffffff;
    padding: 18px 22px;
    box-shadow: none !important;
}

.vs-faq-accordion .accordion-button:not(.collapsed) {
    background: #f0f9ff;
    color: var(--primary-dark);
}

.vs-faq-accordion .accordion-body {
    background: #ffffff;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.65;
    padding: 20px 22px;
    border-top: 1px solid #e2e8f0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .vs-search-container {
        margin-top: 0;
        padding: 18px 16px;
        border-radius: 16px;
    }
}

/* ─── VITALSPACE-STYLE MULTI-FILTER DROPDOWN SYSTEM ──────────────────── */
.vs-filter-bar {
    position: relative;
    z-index: 100;
}

.vs-filter-pill-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    white-space: nowrap;
}

.vs-filter-pill-btn:hover, .vs-filter-pill-btn.active-pill {
    background: #e0f2fe;
    border-color: #0099e5;
    color: #0084c7;
    box-shadow: 0 4px 12px rgba(0, 153, 229, 0.15);
}

.vs-filter-pill-btn.has-selection {
    background: #0099e5;
    border-color: #0099e5;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 153, 229, 0.25);
}

.vs-dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 1050;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 20px 30px -5px rgba(15, 23, 42, 0.18), 0 10px 15px -5px rgba(0, 0, 0, 0.08);
    padding: 18px;
    min-width: 320px;
    max-width: 440px;
    display: none;
    animation: vsPanelFade 0.22s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 768px) {
    .vs-dropdown-panel {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        width: 92vw !important;
        max-width: 360px !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
        z-index: 99999 !important;
        background: #ffffff !important;
        border: 2px solid #0099e5 !important;
        box-shadow: 0 25px 80px rgba(15, 23, 42, 0.5) !important;
        border-radius: 20px !important;
        margin: 0 !important;
        padding: 18px !important;
    }
    .vs-filter-pill-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

.vs-dropdown-panel.show {
    display: block;
}

@keyframes vsPanelFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.vs-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 4px;
}

.vs-chip {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.825rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.vs-chip:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.vs-chip.selected {
    background: #0099e5;
    border-color: #0099e5;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 153, 229, 0.25);
}

.vs-panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #f1f5f9;
}

/* Quick Inquiry Modal Z-Index Fix for AI Modal Overlay */
#quickInquiryModal {
    z-index: 1070 !important;
}

.modal-backdrop + .modal-backdrop {
    z-index: 1065 !important;
}

/* Dark Blurred Backdrop Overlay for Offcanvas Mobile Drawer */
.offcanvas-backdrop.show {
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    background-color: rgba(15, 23, 42, 0.65) !important;
    opacity: 1 !important;
}

/* Executive Mobile Navbar Drawer Styling */
@media (max-width: 991.98px) {
    .makaan-navbar .navbar-collapse {
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(226, 232, 240, 0.8);
        padding: 20px;
        margin-top: 12px;
        border: 1px solid #e2e8f0;
    }

    .makaan-navbar .navbar-nav .nav-item {
        margin-bottom: 8px;
    }

    .makaan-navbar .nav-link {
        display: flex !important;
        align-items: center !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        padding: 12px 18px !important;
        border-radius: 14px !important;
        color: #1e293b !important;
        background: #f8fafc !important;
        border: 1px solid #f1f5f9 !important;
        transition: all 0.2s ease !important;
    }

    .makaan-navbar .nav-link:hover, 
    .makaan-navbar .nav-link.active {
        background: linear-gradient(135deg, #0099e5, #0084c7) !important;
        color: #ffffff !important;
        border-color: #0099e5 !important;
        box-shadow: 0 8px 20px rgba(0, 153, 229, 0.3) !important;
    }

    .makaan-navbar .nav-link i {
        font-size: 1.1rem;
        width: 24px;
    }
}

/* Hero Filter Bar 3x2 Mobile Grid & Container Fix */
@media (max-width: 767.98px) {
    .vs-search-container {
        margin-top: 15px !important;
        padding: 14px 12px !important;
        border-radius: 16px !important;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12) !important;
    }

    .vs-filter-bar {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        padding-top: 12px !important;
        border-top: 1px solid #e2e8f0 !important;
        overflow: visible !important;
    }

    .vs-filter-bar .position-relative, 
    .vs-filter-bar > button {
        width: 100% !important;
    }

    .vs-filter-pill-btn {
        width: 100% !important;
        justify-content: center !important;
        font-size: 0.72rem !important;
        padding: 8px 2px !important;
        text-align: center !important;
        border-radius: 10px !important;
    }

    .vs-filter-pill-btn span {
        max-width: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
    }
}

/* Global Hero Search Filter Dropdown Panel Popup Fix */
.vs-search-container, #vs-hero-filter-form, .vs-filter-bar {
    overflow: visible !important;
    position: relative !important;
}

.vs-dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 320px;
    max-width: 90vw;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.28);
    z-index: 99999;
}

.vs-dropdown-panel.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Mobile View 100% Centered Floating Modal Overlay for Dropdowns */
@media (max-width: 768px) {
    .vs-dropdown-panel {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        width: 92vw !important;
        max-width: 350px !important;
        max-height: 82vh !important;
        overflow-y: auto !important;
        z-index: 9999999 !important;
        background: #ffffff !important;
        border: 2px solid #0099e5 !important;
        box-shadow: 0 30px 90px rgba(15, 23, 42, 0.7), 0 0 0 1000px rgba(15, 23, 42, 0.5) !important;
        border-radius: 24px !important;
        margin: 0 !important;
        padding: 20px !important;
    }
}

/* ==========================================================================
   CUSTOM ANIMATED GLOWING CURSOR FOLLOWER WITH DHARTI ACRES LOGO PNG
   ========================================================================== */
.custom-cursor-dot, .custom-cursor-ring {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

body.preloader-finished .custom-cursor-dot,
body.preloader-finished .custom-cursor-ring {
    opacity: 1;
}

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #0099e5;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999999;
    box-shadow: 0 0 12px #0099e5, 0 0 20px rgba(56, 189, 248, 0.8);
    transition: transform 0.05s ease-out, background 0.2s ease, opacity 0.4s ease;
}

.custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(0, 153, 229, 0.6);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 99999998;
    box-shadow: 0 4px 15px rgba(0, 153, 229, 0.25);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.4s ease, transform 0.08s ease-out;
}

.cursor-logo-img {
    height: 12px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: transform 0.2s ease, height 0.2s ease;
}

.custom-cursor-ring.cursor-hover {
    width: 42px;
    height: 42px;
    border-color: #fbbf24;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.custom-cursor-ring.cursor-hover .cursor-logo-img {
    height: 18px;
    transform: scale(1.1);
}

.custom-cursor-dot.cursor-hover {
    background: #f59e0b;
    box-shadow: 0 0 16px #f59e0b;
    transform: scale(1.6);
}

/* ==========================================================================
   FLOATING 3D ACTION BUTTONS (DHARTI AI & WHATSAPP)
   ========================================================================== */
.btn-floating-3d {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 600px;
    cursor: pointer;
}

.btn-floating-ai {
    background: linear-gradient(135deg, #0099e5 0%, #0284c7 50%, #0f172a 100%);
    box-shadow: 0 12px 30px rgba(0, 153, 229, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.btn-floating-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.badge-floating-ai {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 2px 7px;
    border-radius: 10px;
    border: 1.5px solid #ffffff;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.5);
}

.btn-floating-3d:hover {
    transform: translateY(-10px) scale(1.14) rotateX(15deg) rotateY(-15deg);
    border-color: #ffffff;
}

.btn-floating-ai:hover {
    box-shadow: 0 22px 45px rgba(0, 153, 229, 0.65), 0 0 30px rgba(56, 189, 248, 0.6) !important;
}

.btn-floating-whatsapp:hover {
    box-shadow: 0 22px 45px rgba(37, 211, 102, 0.65), 0 0 30px rgba(37, 211, 102, 0.6) !important;
}

/* ==========================================================================
   MASTER 3D SECTION ELEVATION & BUTTON HOVER SHIMMER EFFECTS
   ========================================================================== */
.homy-3d-card, 
.project-card-col, 
.category-card-3d, 
.testimonial-card-3d,
.footer-card-3d {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
    transform-style: preserve-3d;
}

.homy-3d-card:hover, 
.project-card-col:hover, 
.category-card-3d:hover, 
.testimonial-card-3d:hover,
.footer-card-3d:hover {
    transform: translateY(-8px) scale(1.015) rotateX(3deg) rotateY(-1.5deg);
    box-shadow: 0 30px 70px rgba(0, 153, 229, 0.22), 0 10px 25px rgba(15, 23, 42, 0.12) !important;
    border-color: rgba(0, 153, 229, 0.4) !important;
}

/* Master 3D Buttons Lift & Shimmer */
.btn-makaan-primary, 
.btn-makaan-outline, 
.btn-homy-primary, 
.vs-filter-pill-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    transform-style: preserve-3d;
}

.btn-makaan-primary:hover, 
.btn-homy-primary:hover {
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 14px 35px rgba(0, 153, 229, 0.45) !important;
}

.btn-makaan-primary:active, 
.btn-homy-primary:active {
    transform: translateY(1px) scale(0.98) !important;
}

.vs-filter-pill-btn:hover {
    transform: translateY(-3px) scale(1.04) !important;
    border-color: #0099e5 !important;
    box-shadow: 0 8px 20px rgba(0, 153, 229, 0.25) !important;
}





