.elementor-9487 .elementor-element.elementor-element-d6fc0cd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-c4aa84f *//* ==========================================================================
   1. Clean Core Layout Variables & Overrides
   ========================================================================== */
.floating-header, .floating-header * {
    box-sizing: border-box !important;
}

body.admin-bar .floating-header {
    top: 52px !important; 
}

/* ==========================================================================
   2. Floating Pill Navbar Frame 
   ========================================================================== */
.floating-header {
    position: fixed !important;
    top: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    max-width: 1200px !important;
    background-color: #FFFFFF !important; /* Pure White background sheet */
    border-radius: 100px !important;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05) !important; /* Design system property shadow */
    border: 1px solid rgba(229, 231, 235, 0.7) !important;
    z-index: 999999 !important;
    transition: transform 0.3s ease, top 0.3s ease;
}

.header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 32px !important;
    height: 76px !important;
    position: relative !important;
}

/* Logo Sizing Rules */
.logo-section {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    max-width: 160px !important;
    flex-shrink: 0 !important;
}

.site-logo {
    display: block !important;
    height: 44px !important;
    width: auto !important;
    object-fit: contain !important;
    mix-blend-mode: multiply;
}

/* ==========================================================================
   3. Navigation Items & Active Underlines (Dynamic Routing Fix)
   ========================================================================== */
.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
}

.nav-item {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none !important;
    color: #222222 !important; /* TEXT DARK */
    font-size: 16px !important;
    font-weight: 600 !important;
    position: relative !important;
    padding: 6px 0 !important;
    transition: color 0.3s ease !important;
}

/* Animated active/hover tracker line setup */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F47C20 !important; /* Brand Orange for hovers */
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #F47C20 !important;
}

.nav-item:hover::after {
    width: 100% !important;
}

/* JavaScript toggled verified class */
.nav-item.active {
    color: #0B6B3A !important; /* PRIMARY GREEN for active page */
}

.nav-item.active::after {
    width: 100% !important;
    background-color: #0B6B3A !important; /* Green underline for the current active tab */
}

/* ==========================================================================
   4. Action Hooks Components & Hover Systems
   ========================================================================== */
.action-items {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
}

.phone-link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    color: #222222 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: color 0.3s ease !important;
}

.phone-icon {
    width: 16px !important;
    height: 16px !important;
    color: #0B6B3A !important;
}

.phone-link:hover {
    color: #F47C20 !important;
}

/* CTA Button Engine (Primary Button: Green -> Orange) */
.cta-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #0B6B3A !important; /* PRIMARY GREEN */
    color: #FFFFFF !important;
    text-decoration: none !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    box-shadow: 0px 4px 14px rgba(11, 107, 58, 0.15) !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
}

.cta-btn:hover {
    background-color: #F47C20 !important; /* SECONDARY ORANGE hover swap */
    transform: translateY(-1px) !important;
}

/* ==========================================================================
   5. Hamburger Trigger Mechanics (Tablet & Mobile Visibility Fix)
   ========================================================================== */
.hamburger-menu {
    display: none !important; /* Desktop view hook hidden */
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 28px !important;
    height: 20px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 1000005 !important; /* Super top layering priority */
}

.hamburger-menu .bar {
    display: block !important;
    width: 100% !important;
    height: 3px !important;
    background-color: #0B6B3A !important; /* PRIMARY GREEN for visibility */
    border-radius: 4px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Cross shape transformation rules when menu is open */
.hamburger-menu.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg) !important; background-color: #F47C20 !important; }
.hamburger-menu.active .bar:nth-child(2) { opacity: 0 !important; }
.hamburger-menu.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg) !important; background-color: #F47C20 !important; }

/* ==========================================================================
   6. Mobile Slide Drawer Panel Overlay
   ========================================================================== */
.mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important; /* Hidden position */
    width: 82% !important;
    max-width: 310px !important;
    height: 100vh !important;
    background-color: #FFFFFF !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000002 !important;
    padding: 110px 24px 40px 24px !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Dynamic open trigger handled by inline script */
.mobile-drawer.open {
    right: 0 !important;
}

.mobile-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 22px !important;
}

.mobile-nav-item {
    font-family: 'Poppins', sans-serif;
    text-decoration: none !important;
    color: #222222 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    transition: color 0.3s ease !important;
}

