.custom_header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

    .custom_header {
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        position: sticky;
        top: 0;
        z-index: 999;
        transition: all 0.3s ease;
    }

    /* Add these styles when header becomes sticky */
    .custom_header.sticky {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }

    /* Optional: Add animation */
    .custom_header.sticky {
        animation: slideDown 0.3s ease;
    }

    .property_heading {
        padding: 10px 20px 0px !important;
        font-size: 18px;
        font-weight: 700;
        color: #c19d68;
        pointer-events: none;
        /* hover/click disabled */
    }

    .property_heading span {
        cursor: default;
    }
    #bookyourstay{
        background-color: #1a0f5e;
        color: #fff;
        padding: 10px 15px;
        border-radius: 7px;
        font-size: 16px;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

   

   .whatsapp_float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.whatsapp_float:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
}


