.elementor-62 .elementor-element.elementor-element-f827651{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-3e500cc *//* --- Floating Island / Rounded Pill Header (Fixed Mobile Menu) --- */
.floating-header-wrap {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 10px 15px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.floating-header {
    max-width: 1300px;
    margin: 0 auto;
    background: rgba(17, 56, 38, 0.95); /* Luxury Deep Green */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 60px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.floating-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 30px;
    box-sizing: border-box;
}

.header-logo img {
    max-height: 140px; /* Desktop ke liye bara logo */
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
}

.menu-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.menu-items li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.menu-items li a:hover {
    opacity: 1;
    color: #FFD700; /* Secondary Gold Accent */
}

.header-cta {
    display: flex;
    align-items: center;
}

.float-cta-btn {
    background-color: #ffffff;
    color: #113826;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.float-cta-btn:hover {
    background-color: #FFD700; /* Secondary Gold Accent */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Mobile Burger Menu Icon */
.mobile-burger {
    display: none;
    cursor: pointer;
    width: 28px;
    height: 18px;
    position: relative;
}

.mobile-burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s ease-in-out;
}

.mobile-burger span:nth-child(1) { top: 0px; }
.mobile-burger span:nth-child(2) { top: 8px; }
.mobile-burger span:nth-child(3) { top: 16px; }

/* Active Menu Animation (Burger to 'X') */
.floating-header-wrap.active .mobile-burger span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}
.floating-header-wrap.active .mobile-burger span:nth-child(2) {
    opacity: 0;
}
.floating-header-wrap.active .mobile-burger span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

/* --- Responsive Mobile Layout --- */
@media (max-width: 1100px) {
    .header-nav, .header-cta {
        display: none; /* By default hidden on mobile */
    }
    
    .mobile-burger {
        display: block;
    }

    .header-logo img {
        max-height: 60px; /* Mobile par logo ka size balanced rakha hai */
    }

    .floating-container {
        padding: 10px 20px;
    }

    .floating-header-wrap.active .floating-header {
        border-radius: 24px;
    }

    .floating-header-wrap.active .floating-container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .floating-header-wrap.active .header-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 15px 0 10px 0;
        text-align: center;
        gap: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        margin-top: 10px;
        order: 3;
    }

    .floating-header-wrap.active .menu-items {
        flex-direction: column;
        gap: 12px;
    }

    .floating-header-wrap.active .header-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding-top: 10px;
        order: 4;
    }
    
    .floating-header-wrap.active .float-cta-btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}/* End custom CSS */