.mobile-nav-item.active {
    color: #0B6B3A !important; /* Active link inside slide drawer turns brand green */
}

.mobile-nav-item:hover {
    color: #F47C20 !important;
}

.drawer-divider {
    border: none !important;
    border-top: 1px solid #F5F7F6 !important;
    margin: 8px 0 !important;
}

.mobile-phone-link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    color: #6B7280 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

.mobile-cta-btn {
    font-family: 'Poppins', sans-serif;
    display: block !important;
    text-align: center !important;
    background-color: #0B6B3A !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    padding: 12px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 6px !important; /* Target standard button border radius rule */
    margin-top: 8px !important;
}

/* ==========================================================================
   7. Device Scalability Breakpoints (Tablet + Mobile Integration)
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-menu { gap: 16px !important; }
    .action-items { gap: 14px !important; }
}

/* 900px line breaks down layout to toggle mobile interface icons */
@media (max-width: 900px) {
    .floating-header {
        width: 94% !important;
        top: 14px !important;
    }

    .header-container {
        padding: 0 24px !important;
        height: 68px !important;
    }

    /* Clear desktop sections instantly */
    .nav-menu, .action-items {
        display: none !important;
    }

    /* Force show the interactive hamburger toggle */
    .hamburger-menu {
        display: flex !important;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-39639d6 *//* ==========================================================================
   Gadlio Luxury Premium WhatsApp Action Widget (Production Tier)
   ========================================================================== */
.gadlio-wa-widget-wrapper {
    position: fixed !important;
    bottom: 35px !important;
    right: 35px !important;
    z-index: 9999999 !important; /* Forces layout supremacy over elements */
    display: block !important;
    direction: ltr !important;
}

.gadlio-wa-premium-anchor {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    position: relative !important;
}

/* --------------------------------------------------------------------------
   1. Glassmorphic Text Badge (Pops up automatically to catch user attention)
   -------------------------------------------------------------------------- */
.gadlio-wa-badge {
    background: rgba(11, 17, 30, 0.85) !important; /* Blends perfectly with your midnight dark theme */
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 8px 16px !important;
    border-radius: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
    transform: translateX(10px);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    pointer-events: none;
}

.online-dot {
    width: 8px !important;
    height: 8px !important;
    background-color: #25D366 !important; /* Active green status dot */
    border-radius: 50% !important;
    position: relative;
    display: inline-block;
}

/* Live blinking pulse on the green status dot */
.online-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    animation: dotPulse 1.8s infinite ease-in-out;
}

.badge-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   2. Main Floating Metallic/Glossy Sphere Base
   -------------------------------------------------------------------------- */
.gadlio-wa-icon-sphere {
    width: 62px !important;
    height: 62px !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important; /* Premium dual green gradient blend */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FFFFFF !important;
    position: relative !important;
    box-shadow: 0px 10px 28px rgba(18, 140, 126, 0.45) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.wa-premium-svg {
    width: 30px !important;
    height: 30px !important;
    z-index: 5 !important;
    transition: transform 0.4s ease !important;
}

/* --------------------------------------------------------------------------
   3. Hover Micro-Interactions & Animations Framework
   -------------------------------------------------------------------------- */
.gadlio-wa-premium-anchor:hover .gadlio-wa-icon-sphere {
    transform: scale(1.08) rotate(5deg) !important;
    box-shadow: 0px 14px 35px rgba(37, 211, 102, 0.6) !important;
}

.gadlio-wa-premium-anchor:hover .wa-premium-svg {
    transform: scale(1.05) !important;
}

/* Slider badge push interaction effect */
.gadlio-wa-premium-anchor:hover .gadlio-wa-badge {
    transform: translateX(0px) !important;
    opacity: 1 !important;
    background: #0B111E !important; /* Hard contrast lock on hover state */
    border-color: rgba(37, 211, 102, 0.3) !important;
}

/* Luxury Soft Ambient Glow Waves */
.sphere-glow-ring {
    position: absolute !important;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50% !important;
    background: transparent;
    border: 2px solid #25D366;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.ring-primary {
    animation: luxuryWave 2.4s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ring-secondary {
    animation: luxuryWave 2.4s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-delay: 1.2s;
}

/* Keyframe Animations Engine */
@keyframes luxuryWave {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes dotPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* --------------------------------------------------------------------------
   4. Safe Responsive Layout Isolation (Mobile & Tablet Optimization)
   ========================================================================== */
@media (max-width: 768px) {
    .gadlio-wa-widget-wrapper {
        bottom: 20px !important;
        right: 20px !important;
    }
    
    /* Mobile screen optimization: Hides badge string text to keep layout extremely clean and uncluttered */
    .gadlio-wa-badge {
        display: none !important; 
    }
    
    .gadlio-wa-icon-sphere {
        width: 54px !important;
        height: 54px !important;
        box-shadow: 0px 8px 20px rgba(18, 140, 126, 0.35) !important;
    }
    
    .wa-premium-svg {
        width: 26px !important;
        height: 26px !important;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7d772ae *//* --- MOBILE RESPONSIVENESS MATRIX (UPGRADED LINE-HEIGHT & OVERLAP FIX) --- */
@media (max-width: 991px) {
    .gulberg-owner-container {
        grid-template-columns: 1fr !important; /* Single column stack */
        gap: 40px !important;
    }

    .gulberg-owner-image-card {
        max-width: 400px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 768px) {
    .gulberg-owner-section {
        padding: 50px 0 !important;
    }

    .gulberg-owner-main-heading {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .gulberg-owner-sub-heading {
        font-size: 18px !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 640px) {
    .gulberg-owner-img-wrapper {
        height: 360px !important;
    }

    .gulberg-owner-lead-text {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }

    .gulberg-owner-body-text {
        font-size: 15px !important;
        line-height: 1.6 !important; /* Open Sans strict line-height maintenance */
        margin-bottom: 25px !important;
    }

    /* --- image_7dc7a5.png Bullet Overlap Fix --- */
    .gulberg-owner-features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important; /* Proper vertical gap between items */
        margin-bottom: 30px !important; /* Keeps safe distance from button */
        height: auto !important; /* Explicitly auto to prevent height choking */
    }

    .gulberg-feat-item {
        display: flex !important;
        align-items: flex-start !important; /* Aligns dot to top if text breaks to 2 lines */
        gap: 12px !important;
        height: auto !important;
    }

    .gulberg-feat-item p {
        font-size: 14px !important;
        line-height: 1.5 !important; /* Clean readable line height for bullets */
        color: #222222 !important;
    }

    .gulberg-feat-dot {
        margin-top: 6px !important; /* Centers dot with the first line of text */
    }

    /* --- image_7dc7a5.png Button Overlap Fix --- */
    .gulberg-owner-action-frame {
        display: block !important;
        margin-top: 10px !important;
        height: auto !important;
    }

    .gulberg-owner-cta-btn {
        width: 100% !important; /* Fluid touch-target layout */
        padding: 14px 20px !important; /* Generous padding with zero layout constraint */
        font-size: 15px !important;
        line-height: 1.2 !important; /* Restores baseline for icon and text alignment */
        height: auto !important;
        white-space: normal !important; /* Allows text to wrap nicely if screens are super narrow */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2778259 *//* ==========================================================================
   Gulberg Premium Corporate Footer Styling Framework
   ========================================================================== */
.site-footer {
    background-color: #0B111E !important; /* Luxury Dark Background */
    color: #9CA3AF !important;
    font-family: 'Open Sans', sans-serif;
    padding: 70px 0 0 0 !important;
    margin-top: 50px;
    border-top: 4px solid #0B6B3A !important; /* Brand Green Accent Top Line */
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
    padding-bottom: 45px !important;
}

/* ==========================================================================
   1. Fix: Logo White Box Removal & Transparency
   ========================================================================== */
.footer-logo-wrapper {
    display: block !important;
    max-width: 165px !important;
    margin-bottom: 18px !important;
}

.footer-logo {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 52px !important;
    object-fit: contain !important;
    /* Yeh line white box ko remove karke background ke sath automatic merge kar degi */
    mix-blend-mode: lighten !important; 
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.02);
}

.footer-text {
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: #9CA3AF !important;
}

/* ==========================================================================
   2. Typography & Hover Underline Animations (Orange & Green Mix)
   ========================================================================== */
.footer-heading {
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 25px !important;
    position: relative;
}

/* Elegant Orange bar below titles */
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 2.5px;
    background-color: #F47C20 !important; /* Brand Orange */
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-column:hover .footer-heading::after {
    width: 55px !important; /* Expands smoothly when user hovers column */
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 12px !important;
}

.footer-links a {
    color: #9CA3AF !important;
    text-decoration: none !important;
    font-size: 15px !important;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease !important;
}

/* Quick links slide and shift to Orange */
.footer-links a:hover {
    color: #F47C20 !important;
    transform: translateX(5px) !important;
}

/* ==========================================================================
   3. Fix: Get In Touch Line Height & Clear Overlap Fix
   ========================================================================== */
.footer-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.contact-item {
    display: flex !important;
    align-items: flex-start !important; /* Keeps icon and text parallel */
    gap: 12px !important;
    margin-bottom: 16px !important;
}

.icon-box {
    color: #0B6B3A !important; /* Sharp Brand Green Icons */
    font-size: 15px !important;
    display: inline-flex !important;
    margin-top: 3px !important; /* Align perfectly with text first line */
    width: 20px !important;
    flex-shrink: 0 !important;
}

/* Clean text line height so characters never collapse */
.contact-text-data, .contact-link-data {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #9CA3AF !important;
    text-decoration: none !important;
    display: block !important;
    transition: color 0.3s ease;
}

.contact-link-data:hover {
    color: #FFFFFF !important;
}

/* Social Icon Buttons */
.footer-socials {
    display: flex !important;
    gap: 12px !important;
    margin-top: 20px !important;
}

.footer-socials a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background-color: #1F2937 !important;
    color: #9CA3AF !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease !important;
}

.footer-socials a:hover {
    background-color: #0B6B3A !important; /* Pops Green */
    color: #FFFFFF !important;
    transform: translateY(-3px) !important;
}

/* Inquiry Call to Action Button */
.footer-cta {
    font-family: 'Poppins', sans-serif;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background-color: #0B6B3A !important; /* Green Button */
    color: #FFFFFF !important;
    text-decoration: none !important;
    padding: 11px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    box-shadow: 0px 4px 10px rgba(11, 107, 58, 0.15) !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
}

.cta-arrow-icon {
    font-size: 12px !important;
    transition: transform 0.3s ease !important;
}

.footer-cta:hover {
    background-color: #F47C20 !important; /* Transforms to Orange */
    transform: translateY(-1px) !important;
}

.footer-cta:hover .cta-arrow-icon {
    transform: translateX(4px) !important;
}

/* ==========================================================================
   4. Premium Gadlio Agency Bottom Signature Bar
   ========================================================================== */
.footer-bottom {
    background-color: #070C16 !important; /* Super dark bottom strip */
    padding: 24px 0 0 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    margin-top: 25px !important;
}

.footer-bottom-inner {
    width: 90% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important; /* Separates copyright left and agency right */
    align-items: center !important;
    padding-bottom: 20px !important;
}

.footer-bottom p {
    font-size: 13px !important;
    color: #6B7280 !important;
    margin: 0 !important;
}

/* Gadlio Meta Link Styling */
.agency-credit {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #9CA3AF !important;
}

.gadlio-link {
    color: #0B6B3A !important; /* Gadlio initially in Brand Green */
    text-decoration: none !important;
    font-weight: 600;
    margin-left: 3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease, transform 0.3s ease !important;
}

.dynamic-link-icon {
    font-size: 10px !important;
    opacity: 0.8;
}

.gadlio-link:hover {
    color: #F47C20 !important; /* Turns Orange beautifully on hover interaction */
    transform: translateY(-1px);
}

/* Niche Web Design Specialist Strip */
.gadlio-spec-bar {
    background-color: #050810 !important;
    padding: 10px 0 !important;
    text-align: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.02) !important;
}

.gadlio-spec-bar p {
    font-family: 'Poppins', sans-serif;
    font-size: 11px !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4B5563 !important; /* Subtly displays real estate niche expertise */
    margin: 0 !important;
    font-weight: 600;
}

/* ==========================================================================
   5. Full Responsive Breakpoints (Tablet & Phone Screen Management)
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 35px !important;
    }
}

@media (max-width: 768px) {
    .footer-bottom-inner {
        flex-direction: column !important; /* Stacks text vertically on mobile to prevent squishing */
        gap: 12px !important;
        text-align: center !important;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr !important; /* Single column flow for small devices */
        gap: 35px !important;
    }
}/* End custom CSS */